/* ========================================
   WoodMart - Luxury Fragrances
   Clean, elegant, European style
   ======================================== */

/* CSS Variables */
:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #e5e5e5;
    --color-dark: #1a1a1a;
    --color-dark-hover: #333333;
    --product-name-color: #ffffff;
    --product-original-price: #999999;
    --product-current-price: #1a1a1a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --container-max: 1600px;
    --section-padding: 60px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    transition: var(--transition);
}

.btn-dark {
    background: var(--color-dark);
    color: #fff;
}

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

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header.scrolled .logo,
.header.scrolled .nav a,
.header.scrolled .action-btn {
    color: var(--color-text);
}

/* Current menu item color when header is scrolled */
.header.scrolled .nav a.current-menu-item,
.header.scrolled .nav a.current-menu-parent,
.header.scrolled .nav a.current-menu-ancestor,
.header.scrolled .nav .nav-dropdown > a.current-menu-item,
.header.scrolled .nav .nav-dropdown > a.current-menu-parent,
.header.scrolled .nav .nav-dropdown > a.current-menu-ancestor {
    color: var(--color-text);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    position: relative;
    padding-bottom: 2px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.current-menu-item::after,
.nav a.current-menu-parent::after,
.nav a.current-menu-ancestor::after,
.nav .nav-dropdown > a.current-menu-item::after,
.nav .nav-dropdown > a.current-menu-parent::after,
.nav .nav-dropdown > a.current-menu-ancestor::after {
    width: 100%;
}

.nav a.current-menu-item,
.nav a.current-menu-parent,
.nav a.current-menu-ancestor,
.nav .nav-dropdown > a.current-menu-item,
.nav .nav-dropdown > a.current-menu-parent,
.nav .nav-dropdown > a.current-menu-ancestor {
    font-weight: 500;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > .dropdown-toggle svg {
    transform: rotate(180deg);
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 1px solid var(--color-border);
    z-index: 999;
    padding: 50px 0;
}

.nav-dropdown:hover > .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 60px;
}

.mega-col h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 18px;
}

.mega-col ul {
    margin-bottom: 28px;
}

.mega-col ul:last-child {
    margin-bottom: 0;
}

.mega-col li {
    margin-bottom: 10px;
}

.mega-col a {
    font-size: 14px;
    color: var(--color-text-muted) !important;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
}

.mega-col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition);
}

.mega-col a:hover {
    color: var(--color-text);
}

.mega-col a:hover::after {
    width: 100%;
}

.mega-banner {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.mega-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    color: #fff;
}

.mega-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
}

.mega-banner-text p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.95;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    transition: var(--transition);
}

.action-btn:hover {
    opacity: 0.7;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 34px;
}

.mobile-menu-btn span {
    display: block;
    height: 1.5px;
    background: #fff;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--color-text);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    bottom: 0;
}

.hero-bg-left {
    left: 0;
    width: 50%;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-right {
    right: 0;
    width: 50%;
    background: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
    filter: grayscale(100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-bottle {
    width: 280px;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
}

.hero-bottle img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    margin-bottom: 32px;
    line-height: 1.15;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
    transition: var(--transition);
}

.hero-arrow:hover {
    opacity: 0.6;
}

.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 24px;
}

.dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.dot::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.dot.active {
    color: #fff;
}

.dot.active::after {
    width: 40px;
    background: #fff;
}

/* ========================================
   Section Common
   ======================================== */
.section {
    padding: var(--section-padding) 0;
    opacity: 1 !important;
    transform: none !important;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: var(--transition);
}

.slider-arrow:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
}

/* ========================================
   Product Card
   ======================================== */
.product-card {
    background: #fafafa;
    border: 1px solid var(--color-border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.product-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--product-name-color);
}

.wishlist-btn {
    color: var(--color-text-muted);
    transition: var(--transition);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #c44;
}

.product-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 260px;
}

.product-image img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

/* Full image variant for New In */
.product-card.full-image {
    padding: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
}

.product-card.full-image .product-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 20px;
    margin-bottom: 0;
    background: transparent;
}

.product-card.full-image .product-header .wishlist-btn {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.product-card.full-image:hover .product-header .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-card.full-image {
    height: 580px;
}

.product-card.full-image .product-image {
    position: relative;
    padding: 0;
    height: 100%;
    width: 100%;
    flex: 1;
    background: transparent;
}

.product-card.full-image .product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.product-card.full-image .product-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 20px;
    margin-top: 0;
    padding-top: 20px;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.7) 60%, transparent 100%);
    border-top: none;
}

.product-card.full-image .product-footer .cart-btn {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.product-card.full-image:hover .product-footer .cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--product-current-price);
}

.product-price del {
    color: var(--product-original-price);
    text-decoration: line-through;
    margin-right: 8px;
}

.product-price ins {
    color: var(--product-current-price);
    text-decoration: none;
}

.cart-btn {
    color: var(--color-text-light);
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--color-dark);
}

/* Flat card variant */
.product-card.flat {
    background: #fff;
    border: 1px solid var(--color-border);
}

/* ========================================
   New In Section
   ======================================== */
.new-in {
    background: #fff;
}

.product-slider {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider .product-card {
    flex: 0 0 calc(100% / 3);
    scroll-snap-align: start;
}

/* ========================================
   Featured Section
   ======================================== */
.featured {
    background: #fff;
    padding-top: 60px;
    
}

.featured-slider {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    min-height: 680px;
}

.featured-slider::-webkit-scrollbar {
    display: none;
}

.featured-slide {
    display: flex;
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: 680px;
}

.featured-slide-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.featured-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    min-height: 400px;
    background: #f5f5f5;
}

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

.featured-text {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    color: #fff;
}

.featured-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 16px;
}

.featured-text p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 420px;
}

.featured-product {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product .product-card {
    width: 100%;
    max-width: 520px;
    height: 680px;
}

.featured-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

.featured-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    background: #fff;
    transition: var(--transition);
}

.featured-arrow:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
}

/* ========================================
   Promotional Offers
   ======================================== */
.promo {
    background: #fff;
}

.promo-tabs {
    display: flex;
    gap: 28px;
}

.promo-tab {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.promo-tab.active,
.promo-tab:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
}

.promo-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.promo-slider .product-card.full-image {
    height: 520px;
}

/* ========================================
   Collections
   ======================================== */
.collections {
    background: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.collection-card {
    position: relative;
    height: 900px;
    overflow: hidden;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
    color: #fff;
}

.collection-overlay h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 14px;
}

.collection-overlay p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 520px;
    margin-bottom: 24px;
}

/* ========================================
   Journal Articles
   ======================================== */
.journal {
    background: #fff;
}

.journal .section-title {
    font-size: 40px;
}

.journal-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.journal-grid::-webkit-scrollbar {
    display: none;
}

.journal-card {
    cursor: pointer;
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

.journal-image {
    display: block;
    aspect-ratio: 4 / 3;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-card:hover .journal-image img {
    transform: scale(1.05);
}

.journal-meta time {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.journal-meta h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    transition: var(--transition);
}

.journal-card:hover .journal-meta h3 {
    color: var(--color-text-light);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #f8f8f8;
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--color-text);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-newsletter h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--color-text);
}

.newsletter-form .btn {
    padding: 12px 20px;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-text);
}

/* ========================================
   Cart Sidebar
   ======================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1100;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1101;
}

.cart-sidebar.active {
    transform: translateX(0);
}

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

.cart-sidebar-header h2 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
}

.cart-close {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-text-light);
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--color-text);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

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

.cart-item-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: #fafafa;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-qty {
    font-size: 14px;
    color: var(--color-text-light);
}

.cart-item-price {
    color: var(--color-text);
    font-weight: 500;
}

.cart-item-remove {
    color: var(--color-text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-item-remove:hover {
    color: #c44;
}

.cart-sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-subtotal-price {
    font-weight: 600;
}

.btn-view-cart {
    width: 100%;
    background: #f5f5f5;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-view-cart:hover {
    background: #ececec;
}

.btn-checkout {
    width: 100%;
    background: var(--color-dark);
    color: #fff;
    border: 1px solid var(--color-dark);
}

.btn-checkout:hover {
    background: var(--color-dark-hover);
}

body.cart-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
    }
    
    .cart-sidebar-header,
    .cart-sidebar-body,
    .cart-sidebar-footer {
        padding: 20px;
    }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }
    
    .product-slider .product-card {
        flex: 0 0 50%;
    }
    
    .promo-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-slide-inner {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        aspect-ratio: 16/9;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions span {
        display: none;
    }
    
    .mega-menu {
        display: none;
    }
    
    .nav-dropdown.active > .mega-menu {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 16px 0 0 12px;
        background: transparent;
    }
    
    .nav-dropdown.active .mega-menu .container {
        padding: 0;
    }
    
    .nav-dropdown.active .mega-menu-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-dropdown.active .mega-banner {
        display: none;
    }
    
    .nav-dropdown.active .mega-col h4 {
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 600;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        padding-bottom: 6px;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-dropdown.active .mega-col ul {
        margin-bottom: 16px;
        padding-left: 8px;
    }
    
    .nav-dropdown.active .mega-col ul:last-child {
        margin-bottom: 0;
    }
    
    .nav-dropdown.active .mega-col li {
        margin-bottom: 8px;
    }
    
    .nav-dropdown.active .mega-col a {
        font-size: 15px;
        color: var(--color-text) !important;
        padding: 4px 0;
        display: block;
    }
    
    .nav-dropdown.active .mega-col a::after {
        display: none;
    }
    
    .nav-dropdown.active > .dropdown-toggle svg {
        transform: rotate(180deg);
    }
    
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.35s ease;
        z-index: 998;
    }
    
    .nav.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav a {
        color: var(--color-text);
        font-size: 18px;
    }
    
    .nav a.current-menu-item,
    .nav a.current-menu-parent,
    .nav a.current-menu-ancestor,
    .nav .nav-dropdown > a.current-menu-item,
    .nav .nav-dropdown > a.current-menu-parent,
    .nav .nav-dropdown > a.current-menu-ancestor {
        font-weight: 500;
    }
    
    .nav .nav-dropdown {
        width: 100%;
    }
    
    .nav .nav-dropdown > .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .mega-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-bottle {
        width: 140px;
    }
    
    .hero-dots {
        gap: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* New In - product cards swipe, full image cards height reduced */
    .product-slider,
    .promo-slider {
        grid-template-columns: 1fr;
    }
    
    .product-slider .product-card {
        flex: 0 0 85%;
    }
    
    .product-card.full-image {
        height: 420px;
    }
    
    .product-card.full-image .product-header {
        padding: 16px;
    }
    
    .product-card.full-image .product-header .wishlist-btn {
        opacity: 1;
        transform: none;
    }
    
    .product-card.full-image .product-footer {
        padding: 16px;
        background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    }
    
    .product-card.full-image .product-footer .cart-btn {
        opacity: 1;
        transform: none;
    }
    
    /* Featured Collection - stack vertically */
    .featured-slide {
        min-height: auto;
    }
    
    .featured-slide-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-image-wrapper {
        position: relative;
    }
    
    .featured-image {
        aspect-ratio: 3 / 4;
        min-height: auto;
    }
    
    .featured-text {
        top: 20px;
        left: 20px;
        right: 20px;
    }
    
    .featured-text h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .featured-text p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .featured-product .product-card {
        height: 480px;
        max-width: 100%;
    }
    
    .featured-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        background: rgba(255,255,255,0.9);
    }
    
    .featured-arrow.prev {
        left: 10px;
    }
    
    .featured-arrow.next {
        right: 10px;
    }
    
    /* Promotional Offers */
    .promo-slider {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .promo-slider::-webkit-scrollbar {
        display: none;
    }
    
    .promo-slider .product-card.full-image {
        flex: 0 0 85%;
        height: 380px;
        scroll-snap-align: start;
    }
    
    .promo-tabs {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    /* Collections - stack to single column */
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-card {
        height: 500px;
    }
    
    .collection-overlay {
        padding: 30px;
        justify-content: flex-end;
    }
    
    .collection-overlay h3 {
        font-size: 26px;
    }
    
    .collection-overlay p {
        font-size: 13px;
        max-width: 100%;
    }
    
    /* Journal Articles */
    .journal-card {
        flex: 0 0 85%;
        max-width: 85%;
    }
    
    .journal .section-title {
        font-size: 28px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .featured-text h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
