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

:root {
    --burgundy-dark: #2A0D14;
    --burgundy: #4A1520;
    --burgundy-light: #6B1F30;
    --navy-dark: #0A0F1F;
    --navy: #0F1B3D;
    --navy-light: #1A2B4F;
    --gold: #D4AF37;
    --cream: #F5E6D3;
    --white: #FFFFFF;
    --gray: #9CA3AF;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 15px 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo-text h1 {
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--gold);
}

.logo-text .tagline {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--cream);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

.cart-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 21, 32, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(15, 27, 61, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: silver;
    margin-bottom: 60px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-showcase {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 1.5s ease 0.4s both;
    perspective: 1500px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateX(8deg) scale(0.95);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: bottom center;
}

.image-wrapper:hover {
    transform: rotateX(0deg) scale(1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(192, 192, 192, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    filter: contrast(1.05) brightness(1.05);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.image-wrapper:hover .glow-effect {
    animation: shine 1.5s ease;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

.reflection {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: scaleY(-1);
    filter: blur(10px);
    opacity: 0.3;
    mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    pointer-events: none;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--cream);
    letter-spacing: 1.5px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* Collections Section */
.collections {
    padding: 100px 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.collection-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.collection-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.burgundy-card {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
}

.navy-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.collection-content {
    padding: 50px;
    z-index: 2;
    position: relative;
}

.collection-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--cream);
}

.collection-content p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
}

.view-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-products-btn:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.collection-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

/* Infinite Carousel Section */
.carousel-section {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 80px;
    background-color: var(--white);
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: scrollCarousel 40s linear infinite;
    gap: 20px;
    padding-left: 20px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.carousel-track img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 6 - 20px * 6)); }
}

/* Story Section */
.story {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content {
    padding-right: 40px;
}

.story-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.story-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--cream);
}

.story-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 40px;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateX(5px);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Instagram Section */
.instagram {
    padding: 100px 0;
}

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

.instagram-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.instagram-info i {
    font-size: 48px;
    color: var(--gold);
}

.instagram-info h3 {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 5px;
}

.instagram-info p {
    color: var(--gray);
    font-size: 14px;
}

.instagram-tagline {
    font-style: italic;
    font-size: 13px !important;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.instagram-cta:hover {
    transform: translateX(5px);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--navy) 100%);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--cream);
}

.newsletter-content p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 16px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 16px 35px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--cream);
}

.contact-subtitle {
    color: var(--gray);
    margin-bottom: 60px;
    font-size: 16px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--cream);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--cream);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--burgundy-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease;
}

.products-modal-content {
    max-width: 1200px;
}

.cart-modal-content {
    max-width: 500px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--burgundy);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--cream);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--cream);
}

.product-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--cream);
    transform: scale(1.05);
}

/* Cart Modal */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 30px;
}

.empty-cart {
    text-align: center;
    color: var(--gray);
    padding: 40px 0;
    font-size: 16px;
}

.cart-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-info h4 {
    color: var(--cream);
    margin-bottom: 5px;
    font-size: 16px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.quantity {
    color: var(--white);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--burgundy-light);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #ff4444;
}

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--gold);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cream);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 15, 31, 0.98);
        width: 100%;
        padding: 40px;
        gap: 25px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-products {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .language-toggle {
        right: auto;
        left: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track {
        gap: 10px;
        animation: scrollCarouselMobile 30s linear infinite;
    }
    
    .carousel-track img {
        width: 160px;
        height: 220px;
    }
}

@keyframes scrollCarouselMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-160px * 6 - 10px * 6)); }
}