/* Sunsky Dropshipping Store Styles */

/* Product Cards */
.sunsky-product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    margin-bottom: 20px;
}

.sunsky-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sunsky-product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sunsky-product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.sunsky-badge {
    position: absolute;
    top: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.sunsky-badge.featured {
    left: 10px;
    background: #f39c12;
    color: white;
}

.sunsky-badge.out-of-stock {
    right: 10px;
    background: #e74c3c;
    color: white;
}

.sunsky-product-title {
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sunsky-product-title a {
    color: #333;
    text-decoration: none;
}

.sunsky-product-title a:hover {
    color: #3498db;
}

.sunsky-product-price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 10px;
}

/* Category Cards */
.sunsky-category-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sunsky-category-card .panel_s {
    transition: transform 0.2s, box-shadow 0.2s;
}

.sunsky-category-card:hover .panel_s {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.sunsky-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 8px;
}

/* Main Image */
.sunsky-main-image {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.sunsky-main-image img {
    max-height: 400px;
}

/* Thumbnails */
.sunsky-thumbnails .sunsky-thumb {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 5px;
    background: #f9f9f9;
    margin-bottom: 10px;
}

.sunsky-thumbnails .sunsky-thumb:hover,
.sunsky-thumbnails .sunsky-thumb.active {
    border-color: #3498db;
}

/* Price Box */
.sunsky-price-box {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    display: inline-block;
}

/* Order Timeline */
.sunsky-order-timeline {
    padding: 20px 0;
}

.sunsky-status-step {
    padding: 10px;
}

.sunsky-status-step .step-icon {
    font-size: 24px;
    color: #ddd;
    margin-bottom: 5px;
}

.sunsky-status-step.active .step-icon {
    color: #27ae60;
}

.sunsky-status-step .step-label {
    font-size: 12px;
    color: #999;
}

.sunsky-status-step.active .step-label {
    color: #333;
    font-weight: bold;
}

/* Cart */
.sunsky-cart-count {
    background: #e74c3c;
}

/* Alerts and messages */
.sunsky-store .alert {
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .sunsky-product-image {
        height: 150px;
    }

    .sunsky-main-image img {
        max-height: 250px;
    }

    .sunsky-hero h1 {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.p-3 { padding: 15px; }
.p-4 { padding: 20px; }
.p-5 { padding: 30px; }

