/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: -140px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 140px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 800;
    color: #6F4E37;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* Desktop Navigation Strip */
.header-nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    background: #A47428;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
    height: 50px;
}

.nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 21px;
    transition: color 0.3s, background 0.3s;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav a:hover {
    background: #6F4E37;
}

/* Mobile Categories - Hidden on desktop */
.mobile-categories {
    display: none;
}

/* Hero Section */
.hero {
    background: #751E4F;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: #FFFFFF;
    color: #751E4F;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: none;
    background: #FFFFFF;
    color: #751E4F;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Products Section */
.products {
    padding: 80px 20px;
    background: #FFFFFF;
}

.products h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: #FFFBEA;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #FFF;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #9C251A;
    color: white;
    padding: 8px 16px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.badge.new {
    background: #715E4F;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #FFE8D1;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #FFD4A3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.product-card .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #6F4E37;
    margin-bottom: 15px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #9C251A;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.qty-btn:hover {
    background: #6F4E37;
    transform: scale(1.2);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 3px solid #751E4F;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    background: white;
    color: #751E4F;
}

/* Sticky Checkout Button */
.checkout-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: none;
    padding: 0;
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.checkout-btn.active {
    display: flex;
}

.checkout-btn.pop {
    animation: basketPop 0.4s ease-out;
}

@keyframes basketPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1); }
}

.checkout-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.basket-container {
    position: relative;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 16px rgba(89, 3, 3, 0.3));
}

.basket-container svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.checkout-btn:hover .basket-container svg {
    filter: brightness(1.2);
}

/* Perfect Circle Badge */
.item-count-badge {
    position: absolute;
    top: -5px;
    right: -9px;
    background: #9C251A;
    color: white;
    width: 28px;              /* Fixed width */
    height: 28px;             /* Fixed height - same as width */
    border-radius: 50%;       /* Perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(156, 37, 26, 0.5);
    border: 2px solid white;
    line-height: 1;           /* Prevent text from affecting height */
}

.checkout-text {
    font-size: 16px;
    font-weight: 700;
    color: #590303;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(89, 3, 3, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.checkout-btn:hover .checkout-text {
    background: #590303;
    color: white;
    box-shadow: 0 6px 16px rgba(89, 3, 3, 0.4);
}
    
@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(156, 37, 26, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(156, 37, 26, 0.7);
    }
}

.checkout-btn.pop .item-count-badge {
    animation: badgeJump 0.4s ease-out;
}

@keyframes badgeJump {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .checkout-btn {
        bottom: 15px;
        right: 15px;
        gap: 6px;
    }
    
    .basket-container {
        width: 80px;
        height: 80px;
    }
    
    .item-count-badge {
        width: 26px;          /* Fixed width */
        height: 26px;         /* Same as width for circle */
        font-size: 12px;
        border-width: 2px;
    }
    
    .checkout-text {
        font-size: 10px;
        padding: 6px 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .checkout-btn {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .basket-container {
        width: 75px;
        height: 75px;
    }
    
    .item-count-badge {
        width: 24px;          /* Fixed width */
        height: 24px;         /* Same as width for circle */
        font-size: 11px;
        border-width: 2px;
    }
    
    .checkout-text {
        font-size: 8px;
        padding: 5px 8px;
    }
}



/* About Section */
.about {
    padding: 80px 20px;
    background: #FFF4D9;
    text-align: center;
}

.about h2 {
    font-size: 42px;
    font-weight: 800;
    color: #751E4F;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    color: #2C2C2C;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #751E4F;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFB800;
}

.footer-section p {
    margin-bottom: 8px;
    color: #CCC;
}

.footer-owners-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-owners {
    font-size: 26px;
    font-weight: 700;
    color: #FFB800;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-content h2 {
    font-size: 28px;
    color: #2C2C2C;
    margin-bottom: 15px;
}

.disclaimer {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.branch-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.branch-btn {
    background: #751E4F;
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.branch-btn:hover {
    background: #6F4E37;
    transform: translateY(-2px) scale(1.05);
}

.close-btn {
    background: transparent;
    color: #999;
    border: 2px solid #DDD;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.close-btn:hover {
    border-color: #999;
    color: #666;
}

/* Review Page Styles */
.review-section {
    padding: 60px 20px;
    background: #FFFFFF;
    min-height: 70vh;
}

.review-section h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 40px;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    background: #FFFBEA;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #FFE8D1;
}

.item-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 5px;
}

.item-unit {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.min-order-note {
    font-size: 12px;
    color: #9C251A;
    margin-bottom: 5px;
    font-weight: 600;
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: #6F4E37;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-adjust-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #751E4F;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.qty-adjust-btn:hover {
    background: #6F4E37;
    transform: scale(1.1);
}

.qty-display {
    font-size: 18px;
    font-weight: 700;
    color: #751E4F;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: #9C251A;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
}

.remove-btn:hover {
    background: #751E4F;
}

.empty-cart {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 40px 20px;
}

.empty-cart a {
    color: #751E4F;
    text-decoration: none;
    font-weight: 600;
}

.empty-cart a:hover {
    text-decoration: underline;
}

.order-summary {
    background: #FFF4D9;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.order-summary h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.summary-row.delivery-note-row {
    margin-bottom: 5px;
}

.delivery-note {
    color: #666;
    font-style: italic;
}

.delivery-info-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    padding: 10px;
    background: #FFF8E7;
    border-radius: 8px;
    border-left: 3px solid #A47428;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: #6F4E37;
    border-top: 2px solid #FFD4A3;
    padding-top: 15px;
    margin-top: 15px;
}

.customer-details {
    background: #FFFBEA;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.customer-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-container label {
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    cursor: pointer;
}

.customer-form {
    display: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #FFD4A3;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.note {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.continue-shopping-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #FFD4A3;
    text-align: center;
}

.continue-shopping-link {
    display: inline-block;
    color: #751E4F;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #751E4F;
    border-radius: 25px;
    transition: all 0.3s;
}

.continue-shopping-link:hover {
    background: #751E4F;
    color: white;
    transform: translateY(-2px);
}

.pincode-status {
    font-size: 13px;
    margin-top: 8px;
    font-weight: 600;
    line-height: 1.4;
    white-space: pre-line;
}

.pincode-status.valid {
    color: #28a745;
}

.pincode-status.invalid {
    color: #dc3545;
}

/* WhatsApp Assurance Box */
.whatsapp-assurance {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.assurance-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.assurance-text {
    flex: 1;
}

.assurance-title {
    font-size: 16px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.assurance-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.proceed-btn {
    width: 100%;
    background: #751E4F;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.proceed-btn:hover {
    background: #a16439;
    transform: translateY(-2px);
}

.proceed-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Back Button - Mobile Only */
.back-button {
    display: none;
    align-items: center;
    gap: 3px;
    padding: 2px 2px;
    background: transparent;
    border: none;
    color: #654E37;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
    position: absolute;
    left: 15px;
}

.back-button:hover {
    color: #333;
}

.back-button svg {
    width: 20px;
    height: 20px;
}

/* Weight/Size Selector */
.weight-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.weight-btn {
    padding: 8px 16px;
    border: 2px solid #FFD4A3;
    background: white;
    color: #6F4E37;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.weight-btn:hover {
    border-color: #A47428;
    background: #FFF8E7;
}

.weight-btn.active {
    background: #A47428;
    color: white;
    border-color: #A47428;
}

.weight-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Override desktop sticky behavior for mobile */
    .header {
        position: sticky;
        top: 0;
    }
    
    .header-top {
        max-height: none;
    }
    
    .header-nav {
        display: none !important;
    }
    
    .nav {
        display: none !important;
    }
    
    .mobile-categories {
        display: block;
        padding: 60px 20px;
        background: #FFF8E7;
    }
    
    .mobile-categories h2 {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        color: #2C2C2C;
        margin-bottom: 40px;
    }
    
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        background: #FFFFFF;
        border-radius: 20px;
        padding: 20px;
        text-decoration: none;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 3px solid #FFE8D1;
        text-align: center;
        display: block;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
    }
    
    .category-image {
        width: 100%;
        height: 150px;
        background: #FFF4D9;
        border-radius: 15px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .category-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #2C2C2C;
        margin-bottom: 8px;
    }
    
    .category-card p {
        font-size: 14px;
        color: #666;
    }
    
    .btn-secondary {
        display: inline-block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 18px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }

    .header-top {
        padding: 15px 0;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .products h2,
    .about h2 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 16px;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footer-owners {
        font-size: 22px;
    }
    
    .review-section h1 {
        font-size: 28px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .item-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .order-summary h3,
    .customer-details h3 {
        font-size: 20px;
    }
    
    .whatsapp-assurance {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .assurance-icon {
        margin-bottom: 10px;
    }
    
    .proceed-btn {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .back-button {
        display: flex;
    }
    
    .logo.no-link {
        cursor: default;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .mobile-categories,
    .products,
    .about {
        padding: 40px 15px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-img {
        width: 50px; 
        height: 50px;
    }
    
    .assurance-title {
        font-size: 15px;
    }
    
    .assurance-desc {
        font-size: 13px;
    }
}

/* Coming Soon Styles */
.coming-soon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #9C251A 0%, #9C251A 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.product-card.coming-soon {
    opacity: 0.85;
}

.product-card.coming-soon .product-image {
    position: relative;
}

.product-card.coming-soon .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.coming-soon-message {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border: 2px dashed #9C251A;
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
    text-align: center;
}

.coming-soon-message p {
    color: #9C251A;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.coming-soon-message .notify-text {
    font-size: 12px;
    color: #9C251A;
    margin-top: 4px;
}