@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black: #0D0D0D;
    --cream: #F5F1E8;
    --gold: #D4AF37;
    --gold-light: #E8D4A0;
    --white: #FFFFFF;
    --gray: #8A8A8A;
    --gray-light: #B8B8B8;
    --gray-dark: #2A2A2A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--gold-light);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cart-btn:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    padding-top: 80px;
}

.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 1600px;
    width: 100%;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 10;
}

.hero-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    background: var(--gold-light);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.hero-product {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.product-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(80px);
}

.product-bed {
    position: relative;
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--cream) 0%, #e8e4dc 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 2px 40px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.bed-reflection {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), transparent);
    filter: blur(20px);
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(10px); }
}

.features {
    padding: 6rem 4rem;
    background: var(--gray-dark);
}

.features-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.benefits {
    padding: 8rem 4rem;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--white);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
}

.benefit-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.95rem;
    color: var(--gray-light);
}

.collection {
    padding: 10rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--cream);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.product-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e4dc 0%, var(--cream) 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.product-card:hover .product-image {
    transform: scale(1.05) translateY(-10px);
}

.product-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15), transparent);
    filter: blur(15px);
}

.product-info {
    padding: 2.5rem;
    background: var(--cream);
}

.product-category {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.product-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--black);
    color: var(--cream);
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-cta:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateX(4px);
}

.product-cta svg {
    transition: transform 0.3s ease;
}

.product-cta:hover svg {
    transform: translateX(4px);
}

.testimonials {
    padding: 8rem 4rem;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 60px;
}

.testimonials-carousel {
    overflow: hidden;
    border-radius: 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.testimonial-slide {
    min-width: calc(33.333% - 1.333rem);
    flex-shrink: 0;
}

.testimonial-card-modern {
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card-modern:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-comment-modern {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.author-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.author-verified svg {
    flex-shrink: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 5px;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 6rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lifestyle {
    padding: 6rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 1rem;
}

.lifestyle-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.lifestyle-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifestyle-card:hover .lifestyle-image {
    transform: scale(1.05);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13, 13, 13, 0.9));
    transition: background 0.4s ease;
}

.lifestyle-card:hover .lifestyle-overlay {
    background: linear-gradient(to bottom, transparent 30%, rgba(13, 13, 13, 0.95));
}

.lifestyle-link-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.lifestyle-card:hover .lifestyle-link-icon {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.lifestyle-link-icon svg {
    width: 20px;
    height: 20px;
}

.film-grain {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    pointer-events: none;
    opacity: 0.5;
}

.lifestyle-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 10;
}

.lifestyle-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.lifestyle-description {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.newsletter {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--black) 100%);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-button {
    padding: 1.25rem 3rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 4rem 2rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.breadcrumb {
    padding: 2rem 0;
    font-size: 0.875rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-detail {
    padding: 8rem 4rem 4rem;
    background: var(--black);
    min-height: 100vh;
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-detail-image {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 600px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cream);
    margin-bottom: 1rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}

.product-detail-info {
    color: var(--white);
}

.product-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.product-price-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price-large {
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.product-tax {
    color: var(--gray);
    font-size: 0.875rem;
}

.product-description-full {
    margin-bottom: 2rem;
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features-list {
    margin-bottom: 3rem;
}

.product-features-list h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-features-list ul {
    list-style: none;
}

.product-features-list li {
    padding: 0.75rem 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.product-guarantees {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.guarantee-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.product-reviews {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.review-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray-light);
    line-height: 1.6;
}

.related-products {
    margin-top: 4rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cream);
    margin-bottom: 1rem;
}

.related-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.related-price {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
}

.cart-page {
    padding: 8rem 4rem 4rem;
    background: var(--black);
    min-height: 100vh;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--white);
}

.empty-cart {
    text-align: center;
    padding: 6rem 2rem;
}

.empty-cart svg {
    color: var(--gray);
    margin-bottom: 2rem;
}

.empty-cart h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.empty-cart p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 2fr 150px 120px 50px;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cream);
}

.cart-item-name {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gray-light);
    font-size: 1rem;
}

.quantity-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.item-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.btn-remove:hover {
    color: #ff4444;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-clear {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    color: #ff4444;
    border-color: #ff4444;
}

.cart-summary {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
}

.summary-total {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    padding-top: 1.5rem;
}

.summary-total span:last-child {
    color: var(--gold);
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.shipping-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--gold);
}

.btn-checkout {
    width: 100%;
    padding: 1.5rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-checkout:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.payment-methods p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--gray-light);
}

.trust-badges {
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-light);
    font-size: 0.875rem;
}

.trust-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

.about-hero,
.contact-hero {
    padding: 12rem 4rem 6rem;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    text-align: center;
}

.about-title,
.contact-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-subtitle,
.contact-subtitle {
    font-size: 1.25rem;
    color: var(--gold);
}

.about-story,
.about-values,
.about-benefits {
    padding: 6rem 4rem;
}

.about-container,
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.about-text p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--gray-dark) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

.benefits-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.benefit-item-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--gold);
}

.benefit-item-large svg {
    color: var(--gold);
    flex-shrink: 0;
}

.benefit-item-large span {
    color: var(--gray-light);
    font-size: 1.05rem;
}

.about-cta {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-cta-content p {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.contact-content {
    padding: 6rem 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info > p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-detail-item a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--gold);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366 !important;
    font-size: 0.875rem;
}

.contact-hours,
.contact-social {
    margin-bottom: 2rem;
}

.contact-hours h3,
.contact-social h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-hours p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    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: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem;
}

.form-group select option:checked,
.form-group select option:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--gold);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.btn-submit {
    padding: 1.25rem 2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.contact-faq {
    padding: 6rem 4rem;
    background: var(--gray-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--gray-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    /* Navigation */
    .nav-container {
        padding: 1.5rem 2rem;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .hero-product {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .collection,
    .lifestyle {
        padding: 6rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Product Grids */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Page Grids */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Cart Items */
    .cart-item {
        grid-template-columns: 100px 1fr auto;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
    }
    
    .cart-summary {
        position: relative;
        top: auto;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 6rem 2rem;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-slide {
        min-width: calc(50% - 1rem);
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* About Page */
    .about-hero,
    .contact-hero {
        padding: 10rem 2rem 5rem;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    /* Contact Form */
    .contact-form-container {
        padding: 2rem;
    }
    
    /* Product Detail */
    .product-detail {
        padding: 7rem 2rem 3rem;
    }
    
    .product-detail-image {
        position: relative;
        top: auto;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .language-switcher {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 8rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    /* Sections */
    .collection,
    .lifestyle,
    .features,
    .benefits {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Product Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    /* Features & Benefits */
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 4rem 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 4rem 1rem 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 4rem 1rem;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-slide {
        min-width: 100%;
    }
    
    .testimonial-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .testimonials-stats {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Product Detail Page */
    .product-detail {
        padding: 6rem 1rem 2rem;
    }
    
    .product-detail-grid {
        gap: 2rem;
    }
    
    .product-detail-image {
        position: relative;
        top: auto;
    }
    
    .main-image {
        height: 350px;
    }
    
    .gallery-thumbs {
        gap: 0.5rem;
    }
    
    .gallery-thumb {
        height: 80px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price-large {
        font-size: 2.5rem;
    }
    
    .product-variants {
        padding: 1.5rem;
    }
    
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-buy-now,
    .btn-add-cart {
        width: 100%;
    }
    
    /* About Page */
    .about-hero,
    .contact-hero {
        padding: 8rem 1rem 4rem;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 4rem 1rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Page */
    .contact-content {
        padding: 4rem 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
}

/* Product Variants Styles - Premium Theme */
.product-variants {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(42, 42, 42, 0.4) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.product-variants::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: variantGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes variantGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(10%, 10%) scale(1.1); opacity: 0.5; }
}

.product-variants h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.product-variants h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    margin-top: 0.75rem;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.variant-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.variant-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.variant-option:hover::before {
    opacity: 1;
}

.variant-option:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2),
                0 0 0 1px rgba(212, 175, 55, 0.1) inset;
}

.variant-option.active {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3),
                0 0 0 2px var(--gold) inset,
                0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.variant-option.active::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
    animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.variant-image {
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.variant-option:hover .variant-image {
    transform: scale(1.1) rotate(2deg);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.variant-option.active .variant-image {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.variant-color-swatch {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 0 4px rgba(255, 255, 255, 0.05);
}

.variant-option:hover .variant-color-swatch {
    transform: scale(1.1) rotate(-2deg);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3),
                0 0 0 4px rgba(212, 175, 55, 0.1);
}

.variant-option.active .variant-color-swatch {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                0 0 0 4px rgba(212, 175, 55, 0.2);
}

.variant-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.variant-option:hover .variant-name {
    color: var(--gold);
    transform: scale(1.05);
}

.variant-option.active .variant-name {
    color: var(--gold);
    font-weight: 700;
}

.variant-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.variant-option:hover .variant-price {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.variant-option.active .variant-price {
    animation: priceGlow 1.5s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); }
}

@media (max-width: 768px) {
    .variants-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .variant-option {
        padding: 0.75rem;
    }
    
    .variant-image,
    .variant-color-swatch {
        width: 60px;
        height: 60px;
    }
    
    .variant-name {
        font-size: 0.85rem;
    }
    
    .variant-price {
        font-size: 1rem;
    }
}

/* Authentication Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--black);
    position: relative;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.auth-box {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-light);
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-light);
}

.btn-auth {
    margin-top: 1rem;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--gold-light);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-btn,
.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-btn:hover,
.login-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.user-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

@media (max-width: 768px) {
    .auth-box {
        padding: 2rem 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 2rem;
    }
    
    .user-btn span,
    .login-btn span {
        display: none;
    }
    
    .user-btn,
    .login-btn {
        padding: 0.6rem;
    }
}

/* Checkout Page */
.checkout-page {
    min-height: 100vh;
    padding: 8rem 4rem 4rem;
    background: var(--black);
}

.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 3rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.checkout-form-section h2,
.checkout-summary h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkout-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.btn-complete-order {
    margin-top: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.checkout-summary {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(42, 42, 42, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    align-items: center;
}

.summary-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--cream);
}

.summary-item-details h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.summary-item-color,
.summary-item-quantity {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.summary-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    padding-top: 1rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 0.5rem;
}

.summary-total span:last-child {
    color: var(--gold);
}

/* Order Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: var(--black);
}

.success-container {
    max-width: 600px;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    stroke: var(--gold);
}

.success-container h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .checkout-summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 6rem 1rem 2rem;
    }
    
    .checkout-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        padding: 1.5rem;
    }
    
    .summary-item {
        grid-template-columns: 60px 1fr auto;
    }
    
    .summary-item img {
        width: 60px;
        height: 60px;
    }
    
    .success-container h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
    }
    
    /* Cart Page Mobile */
    .cart-page {
        padding: 6rem 1rem 2rem;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        position: relative;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
        border-radius: 8px;
    }
    
    .cart-item-details {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cart-item-name {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .cart-item-price {
        font-size: 0.875rem;
    }
    
    .cart-item-quantity {
        width: 100%;
    }
    
    .quantity-form {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }
    
    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .qty-input {
        width: 60px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cart-item-total {
        text-align: center;
        padding: 0.75rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .item-total {
        font-size: 1.5rem;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .btn-remove {
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-continue,
    .btn-clear {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .cart-summary {
        position: relative;
        top: auto;
        padding: 1.5rem;
    }
    
    .summary-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .summary-row {
        padding: 0.75rem 0;
        font-size: 0.875rem;
    }
    
    .summary-total {
        font-size: 1.25rem;
        padding-top: 1rem;
    }
    
    .shipping-notice {
        padding: 0.75rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .shipping-notice svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-checkout {
        padding: 1.25rem;
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
    
    .payment-methods {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .payment-methods p {
        font-size: 0.75rem;
    }
    
    .payment-icons {
        gap: 0.5rem;
    }
    
    .payment-icons span {
        padding: 0.375rem 0.75rem;
        font-size: 0.625rem;
    }
    
    .trust-badge {
        padding: 0.5rem 0;
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .trust-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .empty-cart {
        padding: 4rem 1rem;
    }
    
    .empty-cart h2 {
        font-size: 1.5rem;
    }
    
    .empty-cart svg {
        width: 60px;
        height: 60px;
    }
}
