:root {
    --primary-color: #2a2a2a;
    --secondary-color: #9c8c74; /* Beige/Gold accent */
    --text-light: #555555;
    --text-dark: #1a1a1a;
    --bg-white: #ffffff;
    --bg-light-gray: #f9f9f9;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --spacing-lg: 80px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-fluid {
    width: 100%;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    cursor: pointer;
    border: none;
    margin-top: var(--spacing-sm);
    font-weight: 500;
    white-space: nowrap;
}

.btn-primary {
    background-color: #cbbba0;
    color: white;
}

.btn-primary:hover {
    background-color: #bfa988;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo a {
    display: block;
    transition: transform 0.3s;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-color);
    margin-left: 2px;
    font-weight: 500;
}

.header.scrolled .logo-title {
    color: var(--primary-color);
}

.logo a:hover {
    transform: scale(1.05);
}

/* Footer Logo Specifics */
.footer-logo .logo-text {
    align-items: flex-start;
}

.footer-logo .logo-title {
    color: white;
}

.footer-logo .logo-subtitle {
    color: var(--secondary-color);
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: white;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: block;
}

.header.scrolled .nav-list li a {
    color: var(--primary-color);
}

/* Link underline effect */
.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.header.scrolled .nav-list li a:hover {
    color: var(--secondary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.header.scrolled .lang-btn {
    border-color: rgba(51, 51, 51, 0.2);
    color: var(--primary-color);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.header.scrolled .lang-btn:hover {
    background: rgba(203, 187, 160, 0.1);
}

.lang-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.lang-btn:hover i {
    transform: translateY(2px);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-icon:hover i {
    color: white;
    transform: scale(1.1);
}

.header.scrolled .social-icon {
    background: rgba(51, 51, 51, 0.05);
    border-color: rgba(51, 51, 51, 0.1);
    color: var(--primary-color);
}

.header.scrolled .social-icon::before {
    background: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-list li a {
    display: block;
    padding: 20px 40px;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(203, 187, 160, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-list li a:hover {
    padding-left: 50px;
    color: var(--secondary-color);
}

.mobile-nav-list li a:hover::before {
    width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-list {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .social-icons {
        display: none;
    }
    
    .language-selector {
        display: none;
    }
    
    .header-right {
        gap: 15px;
    }
}

/* Hero Section */
.hero-section {
    height: 60vh;
    min-height: 740px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) translateZ(0);
    z-index: 0;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    pointer-events: none;
    /* Оптимизация для плавного воспроизведения */
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    image-rendering: -webkit-optimize-contrast;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.25) 0%, rgba(156, 140, 116, 0.15) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 30px;
    /* Keep hero text clear of the fixed header */
    margin-top: clamp(70px, 8vh, 120px);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.hero-badge {
    display: inline-block;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.7s;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 25px;
    background: rgba(203, 187, 160, 0.15);
    border: 1px solid rgba(203, 187, 160, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #cbbba0;
    font-weight: 500;
    border-radius: 30px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    line-height: 1.2;
}

.title-line:nth-child(1) {
    animation-delay: 0.9s;
}

.title-line:nth-child(2) {
    animation-delay: 1.1s;
}

.hero-description {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 1.3s;
    line-height: 1.8;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 1.5s;
    width: 100%;
}

.btn-hero {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-hero span,
.btn-hero i {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.btn-hero i {
    transition: transform 0.3s;
}

.btn-hero:hover::before {
    left: 0;
}

.btn-hero:hover {
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover span,
.btn-hero:hover i {
    color: var(--primary-color);
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 1.7s;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: clamp(8px, 2vh, 28px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 2s;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
}

.mouse-icon:hover {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-video-control {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 2.2s;
}

.hero-video-control:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-video-control.paused i::before {
    content: '\f04b'; /* play icon */
}

@keyframes scrollMouse {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

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

/* Responsive adjustments for hero */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    /* Оптимизация видео на мобильных */
    .hero-video {
        will-change: auto;
        /* Улучшенная производительность на мобильных */
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        padding: 28px 20px;
        gap: 16px;
        margin-top: 80px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0;
    }
    
    .hero-title {
        margin: 0;
        gap: 8px;
    }
    
    .hero-badge {
        margin: 0;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-video-control {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero-scroll-indicator {
        bottom: 10px;
    }
}

/* Отключение видео на очень маленьких экранах для экономии трафика */
@media (max-width: 480px) {
    .hero-video {
        display: none;
    }
    
    .hero-section {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    }
}

.mouse-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Steps Bar Section */
.steps-bar-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 100px 0;
    border-top: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.steps-bar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: left;
    position: relative;
}

.step-item {
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    background: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(2) {
    animation-delay: 0.3s;
}

.step-item:nth-child(3) {
    animation-delay: 0.5s;
}

.step-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #e0e0e0 50%, transparent);
    transition: opacity 0.3s;
}

.step-item:last-child::after {
    display: none;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.step-item:hover::after {
    opacity: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cbbba0 0%, #9c8c74 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-icon::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;
}

.step-item:hover .step-icon::before {
    width: 200px;
    height: 200px;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.step-item:hover .step-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(203, 187, 160, 0.4);
}

.step-item:hover .step-icon i {
    transform: scale(1.1);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    display: block;
    margin-bottom: 20px;
    opacity: 0.3;
    transition: all 0.3s;
    line-height: 1;
}

.step-item:hover .step-number {
    opacity: 0.5;
    transform: scale(1.05);
}

.step-item h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.step-item:hover h3 {
    color: var(--secondary-color);
}

.step-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-item:hover .step-description {
    opacity: 1;
    max-height: 100px;
    margin-top: 15px;
}

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

/* Responsive adjustments for steps */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-item::after {
        display: none;
    }
    
    .step-item {
        text-align: center;
        padding: 30px 20px;
    }
    
    .step-icon {
        margin: 0 auto 25px;
    }
    
    .step-description {
        opacity: 1;
        max-height: 100px;
        margin-top: 15px;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.about-text {
    position: relative;
}

.about-text .section-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-text .section-title {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.2s;
}

.about-content {
    margin-top: 50px;
}

.about-feature {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s ease-out forwards;
    transition: all 0.3s;
}

.about-feature:nth-child(1) {
    animation-delay: 0.3s;
}

.about-feature:nth-child(2) {
    animation-delay: 0.5s;
}

.about-feature:nth-child(3) {
    animation-delay: 0.7s;
}

.about-feature:hover {
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cbbba0 0%, #9c8c74 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-feature:hover .feature-icon::before {
    width: 150px;
    height: 150px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.about-feature:hover .feature-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(203, 187, 160, 0.4);
}

.about-feature:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.5;
    color: var(--text-dark);
    transition: color 0.3s;
}

.about-feature:hover .feature-content h3 {
    color: var(--secondary-color);
}

.feature-content p {
    color: var(--text-dark);
    font-weight: 400;
    line-height: 2;
    font-size: 1.1rem;
}

.about-content .btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.9s;
}

.about-content .btn i {
    transition: transform 0.3s;
}

.about-content .btn:hover i {
    transform: translateX(5px);
}

.about-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 187, 160, 0.3);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    position: relative;
}

.image-grid-col {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.image-grid-col:nth-child(1) .image-wrapper {
    animation-delay: 0.4s;
}

.image-grid-col:nth-child(2) .image-wrapper {
    animation-delay: 0.6s;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 187, 160, 0) 0%, rgba(203, 187, 160, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

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

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

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.image-overlay i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.image-wrapper:hover .image-overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.image-wrapper:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.offset-down {
    margin-top: 60px;
}

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

/* Responsive adjustments for about section */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        order: -1;
    }
    
    .offset-down {
        margin-top: 0;
    }
    
    .about-feature {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
}

/* Products Catalog Section */
.products-section {
    padding: 80px 0;
    background: #fafafa;
    min-height: 60vh;
}

.catalog-controls {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-box {
    position: relative;
    max-width: 500px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Custom Input */
.custom-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    background: white;
}

.custom-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(203, 187, 160, 0.1);
}

.search-box input {
    /* Extending from custom-input style for compatibility */
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(203, 187, 160, 0.1);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.sort-box {
    max-width: 250px;
    min-width: 220px;
    position: relative;
}

/* Custom Select Style */
.custom-select {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    background: white;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select-trigger:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    margin-top: -5px;
}

.custom-select.open .custom-select-trigger {
    border-color: var(--secondary-color);
}

.custom-select.open .custom-select-trigger:after {
    transform: rotate(-135deg);
    margin-top: 5px;
    border-color: var(--secondary-color);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: white;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    z-index: 100;
    overflow: hidden;
    margin-top: 10px;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.custom-option:hover {
    background-color: var(--bg-light-gray);
    color: var(--secondary-color);
}

.custom-option.selected {
    color: var(--secondary-color);
    background-color: rgba(203, 187, 160, 0.1);
    font-weight: 500;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: all;
}


.product-quick-view,
.product-add-cart {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    font-size: 1.1rem;
    z-index: 11;
    position: relative;
    pointer-events: all;
}

.product-quick-view:hover,
.product-add-cart:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    font-family: var(--font-serif);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-serif);
}

.btn-add-to-cart {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.btn-add-to-cart:hover {
    background: #bfa988;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 187, 160, 0.3);
}

.btn-add-to-cart i {
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 8px;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    background: white;
}

.page-num:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

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

.page-dots {
    color: var(--text-light);
    padding: 0 5px;
}

/* Responsive adjustments for products */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .catalog-controls {
        gap: 20px;
    }
    
    .filters {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-add-to-cart {
        width: 100%;
        justify-content: center;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-btn {
        padding: 12px;
    }
}

/* Notification Component */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.notification-toast {
    background: white;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: all;
    border-left: 4px solid var(--secondary-color);
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.notification-message {
    font-size: 0.85rem;
    color: var(--text-light);
}

.notification-close {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
}

.notification-close:hover {
    color: var(--primary-color);
}

.notification-toast.success .notification-icon {
    color: #4CAF50;
}
.notification-toast.success {
    border-left-color: #4CAF50;
}

.notification-toast.error .notification-icon {
    color: #f44336;
}
.notification-toast.error {
    border-left-color: #f44336;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(203, 187, 160, 0.3) 50%, transparent);
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    align-items: start;
}

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

.footer-logo {
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-description {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.2s;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.4s;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-link:hover i {
    color: white;
    transform: scale(1.1);
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-nav h4,
.footer-contact h4 {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-nav h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

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

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #bbb;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
}

.footer-nav ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.footer-nav ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-nav ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #bbb;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact ul li span,
.footer-contact ul li a {
    color: #bbb;
    line-height: 1.7;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-contact ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #aaa;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #bbb;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.separator {
    color: #555;
}

.footer-legal {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.9;
    margin: 0;
}

/* Cart Icon */
.cart-icon-btn {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.cart-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.cart-icon-btn:hover::before {
    width: 100%;
    height: 100%;
}

.cart-icon-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s, color 0.3s;
}

.cart-icon-btn:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.cart-icon-btn:hover i {
    color: white;
    transform: scale(1.1);
}

.header.scrolled .cart-icon-btn {
    background: rgba(51, 51, 51, 0.05);
    border-color: rgba(51, 51, 51, 0.1);
    color: var(--primary-color);
}

.header.scrolled .cart-icon-btn::before {
    background: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cart-bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-sidebar.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-sidebar.active .cart-sidebar-overlay {
    opacity: 1;
}

.cart-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    z-index: 10;
}

.cart-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cart-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px;
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 1.1rem;
    margin: 0;
}

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

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light-gray);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.cart-item-decrease,
.cart-item-increase {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.cart-item-decrease:hover,
.cart-item-increase:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.cart-item-quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 4px;
}

.cart-item-remove:hover {
    background: #ff4444;
    color: white;
    transform: scale(1.1);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid #eee;
    background: white;
    display: none;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-serif);
}

.cart-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1rem;
}

.cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 187, 160, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .steps-grid, .about-container, .video-container, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-list {
        display: none; /* Mobile menu hidden for simplicity */
    }
    
    .cart-sidebar-content {
        max-width: 100%;
    }
    
    .cart-header {
        padding: 20px;
    }
    
    .cart-title {
        font-size: 1.5rem;
    }
    
    .cart-body {
        padding: 15px;
    }
    
    .cart-item {
        padding: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-footer {
        padding: 20px;
    }
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.checkout-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.checkout-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.checkout-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.checkout-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(203, 187, 160, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkout-summary {
    background: var(--bg-light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.summary-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.checkout-btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .checkout-content {
        padding: 25px;
        width: 95%;
    }
    
    .checkout-title {
        font-size: 1.5rem;
    }
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quick-view-modal.active {
    opacity: 1;
    pointer-events: all;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.quick-view-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-view-modal.active .quick-view-content {
    transform: scale(1) translateY(0);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10;
}

.quick-view-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

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

.quick-view-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.quick-view-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    display: flex;
    flex-direction: column;
}

.quick-view-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.quick-view-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.quick-view-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-family: var(--font-serif);
}

.quick-view-add-cart {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .quick-view-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .quick-view-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .quick-view-name {
        font-size: 1.5rem;
    }
    
    .quick-view-price {
        font-size: 1.5rem;
    }
}
