/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Banner */
/* Promo Banner - Luxury Design */
.promo-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #d4af93;
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1002;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.4), transparent);
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.2), transparent);
}

.promo-text {
    margin: 0;
    letter-spacing: 2.5px;
    font-weight: 300;
}

.promo-separator {
    margin: 0 1.25rem;
    opacity: 0.4;
    color: #b88658;
}

/* Header - Luxury Design */
.header {
    position: fixed;
    top: calc(0.75rem * 2 + 1.5rem);
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    will-change: background, backdrop-filter, box-shadow;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow:
        0 2px 16px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 0;
    border-bottom: 1px solid rgba(212, 175, 147, 0.15);
    top: calc(0.75rem * 2 + 1.5rem);
}

.header.scrolled .header-content {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 147, 0.2);
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 241, 235, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    backdrop-filter: blur(30px);
}

.header.scrolled .header-background {
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 6px;
    padding-top: 0;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 147, 0.1);
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 300;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: 2px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.header.scrolled .logo-text {
    color: #2c2c2c;
}

.logo-link:hover .logo-text {
    letter-spacing: 3px;
}

.logo-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #d4af93, rgba(212, 175, 147, 0.3), transparent);
    margin-top: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #b88658, #d4af93);
    transition: width 0.4s ease;
}

.logo-link:hover .logo-divider {
    width: 80px;
}

.logo-link:hover .logo-divider::after {
    width: 100%;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.625rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.header.scrolled .nav-link {
    color: #2c2c2c;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #d4af93, transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af93, #b88658);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #d4af93;
    letter-spacing: 2px;
}

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

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

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    color: #d4af93;
}

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

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 16px;
    padding: 1.25rem 0;
    min-width: 220px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.75rem;
    border: 1px solid rgba(212, 175, 147, 0.25);
}

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

.nav-dropdown-link {
    display: block;
    padding: 0.875rem 1.75rem;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    position: relative;
}

.nav-dropdown-link::after {
    display: none;
}

.nav-dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(212, 175, 147, 0.1), transparent);
    transition: width 0.3s ease;
}

.nav-dropdown-link:hover {
    background: rgba(212, 175, 147, 0.08);
    color: #d4af93;
    padding-left: 2.25rem;
}

.nav-dropdown-link:hover::before {
    width: 3px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-link {
    position: relative;
    color: #4a4a4a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0);
    border: 1px solid transparent;
}

.header.scrolled .cart-link {
    color: #2c2c2c;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(212, 175, 147, 0.2);
}

.cart-link:hover {
    background: rgba(212, 175, 147, 0.1);
    color: #d4af93;
    border-color: rgba(212, 175, 147, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 147, 0.2);
}

.cart-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: currentColor;
}

.cart-link:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #d4af93 0%, #b88658 100%);
    color: #1a1a1a;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow:
        0 2px 8px rgba(212, 175, 147, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.cart-link:hover .cart-count {
    transform: scale(1.15);
    box-shadow:
        0 4px 12px rgba(212, 175, 147, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.9);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(212, 175, 147, 0.2);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.625rem 0.75rem;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 147, 0.1);
    border-color: rgba(212, 175, 147, 0.3);
}

.menu-icon-line {
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.header.scrolled .menu-icon-line {
    background: #2c2c2c;
}

.mobile-menu-toggle.active {
    background: rgba(212, 175, 147, 0.15);
    border-color: rgba(212, 175, 147, 0.4);
}

.mobile-menu-toggle.active .menu-icon-line {
    background: #d4af93;
}

.mobile-menu-toggle.active .menu-icon-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .menu-icon-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-icon-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    margin-top: 0;
}

/* Homepage Hero Section - Luxury Design */
.homepage-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    animation: underlineExpand 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s both, subtitlePulse 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-hero {
    position: relative;
    z-index: 1;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero>* {
    position: relative;
    z-index: 1;
}

.btn-hero.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

.btn-hero.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.95;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: featureFloat 3s ease-in-out infinite;
}

.hero-feature:nth-child(1) {
    animation-delay: 0s;
}

.hero-feature:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: imageGlow 4s ease-in-out infinite;
    z-index: -1;
}

.hero-image-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-image-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-emoji {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
    }

    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes underlineExpand {

    0%,
    100% {
        width: 100px;
        opacity: 0.8;
    }

    50% {
        width: 200px;
        opacity: 1;
    }
}

@keyframes subtitlePulse {

    0%,
    100% {
        opacity: 0.95;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes featureFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes imageGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* New Homepage Hero Section - Luxury Cinematic Design */
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

.homepage-hero-section:hover .hero-bg-image {
    transform: scale(1.15);
}

.hero-light-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 147, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: lightPulse 8s ease-in-out infinite;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    margin: 0;
    padding-top: 0;
    margin-top: 0;
}

.hero-text-content {
    max-width: 650px;
    color: #f5f1eb;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af93;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f5f1eb;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -1px;
}

.hero-subtitle-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero-description-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #d0d0d0;
    margin-bottom: 3rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-luxury {
    padding: 1.125rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9375rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn-luxury-primary {
    background: #d4af93;
    color: #1a1a1a;
    border-color: #d4af93;
}

.btn-luxury-primary:hover {
    background: #b88658;
    border-color: #b88658;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 147, 0.4);
}

.btn-luxury-secondary {
    background: transparent;
    color: #f5f1eb;
    border-color: #d4af93;
}

.btn-luxury-secondary:hover {
    background: #d4af93;
    color: #1a1a1a;
    border-color: #d4af93;
    transform: translateY(-2px);
}

.btn-luxury-outline {
    background: transparent;
    color: #f5f1eb;
    border-color: rgba(245, 241, 235, 0.5);
}

.btn-luxury-outline:hover {
    background: rgba(245, 241, 235, 0.1);
    border-color: #d4af93;
    color: #d4af93;
    transform: translateY(-2px);
}

.btn-luxury-mini {
    padding: 0.75rem 1.75rem;
    font-size: 0.8125rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #d4af93;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, #d4af93, transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #d4af93;
    border-bottom: 1px solid #d4af93;
    transform: rotate(45deg);
}

@keyframes lightPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Brand Presentation Section - Luxury Redesign */
.brand-presentation-section {
    padding: 10rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brand-presentation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.3), transparent);
}

.brand-presentation-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 147, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.brand-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand-text-content {
    max-width: 700px;
}

.brand-text-content .section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af93;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    padding-left: 2rem;
}

.brand-text-content .section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, #d4af93, transparent);
}

.brand-text-content .section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 2rem;
}

.brand-text-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #d4af93, rgba(212, 175, 147, 0.3));
}

.brand-description {
    font-size: 1.125rem;
    line-height: 2;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(212, 175, 147, 0.2);
}

.brand-image-content {
    position: relative;
}

.brand-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 147, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.brand-image-wrapper:hover::before {
    opacity: 1;
}

.brand-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.08);
}

.brand-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.98) contrast(1.05);
}

.brand-image-wrapper:hover .brand-image {
    transform: scale(1.05);
}

.brand-text-content .btn-luxury-outline {
    margin-top: 2rem;
    border-color: #d4af93;
    color: #2c2c2c;
    background: transparent;
}

.brand-text-content .btn-luxury-outline:hover {
    background: #d4af93;
    color: #ffffff;
    border-color: #d4af93;
}

/* Featured Products Section */
.featured-products-section {
    padding: 8rem 0;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af93;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #8b8b8b;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.featured-product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #d4af93;
}

.featured-product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #fafafa;
    position: relative;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-image-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-product-image-gallery .featured-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 1;
    z-index: 1;
}

.featured-product-image-gallery .featured-secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.featured-product-card:hover .featured-product-image-gallery .featured-main-image {
    opacity: 0;
}

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

.featured-product-card:hover .featured-product-image img:not(.featured-main-image):not(.featured-secondary-image) {
    transform: scale(1.1);
}

.featured-product-info {
    padding: 2rem;
    text-align: center;
}

.featured-product-name {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.featured-product-brand {
    font-size: 0.875rem;
    color: #d4af93;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.featured-product-price {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Values & Quality Section */
.values-quality-section {
    padding: 8rem 0;
    background: #fafafa;
}

.values-quality-section .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 147, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 147, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 147, 0.1);
    border: 1px solid rgba(212, 175, 147, 0.2);
    color: #d4af93;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon-wrapper {
    background: #d4af93;
    color: #ffffff;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.value-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Collection Preview Section */
.collection-preview-section {
    padding: 8rem 0;
    background: #ffffff;
}

.collection-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.collection-category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-category-card:hover {
    transform: translateY(-8px);
}

.category-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8e8e8 100%);
    overflow: hidden;
    z-index: 0;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    z-index: 0;
    display: block;
    filter: brightness(1) contrast(1);
}

.collection-category-card:hover .category-image {
    filter: brightness(1.05) contrast(1.05);
}

.collection-category-card:hover .category-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.5) 100%);
    transition: opacity 0.4s ease, background 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.category-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 241, 235, 0.1) 0%, rgba(232, 232, 232, 0.1) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-image-wrapper:has(.category-image[src=""])::before,
.category-image-wrapper:not(:has(.category-image))::before {
    opacity: 1;
}

.collection-category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    color: #f5f1eb;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.category-name {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.category-description {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

.category-link {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af93;
    font-weight: 300;
    transition: letter-spacing 0.3s ease;
}

.collection-category-card:hover .category-link {
    letter-spacing: 3px;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background: #1a1a1a;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 147, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #f5f1eb;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.25rem;
    color: #d0d0d0;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


.page-back-wrapper {
    position: relative;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.page-back-wrapper .btn-back {
    margin-top: 100px;
    margin-left: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-transform: uppercase;
}

.page-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Products Grid - Shopify Style */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card-wrapper {
    position: relative;
}

.product-card-wrapper:hover {
    z-index: 1;
}

/* Card Styles - Shopify Inspired */
.card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.card--media {
    position: relative;
}

.card__media {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.card__media-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Aspect ratio 1:1 */
    overflow: hidden;
}

.card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.4s ease;
}

.card:hover .card__image:not(.secondary-image):not(.main-image) {
    transform: scale(1.05);
}

/* Product Image Gallery Hover Effect */
.card__media-wrapper .product-image-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image-gallery .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 1;
    z-index: 1;
}

.product-image-gallery .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card-wrapper:hover .product-image-gallery .main-image {
    opacity: 0;
}

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

.full-unstyled-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.full-unstyled-link:hover {
    text-decoration: none;
}

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

.card__information {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.card__heading {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.card__heading a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card__heading a:hover {
    color: #667eea;
    text-decoration: underline;
}

.card-information {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.card__brand {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.card__size {
    font-size: 0.875rem;
    color: #888;
}

.card__price {
    margin-top: auto;
}

.price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-item {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.price-item--regular {
    color: #333;
}

.price-item--sale {
    color: #d32f2f;
}

.price-item--compare {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.card__actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.button {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    background: #333;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-align: center;
}

.button--primary {
    background: #333;
    border-color: #333;
    color: white;
}

.button--primary:hover {
    background: #667eea;
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Badge for promotions */
.card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #d32f2f;
    color: white;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Legacy support for old class names */
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-brand {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: #333;
    line-height: 1.4;
}

.product-size {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.btn-add-cart {
    width: 100%;
    background: #333;
    color: white;
    border: 1px solid #333;
    padding: 0.75rem 1rem;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #667eea;
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Product Detail Page */
.product-detail-header {
    margin-bottom: 2rem;
    margin-top: 2rem;
    display: block;
    width: 100%;
}

.product-back-button {
    display: inline-block !important;
    text-decoration: none !important;
    color: #2c2c2c !important;
    border-color: #d4af93 !important;
    background: transparent !important;
    margin-top: 100px;
}

.product-back-button:hover {
    color: #1a1a1a !important;
    background: rgba(212, 175, 147, 0.1) !important;
    border-color: #d4af93 !important;
    transform: translateY(-2px);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.product-detail-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    position: relative;
}

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

/* Hover effect for product detail image using main & secondary image */
.product-detail-image .product-image-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-detail-image .product-image-gallery .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 1;
    z-index: 1;
}

.product-detail-image .product-image-gallery .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-detail-image:hover .product-image-gallery .main-image {
    opacity: 0;
}

.product-detail-image:hover .product-image-gallery .secondary-image {
    opacity: 1;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-category {
    color: #d4af93;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: #333;
}

.product-brand-detail {
    font-size: 1.2rem;
    color: #666;
}

.product-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.product-specs {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.spec-item {
    font-size: 0.95rem;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af93;
    margin: 1rem 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem;
}

.quantity-selector button {
    background: #d4af93;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.btn-add-cart-large {
    background: #d4af93;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    transition: background 0.3s;
}

.btn-add-cart-large:hover {
    background: #b88658;
}

/* Cart Page */
.cart-page {
    padding: 4rem 0 5rem;
    background: #f5f1eb;
    min-height: 60vh;
}

.cart-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.cart-header-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 147, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 8%;
    margin-left: 0;
}

.btn-back:hover {
    background: rgba(212, 175, 147, 0.12);
    border-color: #d4af93;
    color: #1f1f1f;
    transform: translateX(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.btn-back svg {
    transition: transform 0.3s ease;
}

.btn-back:hover svg {
    transform: translateX(-4px);
}

.cart-page-title {
    font-size: 2.7rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #d4af93 0%, #b88658 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-page-subtitle {
    font-size: 1rem;
    color: #7a6a5a;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-items-section {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 147, 0.2);
}

.cart-items-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.cart-items-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fdfaf6;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.cart-item:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 147, 0.6);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-item-brand {
    color: #b88658;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-size {
    color: #8a7a6b;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
}

.qty-btn {
    background: #f3ece4;
    color: #333;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.qty-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    font-size: 1rem;
    color: #333;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c2c2c;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cart-item-remove {
    background: #1f1f1f;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #000;
    transform: scale(1.1) rotate(90deg);
}

.cart-item-remove:active {
    transform: scale(0.95);
}

.cart-summary-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 147, 0.35);
    backdrop-filter: blur(10px);
}

/* Cart summary colors (Résumé de la commande) */
.cart-summary .summary-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 147, 0.4);
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-summary .summary-content {
    margin-bottom: 1.5rem;
}

.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
}

.cart-summary .summary-label {
    font-size: 0.95rem;
    color: #7a6a5a;
}

.cart-summary .summary-value {
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
}

.cart-summary .summary-row.total {
    padding-top: 1.4rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 147, 0.4);
}

.cart-summary .summary-row.total .summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.cart-summary .summary-row.total .summary-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af93;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.free-shipping {
    color: #3b7c3b;
    font-weight: 600;
}

.btn-checkout {
    width: 100%;
    background: #b88658;
    color: #f5f1eb;
    border: 1px solid rgba(212, 175, 147, 0.4);
    padding: 1.2rem 2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.btn-checkout:active {
    transform: translateY(0);
}

.summary-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 0.5rem 0;
}

.btn-checkout {
    width: 100%;
    background: #b88658;
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-checkout:active {
    transform: translateY(0);
}

.btn-checkout svg {
    transition: transform 0.3s ease;
}

.btn-checkout:hover svg {
    transform: translateX(4px);
}

.btn-continue-shopping-link {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-continue-shopping-link:hover {
    background: rgba(212, 175, 147, 0.08);
    color: #b88658;
}

.empty-cart {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.empty-cart h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.empty-cart p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-continue-shopping {
    display: inline-block;
    background: #b88658;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-continue-shopping:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-continue-shopping {
    display: inline-block;
    background: #b88658;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 600;
}

/* Checkout Page */
/* Checkout Page */
.checkout-page {
    padding: 2rem 0 4rem;
    background: #f5f3f0;
    min-height: 60vh;
}

.checkout-header {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.checkout-header-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.checkout-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-page-subtitle {
    font-size: 1.1rem;
    color: #7a6a5a;
}

.checkout-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 147, 0.35);
    backdrop-filter: blur(10px);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-form-section {
    background: rgba(250, 248, 244, 0.95);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 147, 0.35);
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 147, 0.35);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
}

.section-title svg {
    color: #b88658;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(224, 210, 196, 0.9);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fdfbf8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af93;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 147, 0.25);
}

.form-group input::placeholder {
    color: #999;
}

.checkout-summary-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 147, 0.35);
    backdrop-filter: blur(10px);
}

.summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 147, 0.4);
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-title svg {
    color: #b88658;
}

.order-items {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #fbf7f2;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 147, 0.25);
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.order-item-quantity {
    font-size: 0.85rem;
    color: #8a7967;
}

.order-item-price {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1rem;
}

.summary-divider {
    height: 1px;
    background: rgba(212, 175, 147, 0.2);
    margin: 1rem 0;
}

.summary-totals {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-label {
    font-size: 1rem;
    color: #7a6a5a;
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.summary-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 147, 0.4);
}

.summary-row.total .summary-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.summary-row.total .summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.free-shipping {
    color: #3b7c3b;
    font-weight: 600;
}

.btn-place-order {
    width: 100%;
    background: #b88658;
    color: #f5f1eb;
    border: 1px solid rgba(212, 175, 147, 0.4);
    padding: 1.2rem 2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.btn-place-order:active {
    transform: translateY(0);
}

.btn-place-order svg {
    transition: transform 0.3s ease;
}

.btn-place-order:hover svg {
    transform: translateX(4px);
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 147, 0.35);
    backdrop-filter: blur(10px);
    margin-top: 120px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #b88658;
    color: #f5f1eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.order-success h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-number {
    font-size: 1.2rem;
    color: #b88658;
    font-weight: 600;
    margin: 1rem 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-view-orders {
    display: inline-block;
    background: #764ba2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Admin Panel - Enhanced Styles */
.admin-page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.tab-btn.active {
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.tab-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.admin-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.admin-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.admin-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.admin-empty-state {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-product-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.admin-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.admin-product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
}

.admin-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.admin-product-card:hover img:not(.main-image):not(.secondary-image) {
    transform: scale(1.05);
}

.admin-product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-product-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.admin-product-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-category-badge {
    display: inline-block;
    background: #d4af93;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.low-stock {
    color: #ff6b6b;
    font-weight: 600;
    margin-top: 0.5rem;
}

.admin-product-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    padding-top: 0;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
}

.btn-view-product,
.btn-update-product {
    background: #d4af93;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-view-product:hover,
.btn-update-product:hover {
    background: #b88658;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-delete {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    flex: 1;
}

.btn-delete:hover {
    background: #ee5a5a;
}

.orders-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    border: 1px solid #f0f0f0;
}

.orders-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.orders-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 1rem;
}

.orders-table tr {
    transition: background 0.2s ease;
}

.orders-table tr:hover {
    background: #f8f9ff;
}

.orders-table td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
}

.order-items-count {
    font-weight: 600;
    color: #667eea;
}

.order-items-detail {
    margin-top: 0.25rem;
}

.order-items-detail small {
    color: #666;
    font-size: 0.85rem;
}

.status-form {
    display: inline-block;
    margin: 0;
}

.status-select {
    padding: 0.4rem 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    background: white;
    transition: border-color 0.3s;
}

.status-select:hover {
    border-color: #667eea;
}

.status-select:focus {
    outline: none;
    border-color: #667eea;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-processing {
    background: #cfe2ff;
    color: #084298;
}

.status-badge.status-shipped {
    background: #d1e7dd;
    color: #0f5132;
}

.status-badge.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.admin-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.admin-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.admin-form .form-group input,
.admin-form .form-group textarea,
.admin-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.admin-form .form-group input:focus,
.admin-form .form-group textarea:focus,
.admin-form .form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* File Input Styles */
.file-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.file-input:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.file-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.image-preview {
    margin-top: 0.75rem;
    min-height: 50px;
}

.image-preview img {
    display: block;
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Product Image Gallery */
.product-image-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image-gallery .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    opacity: 1;
    z-index: 1;
}

.product-image-gallery .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Hover effect for admin product cards */
.admin-product-card:hover .product-image-gallery .main-image {
    opacity: 0;
}

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

/* Hover effect for regular product cards */
.product-card-wrapper:hover .product-image-gallery .main-image {
    opacity: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-reset {
    background: #6c757d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    margin-left: 0.5rem;
    transition: background 0.3s;
}

.btn-reset:hover {
    background: #5a6268;
}

.admin-form small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.85rem;
}

/* Footer - Modern Style */
/* Footer - Luxury Design */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #e8e8e8;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.4), transparent);
}

.footer-top {
    padding: 5rem 0 3rem;
    background: transparent;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: #f5f1eb;
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-logo-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #d4af93, transparent);
    margin-top: 0.5rem;
}

.footer-description {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #d4af93;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 147, 0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #d4af93 0%, #b88658 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 147, 0.3);
    border-color: transparent;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1.75rem;
    color: #f5f1eb;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, #d4af93, transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #d4af93;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #f5f1eb;
    padding-left: 20px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #d4af93;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.footer-contact-item a:hover {
    color: #d4af93;
}

.footer-contact-item span {
    letter-spacing: 0.2px;
}

.footer-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.footer-feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #d4af93;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 147, 0.1);
    border-radius: 4px;
    padding: 2px;
}

.footer-bottom {
    background: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 147, 0.15);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.3), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright {
    color: #8b8b8b;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

.footer-brand-name {
    color: #d4af93;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links a {
    color: #8b8b8b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #d4af93;
}

.footer-separator {
    color: #4a4a4a;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #667eea;
}

.footer-legal span {
    color: #555;
}

/* Contact Page Styles */
/* Contact Page - Luxury Design */
.contact-page {
    position: relative;
    padding: 5rem 0 6rem;
    min-height: calc(100vh - 200px);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.contact-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe6df 50%, #f0ebe4 100%);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 134, 88, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="marble" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 0h100v100H0z" fill="%23f5f1eb"/><path d="M20 20 Q30 10 40 20 T60 20 T80 20" stroke="%23d4af93" stroke-width="0.5" fill="none" opacity="0.3"/><path d="M10 50 Q20 40 30 50 T50 50 T70 50" stroke="%23b88658" stroke-width="0.5" fill="none" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23marble)"/></svg>');
    background-size: cover, cover, 200px 200px;
    opacity: 0.6;
}

.contact-bg-perfume {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.perfume-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    transform: rotate(-15deg);
}

.contact-page-back {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.contact-page-back .btn-back {
    margin-top: 0;
}

.contact-page-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    text-align: center;
}

.contact-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b88658;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af93, transparent);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: #6b6b6b;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.contact-form-wrapper,
.contact-info-wrapper {
    position: relative;
}

.contact-form-card,
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.3), transparent);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4af93 0%, #b88658 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 175, 147, 0.3);
}

.contact-form-card h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #8b8b8b;
    line-height: 1.6;
    font-weight: 300;
}

.contact-info-card h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-intro {
    color: #8b8b8b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

.contact-form {
    margin-top: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: #4a4a4a;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.contact-form .form-group .required {
    color: #b88658;
    margin-left: 2px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    border: 1.5px solid #e8e4df;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    color: #2c2c2c;
    font-weight: 300;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #b8b8b8;
    font-weight: 300;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #d4af93;
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 0 0 4px rgba(212, 175, 147, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-submit-contact {
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #f5f1eb;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 44, 44, 0.2);
}

.btn-submit-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-submit-contact:hover::before {
    left: 100%;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.3);
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.btn-submit-contact:active {
    transform: translateY(0);
}

.btn-submit-contact svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 1.5;
}

.btn-submit-contact:hover svg {
    transform: translateX(4px);
}

.alert {
    padding: 1.125rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    border: 1px solid;
}

.alert-error {
    background: rgba(255, 235, 235, 0.9);
    color: #c33;
    border-color: rgba(204, 51, 51, 0.2);
}

.alert-success {
    background: rgba(235, 255, 235, 0.9);
    color: #3c3;
    border-color: rgba(51, 204, 51, 0.2);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #d4af93 0%, #b88658 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212, 175, 147, 0.25);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 147, 0.35);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-info-content p,
.contact-info-content a {
    color: #6b6b6b;
    text-decoration: none;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #b88658;
}

.contact-social {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-social h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link-contact {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    color: #8b8b8b;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #e8e4df;
    backdrop-filter: blur(10px);
}

.social-link-contact:hover {
    background: linear-gradient(135deg, #d4af93 0%, #b88658 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 147, 0.3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image-placeholder {
        max-width: 300px;
        height: 300px;
    }

    .hero-emoji {
        font-size: 6rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .card__content {
        padding: 1rem;
    }

    .card__heading {
        font-size: 0.9375rem;
    }

    .button {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-summary-section {
        position: static;
        order: -1;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .cart-item-price {
        align-items: flex-start;
    }

    .cart-page-title {
        font-size: 2rem;
    }

    .cart-items-section,
    .cart-summary {
        padding: 1.5rem;
    }

    .cart-item-name {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.2rem;
    }

    .empty-cart {
        padding: 3rem 1.5rem;
    }

    .empty-cart-icon {
        font-size: 4rem;
    }

    .empty-cart h2 {
        font-size: 1.5rem;
    }

    .btn-back {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-back span {
        display: none;
    }

    .btn-back svg {
        margin: 0;
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-summary-section {
        position: static;
        order: -1;
    }

    .checkout-page-title {
        font-size: 2rem;
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .checkout-form-section,
    .checkout-summary {
        padding: 1.5rem;
    }

    .btn-back span {
        display: none;
    }

    .btn-back svg {
        margin: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page {
        padding: 3rem 0 4rem;
    }

    .contact-bg-perfume {
        display: none;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-icon {
        width: 48px;
        height: 48px;
    }

    .contact-form-card h2,
    .contact-info-card h2 {
        font-size: 1.75rem;
    }

    /* Admin Panel Mobile Styles */
    .admin-tabs {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.25rem;
        margin-bottom: 1.5rem;
    }

    .tab-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: left;
    }

    .tab-btn.active::after {
        left: 0;
        transform: none;
        width: 3px;
        height: 100%;
        bottom: 0;
        top: 0;
    }

    .tab-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .admin-products {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .admin-product-card {
        margin-bottom: 0;
    }

    .admin-product-image {
        height: 180px;
    }

    .admin-product-info {
        padding: 1rem;
    }

    .admin-product-info h4 {
        font-size: 1.1rem;
    }

    .admin-product-actions {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .btn-view-product,
    .btn-delete {
        width: 100%;
    }

    .orders-container {
        border-radius: 8px;
    }

    .orders-table {
        min-width: 700px;
        font-size: 0.85rem;
    }

    .orders-table th,
    .orders-table td {
        padding: 0.75rem 0.5rem;
    }

    .orders-table th {
        font-size: 0.75rem;
    }

    .admin-form {
        padding: 1.5rem;
    }

    .admin-form .form-group input,
    .admin-form .form-group textarea,
    .admin-form .form-group select {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* About Page Styles */
/* About Hero Section - Luxury Design */
.about-hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe6df 30%, #f0ebe4 100%);
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.about-hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 147, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 88, 0.12) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="silk" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M0 0h200v200H0z" fill="%23f5f1eb"/><path d="M0 100 Q50 80 100 100 T200 100" stroke="%23d4af93" stroke-width="0.3" fill="none" opacity="0.2"/><path d="M100 0 Q80 50 100 100 T100 200" stroke="%23b88658" stroke-width="0.3" fill="none" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23silk)"/></svg>');
    background-size: cover, cover, 200px 200px;
    opacity: 0.7;
}

.about-hero-image {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%) rotate(-15deg);
    width: 600px;
    height: 600px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    filter: grayscale(100%) brightness(0.8);
}

.hero-perfume-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b88658;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-hero-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af93, transparent);
}

.about-hero-title {
    font-size: 5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    font-family: 'Georgia', 'Times New Roman', serif;
    animation: fadeInUp 1s ease;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: #6b6b6b;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.about-hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af93, transparent);
    margin: 2rem auto 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.about-page-back {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.about-page-back .btn-back {
    margin-top: 0;
    margin-left: -290px;
}

.about-main-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f1eb 100%);
    position: relative;
}

.about-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.3), transparent);
}

.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af93, transparent);
}

/* About Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.3), transparent);
}

.about-story-text {
    animation: fadeInLeft 1s ease;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.about-story-image {
    animation: fadeInRight 1s ease;
    position: relative;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Values Section */
.about-values {
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af93, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(212, 175, 147, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.value-card p {
    font-size: 0.9rem;
    color: #6b6b6b;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* Gallery Section */
.about-gallery {
    margin-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 147, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(212, 175, 147, 0.2);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Mission Section */
.about-mission {
    background: #ffffff;
    padding: 5rem 4rem;
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 147, 0.3), transparent);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-image {
    animation: fadeInLeft 1s ease;
    position: relative;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 147, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.mission-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.98);
}

.mission-img:hover {
    transform: scale(1.02);
    filter: brightness(1);
}

.mission-text {
    animation: fadeInRight 1s ease;
}

.mission-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.875rem;
    color: #8b8b8b;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive About Page */
@media (max-width: 968px) {
    .about-hero-section {
        padding: 5rem 0 4rem;
        min-height: 60vh;
    }

    .about-hero-image {
        display: none;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-story,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story,
    .about-mission {
        padding: 2.5rem;
    }

    .values-quality-section .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 300px;
    }

    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: static;
    }
}

@media (max-width: 768px) {

    /* Header Responsive */
    .header {
        padding: 0;
    }

    .header.scrolled {
        padding: 0;
    }

    .header {
        top: calc(0.625rem * 2 + 2.5rem);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
    }

    .header.scrolled {
        top: calc(0.625rem * 2 + 2.5rem);
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .header-content {
        margin: 4px;
        padding: 0.5rem 1rem;
        padding-top: 0;
        margin-top: 0;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(212, 175, 147, 0.1);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header.scrolled .header-content {
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-color: rgba(212, 175, 147, 0.2);
    }

    .header-background {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(212, 175, 147, 0.1);
        z-index: 1600;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(212, 175, 147, 0.1);
        font-size: 1rem;
        color: #1a1a1a;
        letter-spacing: 1px;
    }

    .nav-dropdown {
        width: 100%;
    }

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

    .nav-dropdown.active .nav-dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        margin: 0;
        padding: 0;
        min-width: 100%;
        background: rgba(212, 175, 147, 0.03);
        transition: all 0.4s ease;
        border: none;
        box-shadow: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    /* Disable Desktop Hover logic on Mobile */
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .nav-dropdown.active:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown:hover .nav-dropdown-toggle::after {
        transform: none;
    }

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

    .nav-dropdown-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(212, 175, 147, 0.05);
    }

    .main-content {
        margin-top: 0;
    }

    .promo-banner {
        font-size: 0.625rem;
        padding: 0.5rem 0;
    }

    .promo-text {
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 1px;
    }

    .logo-divider {
        width: 30px;
    }

    .cart-link {
        padding: 0.5rem 0.75rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-story,
    .about-mission {
        padding: 2rem;
    }

    .values-quality-section .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .value-card {
        padding: 2rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Homepage Hero Responsive */
    .homepage-hero-section {
        height: 80vh;
        min-height: 600px;
        margin-top: calc(0.625rem * 2 + 2.5rem + 4px * 2 + 60px);
        padding-top: 0;
        box-sizing: border-box;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-subtitle-text {
        font-size: 1.125rem;
    }

    .hero-description-text {
        font-size: 0.9375rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-luxury {
        width: 100%;
        max-width: 300px;
    }

    .brand-presentation-section,
    .featured-products-section,
    .values-quality-section,
    .collection-preview-section,
    .cta-section {
        padding: 4rem 0;
    }

    .brand-presentation-section {
        padding: 5rem 0;
    }

    .brand-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .brand-image-content {
        order: -1;
    }

    .brand-text-content .section-title {
        font-size: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .brand-description {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .brand-text-content .section-label {
        padding-left: 1.5rem;
    }

    .brand-text-content .section-label::before {
        width: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-quality-section .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collection-categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collection-category-card {
        height: 350px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #b88658;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    background: #856404;
}

.scroll-to-top-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .scroll-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Product Detail Page - Luxury Design */
.product-detail-header {
    margin: 2rem 0;
}

.product-back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(212, 175, 147, 0.3);
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.product-back-button:hover {
    border-color: #d4af93;
    color: #d4af93;
    background: rgba(212, 175, 147, 0.05);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.product-detail-image {
    position: relative;
}

.product-image-gallery {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.product-image-gallery img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-gallery:hover .main-image {
    transform: scale(1.05);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d4af93;
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-detail-info h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.1;
}

.product-brand-detail {
    font-size: 1.125rem;
    color: #8b8b8b;
    margin-bottom: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}

.product-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.product-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    font-size: 0.875rem;
    color: #666;
}

.spec-item strong {
    color: #2c2c2c;
    font-weight: 500;
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.product-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    height: 54px;
}

.quantity-selector button {
    width: 45px;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.25rem;
    color: #2c2c2c;
    transition: all 0.2s ease;
}

.quantity-selector button:hover {
    background: #f8f8f8;
    color: #d4af93;
}

.quantity-selector input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: #2c2c2c;
    background: transparent;
    appearance: none;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-cart-large {
    flex-grow: 1;
    height: 54px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-add-cart-large:hover {
    background: #d4af93;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 147, 0.3);
}

/* Responsive Product Page */
@media (max-width: 968px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }

    .product-detail-info h1 {
        font-size: 1.875rem;
        margin-bottom: 0.25rem;
    }

    .product-category {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .product-brand-detail {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .product-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .product-price-large {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .product-specs {
        gap: 1.25rem;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-selector {
        justify-content: center;
    }

    .btn-add-cart-large {
        width: 100%;
    }
}