/* ==========================================================================
   AURUM LUXURY DESIGN SYSTEM & STYLES
   ========================================================================== */

/* 1. CSS VARIABLES & CORE DESIGN TOKENS */
:root {
    --primary: #111111;
    --primary-light: #222222;
    --secondary: #FFFFFF;
    --accent: #D4AF37;       /* Antique Luxury Gold */
    --accent-dark: #b89028;  /* Deep Gold hover */
    --bg-light: #F8F8F8;     /* Off-white gallery background */
    --bg-card: #FFFFFF;
    --text-color: #333333;
    --text-muted: #777777;
    --border-color: #EAEAEA;
    --border-dark: #333333;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-text: #B0B0B0;
    --footer-link: #CCCCCC;
    --footer-accent: #D4AF37;
    --footer-muted: #888888;
    --footer-border: rgba(255, 255, 255, 0.08);
    --footer-bg-badge: rgba(255, 255, 255, 0.02);
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', -apple-system, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Header & Height sizing */
    --header-height: 80px;
    --announcement-height: 40px;
}

[data-theme="dark"] {
    --primary: #FFFFFF;
    --primary-light: #F0F0F0;
    --secondary: #111111;
    --bg-light: #161616;
    --bg-card: #1C1C1C;
    --text-color: #E2E2E2;
    --text-muted: #9c9c9c;
    --border-color: #262626;
    --border-dark: #FFFFFF;
    --header-bg: rgba(17, 17, 17, 0.95);
    --footer-text: #111111;
    --footer-link: #333333;
    --footer-accent: #b89028;
    --footer-muted: #555555;
    --footer-border: rgba(0, 0, 0, 0.08);
    --footer-bg-badge: rgba(0, 0, 0, 0.02);
}

/* 2. BASE & RESET STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--secondary);
    color: var(--text-color);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

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

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

p {
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* 3. SCROLL ANIMATION WORK SYSTEM */
.reveal-on-scroll {
    opacity: 0;
    transition: var(--transition-smooth);
    will-change: transform, opacity;
}

/* Reveal types */
.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-in {
    transform: translateY(0);
}

.reveal-slide-left {
    transform: translateX(-50px);
}

.reveal-slide-right {
    transform: translateX(50px);
}

.reveal-zoom-in {
    transform: scale(0.92);
}

/* Active State applied by JS Intersection Observer */
.reveal-on-scroll.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 4. UTILITY COMPONENTS (BUTTONS, TOASTS, SCROLLBARS) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

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

.btn-accent {
    background-color: var(--accent);
    color: var(--secondary);
    border: 1px solid var(--accent);
}

.btn-accent:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Section Common Spacing */
.section {
    padding: 100px 0;
    position: relative;
}

#app-view > .section:first-child,
#app-view > div > .section:first-child {
    padding-top: 140px;
}

.section-bg {
    background-color: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media(max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .container {
        padding: 0 20px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--accent);
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* 5. ANNOUNCEMENT & HEADER NAV BAR */
.announcement-bar {
    height: var(--announcement-height);
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-slider {
    display: flex;
    animation: announcement-marquee 15s linear infinite;
    white-space: nowrap;
}

.announcement-text {
    padding: 0 40px;
    display: inline-block;
}

@keyframes announcement-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.333%, 0, 0); }
}

.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 99;
    transition: var(--transition-smooth);
}

/* Theme Toggle Button icon states */
[data-theme="dark"] .theme-icon-sun {
    display: block;
}
[data-theme="dark"] .theme-icon-moon {
    display: none;
}
:not([data-theme="dark"]) .theme-icon-sun {
    display: none;
}
:not([data-theme="dark"]) .theme-icon-moon {
    display: block;
}

.theme-toggle-btn svg {
    transition: var(--transition-fast);
}

.theme-toggle-btn:hover svg {
    color: var(--accent);
    transform: rotate(20deg);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-container {
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* Logo */
.logo-container {
    flex: 0 0 auto;
    order: 1;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--primary);
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    order: 2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu styling */
.dropdown {
    position: relative;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

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

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 0 0 auto;
    order: 3;
}

.action-btn {
    position: relative;
    cursor: pointer;
    padding: 5px;
}

.action-btn i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    transition: var(--transition-fast);
}

.action-btn:hover i {
    color: var(--accent);
}

.action-btn .badge {
    position: absolute;
    top: -3px;
    right: -5px;
    background-color: var(--accent);
    color: var(--secondary);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
}

/* Search bar slide down */
.search-overlay-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 98;
}

.search-overlay-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-bar-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-bar-container input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border-bottom: 1px solid var(--border-dark);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.search-clear-btn {
    position: absolute;
    right: 30px;
    cursor: pointer;
}

.search-clear-btn i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

/* Mobile Menu styling */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* 6. HOME PAGE SECTIONS */

/* HERO SECTION */
.hero-section {
    height: calc(100vh - var(--header-height) - var(--announcement-height));
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary);
    max-width: 700px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-cta .btn {
    border-color: var(--secondary);
}

.hero-cta .btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
}

.hero-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--secondary);
}

.hero-cta .btn-secondary {
    color: var(--secondary);
}

.hero-cta .btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Slide selectors */
.hero-bullets {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.bullet {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.bullet.active {
    background-color: var(--accent);
    width: 50px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 0.75rem;
    }
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    .hero-bullets {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}

/* FEATURED CATEGORIES */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 480px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.1) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}

.category-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
    transition: transform 0.4s ease;
}

.category-card span {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.2) 70%);
}

.category-card:hover span {
    transform: translateY(0);
    opacity: 1;
}

@media(max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 580px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 380px;
    }
}

/* PRODUCT CARD COMPONENT */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid transparent;
}

.product-card:hover {
    border-color: var(--border-color);
}

.product-image-container {
    position: relative;
    height: 420px;
    overflow: hidden;
}

@media(max-width: 768px) {
    .product-image-container {
        height: 320px;
    }
}

.product-image-container img {
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-card:hover .product-hover-image {
    opacity: 1;
}

/* Badges on card */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--secondary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
}

.product-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 5;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-wishlist-btn i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    stroke-width: 1.8;
}

.product-wishlist-btn:hover {
    background-color: var(--primary);
}

.product-wishlist-btn:hover i {
    color: var(--secondary);
}

.product-wishlist-btn.active i {
    fill: var(--accent);
    stroke: var(--accent);
}

/* Hover Action Bar */
.product-action-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 5;
}

.product-card:hover .product-action-bar {
    transform: translateY(0);
}

.action-bar-btn {
    flex: 1;
    padding: 15px 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.action-bar-btn:first-child {
    border-right: 1px solid var(--border-color);
}

.action-bar-btn:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

/* Product Card Body */
.product-card-info {
    padding: 20px 10px;
    text-align: center;
}

.product-card-category {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.product-rating i {
    width: 12px;
    height: 12px;
    fill: var(--accent);
    color: var(--accent);
}

.product-rating i.empty {
    fill: transparent;
    color: var(--border-color);
}

.product-price-row {
    font-size: 0.95rem;
    font-weight: 600;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 10px;
    font-weight: 350;
}

.price-new {
    color: var(--accent);
}

/* PARALLAX CAMPAIGN BANNER */
.campaign-banner {
    position: relative;
    height: 600px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

@media(max-width: 768px) {
    .campaign-banner {
        background-attachment: scroll; /* Disable parallax on touch devices for performance */
        height: 400px;
    }
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17,17,17,0.45);
}

.campaign-content {
    position: relative;
    z-index: 2;
    color: var(--secondary);
    max-width: 650px;
}

.campaign-content h2 {
    color: var(--secondary);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    .campaign-content h2 {
        font-size: 2.2rem;
    }
}

.campaign-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* WHY CHOOSE US SECTION */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media(max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 580px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--secondary);
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.feature-icon-container i {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CUSTOMER REVIEWS */
.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    text-align: center;
    padding: 20px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    width: 16px;
    height: 16px;
    fill: var(--accent);
    color: var(--accent);
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 25px;
}

@media(max-width: 768px) {
    .review-text {
        font-size: 1.2rem;
    }
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.review-author span {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.75rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-arrow:hover {
    background-color: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.carousel-arrow.prev {
    left: -60px;
}

.carousel-arrow.next {
    right: -60px;
}

@media(max-width: 992px) {
    .carousel-arrow.prev { left: -20px; }
    .carousel-arrow.next { right: -20px; }
}

/* INSTAGRAM GALLERY MASONRY */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media(max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.instagram-item {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17,17,17,0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--secondary);
}

.instagram-overlay i {
    width: 28px;
    height: 28px;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* NEWSLETTER */
.newsletter-section {
    background-color: var(--bg-light);
    color: var(--text-color);
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid var(--border-color);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 5px;
}

.newsletter-form input {
    flex: 1;
    color: var(--text-color);
    padding: 10px;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.newsletter-submit-btn {
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--accent);
    transition: var(--transition-fast);
}

.newsletter-submit-btn:hover {
    color: var(--text-color);
}

/* 7. SHOP & CATEGORIES VIEWS */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media(max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

/* Filter sidebar */
.shop-sidebar {
    background-color: var(--secondary);
    border-right: 1px solid var(--border-color);
    padding-right: 30px;
}

@media(max-width: 992px) {
    .shop-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 30px;
        display: none; /* Collapsed by default on mobile, triggered by action btn */
    }
    .shop-sidebar.active {
        display: block;
    }
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-item input {
    margin-right: 10px;
    width: 14px;
    height: 14px;
    accent-color: var(--accent);
}

.filter-item:hover {
    color: var(--accent);
}

/* Color filter dots */
.color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-dot-wrapper {
    cursor: pointer;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: inline-block;
    transition: var(--transition-fast);
}

.color-dot-wrapper.active .color-dot {
    transform: scale(1.15);
    border-color: var(--accent);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Size squares */
.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-square {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.size-square:hover,
.size-square.active {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--secondary);
}

/* Price Range Slider */
.price-slider-group {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 80px;
    padding: 6px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-color);
    background-color: var(--secondary);
}

.price-slider-container {
    position: relative;
    height: 5px;
    background-color: var(--border-color);
    margin-bottom: 20px;
}

.price-slider {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--accent);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Shop Controls bar */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

@media(max-width: 580px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

.shop-results-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shop-sorting-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    background-color: var(--secondary);
    color: var(--text-color);
    cursor: pointer;
}

.mobile-filter-trigger {
    display: none;
}

@media(max-width: 992px) {
    .mobile-filter-trigger {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 15px;
        border: 1px solid var(--border-color);
        font-size: 0.8rem;
        cursor: pointer;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-num {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.page-num:hover,
.page-num.active {
    background-color: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* 8. PRODUCT DETAILS PAGE */
.product-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

@media(max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Gallery Images Layout */
.product-gallery {
    display: flex;
    gap: 20px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100px;
    flex-shrink: 0;
}

.gallery-thumb-item {
    height: 120px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

.gallery-thumb-item.active {
    border-color: var(--accent);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
}

.gallery-main {
    flex: 1;
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid var(--border-color);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

@media(max-width: 768px) {
    .product-gallery {
        flex-direction: column-reverse;
    }
    .gallery-thumbs {
        flex-direction: row;
        width: 100%;
        height: 80px;
    }
    .gallery-thumb-item {
        width: 80px;
        height: 100%;
    }
    .gallery-main {
        height: 400px;
    }
}

/* Details Panel Info */
.details-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.details-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

.details-price {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--accent);
}

.details-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.details-rating-row span {
    color: var(--text-muted);
}

.details-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.8;
}

.selector-group {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.selector-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.qty-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    width: 120px;
    height: 48px;
}

.qty-btn {
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
}

.qty-input {
    width: 40px;
    height: 100%;
    text-align: center;
    font-weight: 500;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.product-action-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.product-action-row .btn {
    height: 54px;
}

.product-wishlist-toggle {
    width: 54px;
    height: 54px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-wishlist-toggle:hover {
    border-color: var(--primary);
}

.product-wishlist-toggle i {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.product-wishlist-toggle.active i {
    fill: var(--accent);
    stroke: var(--accent);
}

/* Tabs description accordion style */
.details-tabs {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.tab-header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tab-header h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tab-icon {
    transition: var(--transition-fast);
}

.tab-content {
    padding: 20px 0;
    display: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tab-item.active .tab-icon {
    transform: rotate(45deg);
}

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

/* Product review form */
.review-form-container {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--bg-light);
}

.review-form-container h3 {
    margin-bottom: 20px;
}

.star-rating-selector {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}

.star-rating-selector i {
    width: 20px;
    height: 20px;
    color: var(--border-color);
}

.star-rating-selector i.active {
    color: var(--accent);
    fill: var(--accent);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background-color: transparent !important;
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    border-radius: 0;
}

.form-control:focus {
    border-bottom-color: var(--accent);
    outline: none;
}

/* Dropdown Options visibility fixes */
select option {
    background-color: var(--bg-card);
    color: var(--text-color);
}

[data-theme="dark"] select option {
    background-color: #1c1c1c !important;
    color: #ffffff !important;
}

[data-theme="light"] select option {
    background-color: #ffffff !important;
    color: #111111 !important;
}

/* 9. CART DRAWER & DETAILED CART VIEW */

/* Drawer Elements */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17,17,17,0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100%;
    background-color: var(--secondary);
    z-index: 101;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

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

.cart-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.close-drawer-btn {
    cursor: pointer;
}

.close-drawer-btn i {
    width: 24px;
    height: 24px;
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

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

.cart-item-img {
    width: 80px;
    height: 100px;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.cart-item-qty-input {
    width: 30px;
    text-align: center;
    font-size: 0.8rem;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-remove {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--primary);
}

.cart-drawer-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtotal-amount {
    font-size: 1.2rem;
    color: var(--accent);
}

.shipping-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Detailed Page Layout */
.cart-page-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

@media(max-width: 992px) {
    .cart-page-layout {
        grid-template-columns: 1fr;
    }
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-table td {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Cart Summary Box */
.summary-box {
    background-color: var(--bg-light);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 10px;
}

.summary-row.total span:last-child {
    color: var(--accent);
}

/* 10. ABOUT US PAGE */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-img {
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

@media(max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Team cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media(max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    text-align: center;
}

.team-img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

.team-card img {
    width: 100%;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.team-card h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 11. CONTACT US PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

@media(max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info-item {
    display: flex;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-info-item i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.map-wrapper {
    margin-top: 40px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    filter: grayscale(1) opacity(0.8);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .map-wrapper {
    filter: grayscale(1) invert(0.9) hue-rotate(180deg) opacity(0.8);
}

.map-wrapper:hover {
    filter: grayscale(0) opacity(1);
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 40px;
    border: 1px solid var(--border-color);
}

@media(max-width: 580px) {
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Contact form custom validation alerts */
.form-alert {
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    display: none;
}

.form-alert-success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

/* 12. FAQ ACCORDION LAYOUT */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-header {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-header i {
    transition: var(--transition-fast);
}

.faq-content {
    padding-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-item.active .faq-content {
    display: block;
}

/* 13. MODALS, TOASTS & NOTIFICATIONS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(5px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background-color: var(--secondary);
    max-width: 900px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

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

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
}

.close-modal-btn i {
    width: 24px;
    height: 24px;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    padding: 40px;
}

@media(max-width: 768px) {
    .quick-view-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
}

.quick-view-gallery img {
    width: 100%;
    height: 400px;
}

/* Toast System styling */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-left: 3px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(20px);
    opacity: 0;
    animation: toast-fade-in 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes toast-fade-in {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast.removing {
    animation: toast-fade-out 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes toast-fade-out {
    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

.toast i {
    color: var(--accent);
    width: 16px;
    height: 16px;
}

/* 14. MOBILE RESPONSIVENESS AND DRAWER NAVIGATIONS */
@media(max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100%;
        background-color: var(--secondary);
        z-index: 99;
        box-shadow: 10px 0 40px rgba(0,0,0,0.1);
        padding: 100px 40px 40px 40px;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border-top: none;
        border-left: 1px solid var(--border-color);
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 15px;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ==========================================================================
   15. LUXURY FOOTER STYLES
   ========================================================================== */
.luxury-footer {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 0 40px;
}

@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media(max-width: 580px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
}

.footer-col h3 {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--footer-accent);
}

.footer-brand-desc {
    color: var(--footer-text);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--footer-link);
    transition: var(--transition-fast);
    font-weight: 350;
    font-size: 0.85rem;
}

.footer-col ul a:hover {
    color: var(--footer-accent);
    padding-left: 5px;
}

.footer-col p {
    color: var(--footer-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 350;
}

.footer-col p i,
.footer-col p svg {
    width: 16px;
    height: 16px;
    color: var(--footer-accent);
    stroke: var(--footer-accent);
    fill: none;
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--secondary);
}

.social-link i,
.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    transition: var(--transition-fast);
}

.social-link:hover i,
.social-link:hover svg {
    color: var(--primary);
}

.social-link:hover {
    background-color: var(--footer-accent);
    border-color: var(--footer-accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding: 30px 40px 0 40px;
    border-top: 1px solid var(--footer-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--footer-muted);
    font-size: 0.75rem;
}

@media(max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px 0 20px;
    }
}

.footer-payment-methods {
    display: flex;
    gap: 15px;
}

.footer-payment-methods span {
    border: 1px solid var(--footer-border);
    padding: 4px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--footer-muted);
    background-color: var(--footer-bg-badge);
}

