/* Belvryn Skincare Storefront Stylesheet */
:root {
    --bg-main: #FFF8F8;
    --bg-secondary: #FAF0F0;
    --primary: #FF7B8E;
    --primary-dark: #FF5A73;
    --primary-light: #FFEBEF;
    --secondary: #4FB6C1;
    --secondary-light: #E6F8FA;
    --text: #2F2F2F;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
    --border: rgba(255, 123, 142, 0.12);
    --shadow: 0 8px 24px rgba(255, 90, 115, 0.04);
    --shadow-hover: 0 12px 30px rgba(255, 90, 115, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: rgba(255, 248, 248, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 99;
    transition: var(--transition);
}

.promo-banner {
    background-color: #E36A7D; /* Medium coral pink matching screenshot */
    color: var(--white);
    text-align: center;
    padding: 0.5rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    transition: var(--transition);
}

.promo-banner span {
    margin: 0 auto;
}

.close-promo {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.85;
    transition: var(--transition);
}

.close-promo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    align-items: center;
}

.hamburger-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 0.25rem 0;
    transition: var(--transition);
    justify-self: start;
}

.hamburger-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-menu-btn:hover span {
    background-color: var(--primary-dark);
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: none; /* We will use side menu hamburger like the screenshot */
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1.25rem;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    transition: var(--transition);
}

.search-icon-btn:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.search-overlay {
    display: none;
    background: rgba(255, 248, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    z-index: 98;
    animation: slideDown 0.3s ease-out;
}

.search-overlay.active {
    display: block;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-bar-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    gap: 0.75rem;
    box-shadow: var(--shadow);
}

.search-bar-container:focus-within {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(255, 90, 115, 0.15);
}

.search-input-icon {
    color: var(--text-muted);
}

#search-input {
    flex-grow: 1;
    border: none;
    background: none;
    font-size: 1rem;
    color: var(--text);
    outline: none;
    font-family: inherit;
}

.close-search-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: var(--transition);
}

.close-search-btn:hover {
    color: var(--primary-dark);
}

.nav-actions a.bolt-reward {
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-actions a.bolt-reward:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.cart-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0.25rem;
    color: var(--text);
    transition: var(--transition);
}

.cart-icon-btn:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slider Section matching screenshot style */
.hero-slider-section {
    position: relative;
    background: linear-gradient(135deg, #F0E6FF 0%, #FAF5FF 50%, #FFE6F0 100%); /* Lavender/pink premium gradient matching generated banner background */
    overflow: hidden;
    min-height: 480px;
}

.hero-slider-container {
    width: 100%;
    position: relative;
}

.hero-slide {
    display: none;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
    width: 100%;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-slide-link {
    display: block;
    width: 100%;
    position: relative;
    text-decoration: none;
}

.hero-image-col {
    width: 100%;
    display: block;
}

.hero-image-col img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover; /* Responsive fit spanning the full width of banner */
    display: block;
}

/* Absolute text overlays on top of full-width banner background */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: none; /* Allows click through to the link */
}

.btn-shop {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 90, 115, 0.25);
    transition: var(--transition);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 90, 115, 0.35);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
    z-index: 10;
}

.slider-control-btn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text);
    transition: var(--transition);
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.slider-control-btn:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-dark);
    width: 20px;
    border-radius: 10px;
}

/* Category Filter Tabs */
.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
}

/* Product Section */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.product-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.75rem;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem; /* Padding at bottom for scrollbar spacing */
    margin-bottom: 3rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.product-grid::-webkit-scrollbar {
    height: 8px;
}

.product-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.product-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.product-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

.product-card {
    flex: 0 0 280px; /* Preserve card width in scrollable flex container */
    max-width: 280px;
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    background-color: var(--primary-light); /* Soft light pink backdrop matching screenshot */
    cursor: pointer;
    border-radius: 16px;
    margin: 12px;
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 8%;
    left: 8%;
    width: 84%;
    height: 84%;
    object-fit: contain; /* Neatly fits product bottle, matches screenshot */
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 90, 115, 0.08);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    cursor: pointer;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title:hover {
    color: var(--primary-dark);
}

.product-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.compare-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.btn-add-cart {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: auto;
}

.btn-add-cart:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Skin Concern Cards */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.concern-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.concern-card:hover {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.concern-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

/* Individual concern colors inside circles */
.concern-card[data-concern="dull-skin"] .concern-icon-circle {
    background-color: #FFFDE7; /* Soft yellow backdrop */
    color: #FBC02D; /* Golden sparkle */
}

.concern-card[data-concern="acne"] .concern-icon-circle {
    background-color: #FFEbee; /* Soft pink backdrop */
    color: #E57373; /* Coral cross */
}

.concern-card[data-concern="barrier"] .concern-icon-circle {
    background-color: #E8F5E9; /* Soft mint backdrop */
    color: #4CAF50; /* Green shield */
}

.concern-card[data-concern="uv"] .concern-icon-circle {
    background-color: #E8EAF6; /* Soft blue backdrop */
    color: #3F51B5; /* Blue sun icon */
}

/* Micro-interaction on hover */
.concern-card:hover .concern-icon-circle {
    transform: scale(1.15) rotate(12deg);
}

.concern-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.concern-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Slide-out Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.close-drawer-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text);
    transition: var(--transition);
}

.close-drawer-btn:hover {
    color: var(--primary-dark);
}

/* Free Shipping Meter */
.shipping-meter-container {
    padding: 1rem 1.5rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.shipping-meter-txt {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shipping-meter-txt span {
    color: var(--primary-dark);
}

.meter-bar-outer {
    background-color: rgba(0, 0, 0, 0.05);
    height: 6px;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.meter-bar-inner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Cart Items List */
.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin: auto;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.25rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--bg-secondary);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: auto;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.qty-val {
    width: 32px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item-btn:hover {
    color: var(--danger);
}

/* Cart Footer / Checkout Form inside Cart Drawer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background-color: var(--white);
}

.cart-totals {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cart-totals span:last-child {
    color: var(--primary-dark);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(255, 90, 115, 0.2);
    transition: var(--transition);
}

.btn-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 90, 115, 0.3);
}

/* Checkout Details Form Drawer-Overlay */
.checkout-view {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    border-top: 1px dashed var(--border);
    padding-top: 1.25rem;
}

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

.checkout-input {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-main);
}

.checkout-input:focus {
    border-color: var(--primary);
    background-color: var(--white);
}

/* Product Quick-View Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    max-width: 800px;
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: all 0.35s ease;
    display: flex;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-img-col {
    flex: 1.1;
    background-color: var(--bg-secondary);
    position: relative;
}

.modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-info-col {
    flex: 1.3;
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-price {
    font-size: 1.4rem;
    font-weight: 850;
    color: var(--primary-dark);
}

.modal-compare-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tabs inside Modal info */
.detail-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.detail-tab-link {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.detail-tab-link.active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.detail-tab-content {
    display: none;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.detail-tab-content.active {
    display: block;
}

/* Footer Section */
footer {
    background-color: #FAF0F0;
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 123, 142, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media(max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .modal-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-img-col {
        height: 250px;
    }
    .modal-info-col {
        padding: 1.5rem;
    }
}

/* Spotlight Header Section matching screenshot */
.spotlight-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2.5rem;
    padding-bottom: 0px;
    position: relative;
    margin-top: 2rem;
}

.spotlight-tab-title {
    background-color: #E36A7D; /* Matches coral pink */
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-bottom: -2px; /* Pull it down to overlay border line */
    display: inline-block;
    box-shadow: 0 -4px 10px rgba(227, 106, 125, 0.05);
}

.spotlight-see-all {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    transition: var(--transition);
}

.spotlight-see-all:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Slider text styles inside overlay */
.slide-badge-discount {
    background-color: #FFEE58; /* Bright yellow */
    color: #FF5A73; /* Coral pink text */
    padding: 0.35rem 1rem;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 238, 88, 0.25);
    display: inline-block;
}

.slide-promo-code-strip {
    background-color: #00BFA5; /* Bright teal/turquoise */
    color: var(--white);
    padding: 0.45rem 1.25rem;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 191, 165, 0.2);
}

.slide-cashback-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.slide-headline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.5px;
}

/* Glow Spotlight container background and card style matching screenshot */
#products-showcase {
    background-color: #E36A7D; /* Medium coral pink matching screenshot */
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    color: #000; /* Text is dark/black directly on pink background */
}

/* Modify spotlight title pill to sit cleanly */
.spotlight-header-container {
    border-bottom: 2px solid rgba(0, 0, 0, 0.12) !important;
    margin-bottom: 2.5rem;
}

.spotlight-tab-title {
    background-color: #C25B6C !important; /* Slightly darker pink for the tab label */
    color: var(--white);
    font-weight: 800;
}

.spotlight-see-all {
    color: #000 !important;
    font-weight: 800;
}

.spotlight-see-all:hover {
    color: #FFF !important;
}

/* Transparent card sitting directly on pink background */
.product-card {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: none !important;
}

/* Product image container matches screenshot rounded square box */
.product-img-wrapper {
    background-color: #FFF !important; /* Solid white background behind bottle */
    border-radius: 16px;
    margin: 0 0 1rem 0 !important; /* Remove outer margin, align cleanly */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.product-info {
    padding: 0.5rem 0 !important; /* Remove default padding, text sits edge-to-edge under image */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #000 !important;
    height: auto !important; /* Auto height to show full title */
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    margin: 0 !important;
    cursor: pointer;
    line-height: 1.3 !important;
}

.product-title:hover {
    text-decoration: underline;
}

.product-subtitle-desc {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

/* Size Pills selection */
.product-size-pills {
    display: flex;
    gap: 8px;
    margin: 0.25rem 0;
}

.size-pill-btn {
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.size-pill-btn.active {
    background-color: #FFF;
    border: 1px solid #000;
    color: #000;
    font-weight: 700;
}

.size-pill-btn:not(.active) {
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
}

.size-pill-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Ratings row */
.product-ratings-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

.star-rating-val {
    color: #000;
}

.star-rating-separator {
    color: rgba(0, 0, 0, 0.2);
}

.star-rating-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
}

.star-rating-link:hover {
    text-decoration: underline;
}

/* Bottom row */
.product-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-price {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.coupon-tag-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
}

/* Black pill Add button matching screenshot */
.product-add-btn-black {
    background-color: #000;
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.product-add-btn-black:hover {
    transform: scale(1.04);
    background-color: #222;
}

.product-add-btn-black.disabled {
    background-color: rgba(0, 0, 0, 0.4);
    cursor: not-allowed;
}

/* Mobile Navigation Sidebar Drawer */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-drawer.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-muted);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-links li {
    display: flex;
    flex-direction: column;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.sidebar-divider {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
}
