/* ============================================================
   LUXURY COLLECTION - FRENCH LIGHT BLUE THEME
   BASE COLOR: #acc9e1
   COMPLETE CSS FILE
   ============================================================ */

/* ============================================================
   PREMIUM COLOR PALETTE
   ============================================================ */

:root {
    /* French Light Blue - Main Colors */
    --french-blue: #acc9e1;
    --french-blue-dark: #8FB3D1;
    --french-blue-darker: #6E9ABF;
    --french-blue-deep: #5A85A8;
    --french-blue-light: #C5D9EC;
    --french-blue-mid: #B8D0E7;
    --french-blue-pale: #DAE8F3;
    --french-blue-very-light: #EDF4F9;
    --french-blue-white: #F7FAFC;
    
    /* Luxury Neutrals - Enhanced */
    --luxury-primary: #1a1a1a;
    --luxury-secondary: #2d2d2d;
    --luxury-dark-grey: #4a4a4a;
    --luxury-mid-grey: #8a8a8a;
    --luxury-light-grey: #d5d5d5;
    --luxury-border: #e5e8ec;
    
    /* French Blue Accents - Enhanced */
    --luxury-accent: var(--french-blue-dark);
    --luxury-accent-light: var(--french-blue-light);
    --luxury-accent-pale: var(--french-blue-pale);
    --luxury-accent-glow: rgba(172, 201, 225, 0.2);
    --luxury-accent-glow-strong: rgba(172, 201, 225, 0.35);
    
    /* Backgrounds */
    --luxury-bg: var(--french-blue-very-light);
    --luxury-card-bg: #ffffff;
    --luxury-card-bg-alt: var(--french-blue-white);
    
    /* Shadows - Enhanced with French Blue */
    --luxury-shadow: rgba(172, 201, 225, 0.12);
    --luxury-shadow-hover: rgba(172, 201, 225, 0.25);
    --luxury-shadow-deep: rgba(172, 201, 225, 0.35);
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600;700&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

html, body {
    background-color: var(--luxury-bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    color: var(--luxury-primary);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
}

.vc-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

.innerContainer {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
    background: transparent;
}

@media (min-width: 1460px) {
    .innerContainer {
        max-width: 1460px;
    }
}

/* ============================================================
   TOP BANNER
   ============================================================ */

.vc-top-banner {
    background: var(--french-blue-darker);
    padding: 6px 0;
    border-bottom: 2px solid var(--french-blue-dark);
}

.vc-top-banner .vc-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.vc-top-banner span {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

.vc-top-banner span.light {
    color: var(--french-blue-light);
}

.vc-top-banner .divider {
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   HEADER
   ============================================================ */

.vc-main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--french-blue-light);
    padding: 16px 0;
    position: relative;
    z-index: 100;
}

.vc-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Language Switcher */
.language-switcher select {
    background: transparent;
    border: none;
    color: var(--luxury-mid-grey);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.language-switcher select:hover {
    color: var(--french-blue-darker);
}

.language-switcher select option {
    color: var(--luxury-primary);
}

/* Search Bar */
.vc-header-search {
    flex: 0 0 280px;
    max-width: 280px;
}

.vc-header-search form {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--french-blue-light);
    border-radius: 0;
    padding: 0;
    height: 36px;
    transition: border-color 0.4s ease;
}

.vc-header-search form:hover,
.vc-header-search form:focus-within {
    border-color: var(--french-blue-darker);
}

.vc-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0 0 0 4px;
    cursor: pointer;
    color: var(--luxury-mid-grey);
    transition: color 0.3s ease;
}

.vc-search-btn i {
    font-size: 14px;
}

.vc-search-btn:hover {
    color: var(--french-blue-darker);
}

.vc-header-search input {
    flex: 1;
    padding: 0 8px 0 4px;
    border: none;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    height: 36px;
    color: var(--luxury-primary);
    background: transparent;
    outline: none;
}

.vc-header-search input::placeholder {
    color: var(--luxury-mid-grey);
    font-weight: 200;
    font-size: 12px;
    letter-spacing: 0.05em;
}

/* Logo */
.vc-header-logo {
    flex: 1;
    text-align: center;
}

.vc-header-logo img {
    width: 240px;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.vc-header-logo img:hover {
    opacity: 1;
}

/* Header Actions */
.vc-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.vc-action {
    color: var(--luxury-dark-grey);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.03em;
    padding: 4px 8px;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

.vc-action:hover {
    color: var(--french-blue-darker);
}

.vc-action i {
    font-size: 16px;
    margin-right: 6px;
    color: var(--luxury-mid-grey);
    transition: color 0.3s ease;
}

.vc-action:hover i {
    color: var(--french-blue-darker);
}

.vc-action span {
    font-size: 12px;
}

/* User Dropdown */
.vc-user-dropdown {
    position: relative;
    display: inline-block;
}

.vc-user-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 200px;
    background: #ffffff;
    border: 1px solid var(--french-blue-light);
    border-radius: 0;
    box-shadow: 0 8px 40px var(--luxury-shadow);
    padding: 8px 0;
    z-index: 1000;
    margin-top: 4px;
}

.vc-user-dropdown:hover .dropdown-menu,
.vc-user-dropdown .dropdown-menu.open {
    display: block;
}

.vc-user-dropdown .dropdown-menu .user-email {
    padding: 8px 20px;
    color: var(--luxury-mid-grey);
    font-size: 11px;
    letter-spacing: 0.02em;
    cursor: default;
}

.vc-user-dropdown .dropdown-menu .divider {
    height: 1px;
    background: var(--french-blue-light);
    margin: 4px 0;
}

.vc-user-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    color: var(--luxury-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.vc-user-dropdown .dropdown-menu a:hover {
    background: var(--french-blue-very-light);
    color: var(--french-blue-darker);
}

.vc-user-dropdown .dropdown-menu a i {
    font-size: 14px;
    color: var(--luxury-mid-grey);
    width: 18px;
}

/* Cart Icon */
.vc-cart {
    position: relative;
    font-size: 18px;
    color: var(--luxury-dark-grey);
    transition: color 0.3s ease;
    text-decoration: none;
}

.vc-cart:hover {
    color: var(--french-blue-darker);
}

.vc-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--french-blue-darker);
    color: #ffffff;
    font-size: 9px;
    font-weight: 400;
    border-radius: 0;
    text-align: center;
    line-height: 18px;
    letter-spacing: 0.02em;
}

/* ============================================================
   CATEGORY NAVIGATION
   ============================================================ */

.vc-category-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--french-blue-light);
    padding: 0;
}

.vc-category-list {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
    justify-content: center;
}

.vc-category-list::-webkit-scrollbar {
    display: none;
}

.vc-category-list a {
    padding: 14px 18px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--luxury-dark-grey);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.vc-category-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--french-blue-darker);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.vc-category-list a:hover {
    color: var(--french-blue-darker);
}

.vc-category-list a:hover::after {
    width: 60%;
}

.vc-category-list .vc-highlight {
    color: var(--french-blue-darker);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    margin: 20px 0 30px;
    padding: 0;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--french-blue-very-light), var(--french-blue-white));
    border: 1px solid var(--french-blue-light);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.4s ease;
}

.hero-banner:hover {
    box-shadow: 0 8px 40px var(--luxury-shadow-hover);
    border-color: var(--french-blue-dark);
}

.hero-content {
    flex: 1;
    min-width: 200px;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--french-blue-darker);
    font-weight: 300;
    display: block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    margin: 8px 0 12px;
    color: var(--luxury-primary);
    letter-spacing: 0.02em;
}

.hero-title .accent {
    color: var(--french-blue-darker);
}

.hero-description {
    font-size: 14px;
    font-weight: 300;
    color: var(--luxury-mid-grey);
    max-width: 400px;
    margin: 0 0 20px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    padding: 10px 32px;
    background: var(--french-blue-darker);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 300;
}

.hero-btn:hover {
    background: var(--french-blue-deep);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--luxury-accent-glow);
}

.hero-decoration {
    flex: 0 0 120px;
    text-align: center;
}

.hero-decoration .icon {
    font-size: 80px;
    opacity: 0.12;
    color: var(--french-blue-darker);
}

/* ============================================================
   SHOP BY CATEGORY
   ============================================================ */

.category-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    margin: 20px 0 40px !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.category-grid__item {
    display: block !important;
    text-align: center !important;
    padding: 24px 16px !important;
    margin: 0 !important;
    border: 1px solid var(--french-blue-light) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    width: 100% !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.category-grid__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--french-blue-very-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-grid__item:hover {
    border-color: var(--french-blue-darker) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 40px var(--luxury-shadow-hover) !important;
}

.category-grid__item:hover::before {
    opacity: 1;
}

.category-grid__item img {
    display: block !important;
    width: 100% !important;
    max-width: 120px !important;
    height: auto !important;
    border-radius: 0 !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    margin: 0 auto 14px !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.category-grid__item:hover img {
    transform: scale(1.05);
}

.category-grid__item span {
    display: block !important;
    font-size: 12px !important;
    font-weight: 300 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--luxury-dark-grey) !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

.category-grid__item:hover span {
    color: var(--french-blue-darker) !important;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */

.section-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    color: var(--luxury-primary) !important;
    margin: 24px 0 12px !important;
    letter-spacing: 0.02em !important;
    border: none !important;
    position: relative;
    padding-bottom: 12px !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--french-blue-darker);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
    border-bottom: 1px solid var(--french-blue-light);
    padding-bottom: 12px;
}

.view-all {
    color: var(--luxury-dark-grey) !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
}

.view-all::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-all:hover {
    color: var(--french-blue-darker) !important;
}

.view-all:hover::after {
    transform: translateX(4px);
}

/* ============================================================
   VOUCHER BANNER
   ============================================================ */

.voucher-banner {
    background: #ffffff !important;
    border: 1px solid var(--french-blue-light) !important;
    border-radius: 0 !important;
    padding: 20px 24px !important;
    margin: 20px 0 !important;
    position: relative;
    overflow: hidden;
}

.voucher-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--french-blue-very-light));
}

.voucher-banner__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1460px !important;
    margin: 0 auto !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

.voucher-banner__content {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.voucher-banner__title {
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--luxury-primary);
}

.voucher-banner__code {
    font-weight: 400;
    color: var(--french-blue-darker);
    letter-spacing: 0.15em;
}

.voucher-banner__link {
    color: var(--french-blue-darker);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.voucher-banner__link:hover {
    color: var(--french-blue-deep);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px !important;
    margin-bottom: 48px !important;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--french-blue-light);
    border-radius: 0 !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.product-card:hover {
    border-color: var(--french-blue-darker);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--luxury-shadow-hover);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    background: var(--french-blue-very-light);
    aspect-ratio: 1/1;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

/* Product Badges */
.product-card__badge--auth {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(110, 154, 191, 0.92);
    color: #ffffff;
    padding: 3px 10px;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
}

.product-card__badge--featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--french-blue-darker);
    color: #ffffff;
    padding: 3px 10px;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
}

/* Wishlist Button */
.product-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--french-blue-light);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card__wishlist:hover {
    background: var(--french-blue-darker);
    border-color: var(--french-blue-darker);
}

.product-card__wishlist i {
    font-size: 13px;
    color: var(--luxury-dark-grey);
    transition: color 0.3s ease;
}

.product-card__wishlist:hover i {
    color: #ffffff;
}

/* Product Body */
.product-card__body {
    padding: 16px 18px 20px;
}

.product-card__brand {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--luxury-mid-grey);
    margin: 0 0 4px;
}

.product-card__name {
    font-size: 14px;
    font-weight: 300;
    color: var(--luxury-primary);
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__name a {
    color: var(--luxury-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__name a:hover {
    color: var(--french-blue-darker);
}

.product-tag {
    font-size: 10px;
    color: var(--luxury-mid-grey);
    letter-spacing: 0.03em;
    margin: 0 0 6px;
    font-weight: 300;
}

.product-card__price {
    font-size: 16px;
    font-weight: 400;
    color: var(--luxury-primary);
    margin: 0 0 4px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}

.product-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--luxury-mid-grey);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.product-card__location i {
    font-size: 10px;
    color: var(--french-blue-darker);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--luxury-mid-grey);
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid var(--french-blue-light);
}

.empty-state i {
    font-size: 48px;
    color: var(--french-blue-light);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-weight: 300;
    color: var(--luxury-dark-grey);
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================================
   FOOTER
   ============================================================ */

.vc-footer {
    background: #ffffff;
    border-top: 1px solid var(--french-blue-light);
    border-radius: 0;
    margin-top: 60px;
}

.vc-footer-main {
    padding: 64px 0 40px;
}

.vc-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.vc-footer-col {
    min-width: 0;
}

.vc-footer-col-newsletter {
    grid-column: span 1;
}

.vc-footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--luxury-primary);
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--french-blue-light);
    padding-bottom: 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.vc-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vc-footer-list li {
    margin-bottom: 6px;
}

.vc-footer-list li a {
    color: var(--luxury-mid-grey);
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.vc-footer-list li a:hover {
    color: var(--french-blue-darker);
}

/* Support Section */
.vc-footer-support-text {
    color: var(--luxury-dark-grey);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px 0;
    font-weight: 300;
}

.vc-footer-phone {
    margin: 0 0 4px 0;
    padding: 0;
}

.vc-footer-phone a {
    color: var(--luxury-primary);
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
}

.vc-footer-phone a:hover {
    color: var(--french-blue-darker);
}

.vc-footer-phone a i {
    margin-right: 8px;
    color: var(--french-blue-darker);
}

.vc-footer-email {
    margin: 0;
    padding: 0;
}

.vc-footer-email a {
    color: var(--luxury-mid-grey);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.vc-footer-email a:hover {
    color: var(--french-blue-darker);
}

.vc-footer-email a i {
    margin-right: 6px;
    color: var(--french-blue-darker);
}

/* Newsletter */
.vc-footer-newsletter {
    margin-top: 4px;
}

.vc-footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-footer-newsletter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--french-blue-light);
    border-radius: 0;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    background: #ffffff;
    color: var(--luxury-primary);
    transition: all 0.3s ease;
    height: 44px;
}

.vc-footer-newsletter-input:focus {
    outline: none;
    border-color: var(--french-blue-darker);
    box-shadow: 0 0 0 2px var(--french-blue-very-light);
}

.vc-footer-newsletter-input::placeholder {
    color: var(--luxury-mid-grey);
}

.vc-footer-newsletter-btn {
    padding: 10px 20px;
    background: var(--french-blue-darker);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 44px;
}

.vc-footer-newsletter-btn:hover {
    background: var(--french-blue-deep);
    color: #ffffff;
}

/* Footer Bottom */
.vc-footer-bottom {
    background: var(--french-blue-very-light);
    border-top: 1px solid var(--french-blue-light);
    padding: 20px 0;
}

.vc-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.vc-footer-copyright {
    color: var(--luxury-mid-grey);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 0;
}

.vc-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vc-footer-bottom-links a {
    color: var(--luxury-mid-grey);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vc-footer-bottom-links a:hover {
    color: var(--french-blue-darker);
}

.vc-footer-divider {
    color: var(--french-blue-light);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal-content {
    border: 1px solid var(--french-blue-light);
    background: #ffffff;
    border-radius: 0;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--french-blue-very-light);
}

::-webkit-scrollbar-thumb {
    background: var(--french-blue-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--french-blue-darker);
}

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
    background: var(--french-blue-darker);
    color: #ffffff;
}

/* ============================================================
   FADE IN ANIMATION
   ============================================================ */

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .vc-header-search {
        flex: 0 0 200px;
        max-width: 200px;
    }
    
    .vc-header-logo img {
        width: 200px;
    }
    
    .vc-category-list a {
        font-size: 10px;
        padding: 12px 14px;
    }
    
    .category-grid {
        gap: 12px !important;
    }
    
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px !important;
    }
    
    .vc-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-banner {
        padding: 36px 40px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .vc-header-search {
        display: none;
    }
    
    .vc-header-logo img {
        width: 160px;
    }
    
    .vc-header-actions {
        gap: 8px;
    }
    
    .vc-action {
        font-size: 10px;
    }
    
    .vc-action span {
        display: none;
    }
    
    .vc-action i {
        font-size: 16px;
        margin-right: 0;
    }
    
    .vc-category-list a {
        font-size: 9px;
        padding: 10px 12px;
        letter-spacing: 0.08em;
    }
    
    .vc-top-banner span {
        font-size: 9px;
        letter-spacing: 0.1em;
    }
    
    /* Hero */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-banner {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto 16px;
    }
    
    .hero-decoration {
        flex: 0 0 auto;
    }
    
    .hero-decoration .icon {
        font-size: 56px;
    }
    
    /* Category Grid */
    .category-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .category-grid__item {
        padding: 16px 8px !important;
    }
    
    .category-grid__item img {
        max-width: 80px !important;
    }
    
    .category-grid__item span {
        font-size: 9px !important;
        letter-spacing: 0.1em !important;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px !important;
    }
    
    .product-card__body {
        padding: 12px 14px 16px;
    }
    
    .product-card__name {
        font-size: 13px;
    }
    
    .product-card__price {
        font-size: 14px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 22px !important;
    }
    
    /* Voucher */
    .voucher-banner {
        padding: 14px 16px !important;
    }
    
    .voucher-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .voucher-banner__content {
        justify-content: center;
    }
    
    /* Footer */
    .vc-footer-main {
        padding: 40px 0 24px;
    }
    
    .vc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vc-footer-col-newsletter {
        grid-column: span 2;
    }
    
    .vc-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .vc-footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Header */
    .vc-header-logo img {
        width: 120px;
    }
    
    .vc-header-actions {
        gap: 4px;
    }
    
    .vc-action {
        padding: 4px;
    }
    
    .vc-action i {
        font-size: 14px;
    }
    
    .vc-cart {
        font-size: 16px;
    }
    
    .vc-category-list a {
        font-size: 8px;
        padding: 8px 8px;
        letter-spacing: 0.06em;
    }
    
    .vc-container {
        padding: 0 10px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 24px;
    }
    
    .hero-banner {
        padding: 20px 16px;
    }
    
    .hero-label {
        font-size: 9px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-btn {
        padding: 8px 24px;
        font-size: 10px;
    }
    
    .hero-decoration .icon {
        font-size: 40px;
    }
    
    /* Category Grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .category-grid__item img {
        max-width: 70px !important;
    }
    
    .category-grid__item span {
        font-size: 8px !important;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px !important;
    }
    
    .product-card__body {
        padding: 10px 10px 14px;
    }
    
    .product-card__brand {
        font-size: 9px;
    }
    
    .product-card__name {
        font-size: 12px;
    }
    
    .product-card__price {
        font-size: 13px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 20px !important;
    }
    
    .section-title::after {
        width: 30px;
    }
    
    .view-all {
        font-size: 10px !important;
    }
    
    /* Footer */
    .vc-footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .vc-footer-col-newsletter {
        grid-column: span 1;
    }
    
    .vc-footer-phone a {
        font-size: 16px;
    }
    
    .vc-footer-newsletter-input,
    .vc-footer-newsletter-btn {
        height: 40px;
        font-size: 12px;
    }
    
    .vc-footer-bottom-links {
        gap: 8px;
    }
    
    .vc-footer-bottom-links a {
        font-size: 10px;
    }
}