@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

html, body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffeef8 0%, #ffe4f3 50%, #ffd6eb 100%);
    min-height: 100vh;
    scroll-behavior: smooth;
    position: relative;
}

/* Subtle animated background pattern */
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
    animation: backgroundMove 20s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundMove {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 4rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    margin-top: 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(244, 114, 182, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(244, 114, 182, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f472b6 0%, #ec4899 50%, #db2777 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(244, 114, 182, 0.25);
    border-color: rgba(244, 114, 182, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e11d48; /* stronger red */
    background: rgba(225,29,72,0.08);
    border-radius: 999px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.06);
    margin-right: 10px;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Accent for small inline highlights (e.g., exclamation marks) */
.accent {
    color: #e11d48;
    font-weight: 800;
}

/* Promo Section */
.promo-section {
    padding: 4rem 1rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Playfair Display', serif;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #f472b6, #ec4899);
    border-radius: 2px;
}

.flash-sale-banner {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fbbf24 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.35), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.flash-sale-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: sparkle 4s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sparkle {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.flash-sale-banner h3 {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(244, 114, 182, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(244, 114, 182, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
    border-color: rgba(244, 114, 182, 0.4);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.4), 0 0 0 3px rgba(255,255,255,0.3);
    border: none;
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.1);
    box-shadow: 0 24px 60px rgba(236, 72, 153, 0.5), 0 0 0 3px rgba(255,255,255,0.5);
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.pricing-card .savings {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.promo-tagline {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(254,242,242,0.95) 100%);
    backdrop-filter: blur(10px);
    color: #334155;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(244, 114, 182, 0.15);
}

.promo-tagline::before,
.promo-tagline::after {
    display: none;
}

.promo-tagline h3 {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    color: #334155;
}

/* Product Info Section */
.product-info-section {
    padding: 4rem 1rem;
    position: relative;
}

.info-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(254, 242, 242, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
    border: 2px solid rgba(244, 114, 182, 0.2);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ec4899, #f472b6, #fbbf24, #ec4899);
    background-size: 400% 400%;
    animation: borderGlow 8s ease infinite;
    z-index: -1;
    border-radius: 20px;
    opacity: 0.3;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.info-box p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
    color: #334155;
    font-weight: 500;
}

.info-box p strong {
    color: #ec4899;
    font-weight: 700;
}

/* Colors Section */
.colors-section {
    /* background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); */
    padding: 3rem 1rem;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Review grid: show up to 5 images per row, wrap additional images */


.review-grid .image-wrap {
    background: transparent;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
}

.review-image {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
}

@media (max-width: 1200px) {
    .review-grid { grid-template-columns: repeat(4, 1fr); }
    .review-image { height: 140px; }
}

@media (max-width: 900px) {
    .review-grid { grid-template-columns: repeat(3, 1fr); }
    .review-image { height: 120px; }
}

/* Stronger nav overrides and responsive adjustments */
.top-row .navbar-brand {
    font-size: 1.18rem !important;
    font-weight: 600;
}

.nav-scrollable .nav-link,
.nav-scrollable .nav-link-text,
.nav-scrollable .nav-emoji {
    font-size: 1.08rem !important;
    line-height: 1.45;
}

@media (max-width: 576px) {
    .top-row .navbar-brand { font-size: 1.05rem !important; }
    .nav-scrollable .nav-link,
    .nav-scrollable .nav-link-text,
    .nav-scrollable .nav-emoji { font-size: 1rem !important; }
}


@media (max-width: 600px) {
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .review-image { height: 110px; }
}

@media (max-width: 420px) {
    .review-grid { grid-template-columns: 1fr; }
    .review-image { height: 180px; }
}

/* Hero image above hero section */
.hero-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: 300px;
    position: relative;
}

.hero-image {
    display: block;
    width: auto;
    max-width: 1100px;
    max-height: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.25), 0 0 0 1px rgba(255,255,255,0.5);
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 70px rgba(236, 72, 153, 0.35), 0 0 0 1px rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
    .hero-image-wrap {
        min-height: 160px;
        padding: 8px 0;
    }
    .hero-image {
        width: 100%;
        max-height: 220px;
    }
}

.color-item {
    background: transparent;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: translateY(-5px);
}

.color-swatch {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 2px solid #ddd;
}

.color-code {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0 0.25rem 0;
}

.color-name {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}

.btn-add-to-cart:active {
    transform: translateY(-1px) scale(0.98);
}

.in-cart-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Cart Summary */
.cart-summary {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 36px rgba(236, 72, 153, 0.18);
    border: 2px solid rgba(244, 114, 182, 0.15);
    transition: all 0.4s ease;
}

.cart-summary:hover {
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.25);
    border-color: rgba(244, 114, 182, 0.3);
}

.cart-summary h3 {
    margin: 0 0 2rem 0;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.8) 0%, rgba(255, 237, 213, 0.8) 100%);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(244, 114, 182, 0.15);
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
    border-color: rgba(244, 114, 182, 0.3);
}

.cart-item-card {
    background: transparent; /* allow component-scoped styles to control appearance */
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: none;
    transition: all 0.3s ease;
}
.cart-item-card:hover {
    box-shadow: none;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-qty {
    width: 38px;
    height: 38px;
    background: white;
    border: 2px solid #ec4899;
    border-radius: 8px;
    color: #ec4899;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(236, 72, 153, 0.15);
}

.btn-qty:hover {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-remove {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    margin-left: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-remove:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.cart-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #ddd;
    text-align: right;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view-cart {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}\n\n.btn-view-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-view-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view-cart:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.5);
    color: white;
    text-decoration: none;
}

/* Cart Page Styles */

    .nav-icon-hijab {
        vertical-align: middle;
        margin-right: 0.6rem;
        width: 20px;
        height: 20px;
        fill: #ffffff; /* ensure inline SVG uses white fill */
    }

    .nav-link-text {
        vertical-align: middle;
    }

    .nav-emoji {
        display: inline-block;
        width: 1.25rem;
        text-align: center;
        margin-right: 0.6rem;
        vertical-align: middle;
    }

    .nav-icon {
        vertical-align: middle;
        margin-right: 0.6rem;
    }

.cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-count {
    font-size: 1.2rem;
    color: #666;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: transparent;
    border-radius: 15px;
    box-shadow: none;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.empty-cart h2 {
    color: #333;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-shop-now {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-shop-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-shop-now:hover::before {
    width: 300px;
    height: 300px;
}

.btn-back-home:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.5);
    color: white;
    text-decoration: none;
}

.btn-back-home {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-back-home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-back-home:hover::before {
    width: 300px;
    height: 300px;
}

.btn-shop-now:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.5);
    color: white;
    text-decoration: none;
}


.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.cart-item-card {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: none;
    transition: all 0.3s ease;
}

.cart-item-card:hover {
    box-shadow: none;
}

.cart-item-image {
    flex-shrink: 0;
}

.color-display {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 3px solid #ddd;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #333;
}

.item-code {
    color: #666;
    margin: 0.25rem 0;
}

.item-price {
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 8px;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #667eea;
    color: white;
}

.qty-display {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
}

.remove-btn {
    padding: 0.5rem 1rem;
    background: #ff6b6b;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remove-btn:hover {
    background: #ee5a6f;
    transform: scale(1.05);
}

.cart-summary-section {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: none;
}

.summary-card h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-breakdown {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.pricing-breakdown h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #333;
}

.promo-applied {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(254,242,242,0.98) 100%);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(244,114,182,0.08);
    box-shadow: 0 6px 18px rgba(236,72,153,0.06);
}

.promo-label {
    display: block;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.promo-info small {
    color: #666;
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    margin: 1.5rem 0;
}

/* For places where a single-line horizontal layout is desired, add the .inline class */
.summary-total.inline {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.total-price {
    font-size: 1.8rem;
    color: #667eea;
}

.shipping-note {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.shipping-note p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-checkout:hover::before {
    width: 400px;
    height: 400px;
}

.btn-checkout:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(236, 72, 153, 0.5);
    color: white;
    text-decoration: none;
}

.btn-continue {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 2px solid #667eea;
    border-radius: 8px;
    color: #667eea;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: #f5f5f5;
}

.btn-clear {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 2px solid #ff6b6b;
    border-radius: 8px;
    color: #ff6b6b;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: #ff6b6b;
    color: white;
}

/* Order Cart Items Display */
.order-cart-items {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.order-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.order-cart-item:last-child {
    margin-bottom: 0;
}

.item-qty {
    margin-left: auto;
    font-weight: bold;
    color: #667eea;
}

/* Order Section */
.order-section {
    /* background-color: white; */
    padding: 3rem 1rem;
}

.order-form {
    max-width: 600px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.shipping-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 10px;
}

.shipping-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* Validation */
.validation-message {
    color: #e50000;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.invalid {
    border-color: #e50000 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .flash-sale-banner h3 {
        font-size: 1.5rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .promo-tagline h3 {
        font-size: 1.5rem;
    }

    /* Cart page responsive */
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: static;
    }

    .cart-item-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .color-display {
        width: 80px;
        height: 80px;
    }

    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .cart-header h1 {
        font-size: 1.8rem;
    }
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}



/* Info cards section */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.info-card p {
    color: #666;
    margin-bottom: 16px;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.hours-item {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
}

.hours-item strong {
    display: block;
    margin-bottom: 4px;
    color: #667eea;
    font-size: 1rem;
}

.hours-item span {
    color: #555;
    font-size: 0.95rem;
}

.btn-back-home {
    display: inline-block;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Footer styling moved to Components/Layout/MainLayout.razor.css */

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* Product Cards & Images - Enhanced Styling */
.product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 114, 182, 0.15) !important;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.12) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899 0%, #f472b6 50%, #fbbf24 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.25) !important;
    border-color: rgba(244, 114, 182, 0.4) !important;
}

.product-card img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Product showcase images row */
.product-images-row .product-image {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15);
    border: 2px solid rgba(244, 114, 182, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-images-row .product-image:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.3);
    border-color: rgba(244, 114, 182, 0.4);
}

.product-images-row .product-image img {
    transition: transform 0.4s ease;
}

.product-images-row .product-image:hover img {
    transform: scale(1.1);
}

/* Video container */
.image-sendiri video {
    border-radius: 20px !important;
    box-shadow: 0 12px 36px rgba(236, 72, 153, 0.25) !important;
    border: 3px solid rgba(255,255,255,0.9) !important;
    transition: all 0.4s ease !important;
}

.image-sendiri video:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(236, 72, 153, 0.35) !important;
}

/* Smooth loading animation for images */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.product-image,
.feature-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animation delays */
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

/* Enhanced pricing display */
.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 900;
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.pricing-card .savings {
    font-size: 1rem;
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .flash-sale-banner h3 {
        font-size: 1.75rem;
        letter-spacing: 1.5px;
    }
    
    .promo-tagline h3 {
        font-size: 1.75rem;
    }
    
    .product-card:hover {
        transform: translateY(-6px) scale(1.02) !important;
    }
    
    .pricing-card.featured {
        transform: scale(1.03);
    }

    /* Promo CTA badge in cart summary */
    .promo-cta {
        margin-top: 12px;
        padding: 10px 12px;
        background: linear-gradient(90deg,#fff7fb,#fff1f6);
        border: 1px dashed rgba(190,74,164,0.18);
        border-radius: 10px;
        text-align:center;
        color:#374151;
        font-weight:600;
    }
    .promo-highlight {
        background: linear-gradient(90deg,#ff6b9a,#be4aa4);
        color: white;
        padding: 4px 8px;
        border-radius: 6px;
        margin-left:8px;
    }

}
