@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --charcoal: #1A1A1A;
    --dark-blue: #0F172A;
    --silver: #C0C0C0;
    --amber: #D4A373;
    --amber-hover: #B8935F;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #E5E5E5;
    --medium-gray: #8A8A8A;
    --dark-gray: #333333;
    --gradient-dark: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-blue) 100%);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.02em;
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--amber);
    color: var(--charcoal);
}

.btn-primary:hover {
    background-color: var(--amber-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
}

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

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

.btn-ghost {
    background-color: transparent;
    color: var(--amber);
    padding: 12px 0;
    border-bottom: 1px solid var(--amber);
}

.btn-ghost:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white);
}

.logo span {
    color: var(--amber);
}

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

nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--amber);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--white);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--silver);
    transition: var(--transition-smooth);
}

.cart-icon:hover {
    color: var(--amber);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--charcoal);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 163, 115, 0.1) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-sound-wave {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    opacity: 0.3;
}

.wave-bar {
    width: 3px;
    background: linear-gradient(to top, var(--amber), transparent);
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 60%; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 80%; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 100%; animation-delay: 1.0s; }
.wave-bar:nth-child(12) { height: 80%; animation-delay: 1.1s; }
.wave-bar:nth-child(13) { height: 60%; animation-delay: 1.0s; }
.wave-bar:nth-child(14) { height: 40%; animation-delay: 0.9s; }
.wave-bar:nth-child(15) { height: 20%; animation-delay: 0.8s; }
.wave-bar:nth-child(16) { height: 40%; animation-delay: 0.7s; }
.wave-bar:nth-child(17) { height: 60%; animation-delay: 0.6s; }
.wave-bar:nth-child(18) { height: 80%; animation-delay: 0.5s; }
.wave-bar:nth-child(19) { height: 100%; animation-delay: 0.4s; }
.wave-bar:nth-child(20) { height: 80%; animation-delay: 0.3s; }
.wave-bar:nth-child(21) { height: 60%; animation-delay: 0.2s; }
.wave-bar:nth-child(22) { height: 40%; animation-delay: 0.1s; }
.wave-bar:nth-child(23) { height: 20%; animation-delay: 0s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 30px;
    padding: 8px 20px;
    border: 1px solid var(--amber);
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fade-in-up 1s ease-out 0.2s both;
}

.hero h1 .accent {
    color: var(--amber);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 50px;
    max-width: 500px;
    animation: fade-in-up 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 0.6s both;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 600px;
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: 4px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

.featured-categories {
    padding: 120px 0;
    background-color: var(--off-white);
    color: var(--charcoal);
}

.featured-categories .section-header h2,
.featured-categories .section-header p {
    color: var(--charcoal);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    color: var(--white);
    transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
    padding-bottom: 50px;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.category-overlay p {
    font-size: 13px;
    color: var(--silver);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

.about-section {
    padding: 120px 0;
    background-color: var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 4px solid var(--charcoal);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: var(--white);
}

.about-content p {
    color: var(--silver);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--dark-gray);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--amber);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
}

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

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

.products-section {
    padding: 120px 0;
    background-color: var(--off-white);
    color: var(--charcoal);
}

.products-section .section-header h2,
.products-section .section-header p {
    color: var(--charcoal);
}

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

.product-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--amber);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 2px;
}

.product-info {
    padding: 30px;
}

.product-category {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--amber);
    font-weight: 500;
}

.product-price .original {
    font-size: 1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-left: 10px;
}

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

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

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid var(--dark-gray);
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.experience-section {
    padding: 150px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.webp') repeat;
    opacity: 0.03;
}

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

.experience-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
}

.experience-content p {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 50px;
}

.testimonials-section {
    padding: 120px 0;
    background-color: var(--off-white);
    color: var(--charcoal);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--charcoal);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.testimonial-card .stars {
    color: var(--amber);
    margin-bottom: 25px;
    font-size: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--medium-gray);
}

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

.blog-section {
    padding: 120px 0;
    background-color: var(--charcoal);
}

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

.blog-card {
    background-color: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.4;
}

.blog-content p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

footer {
    background-color: var(--charcoal);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-brand p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
}

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

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

.footer-column a {
    color: var(--silver);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--amber);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-info {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--amber);
}

.company-info h5 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px 40px;
}

.company-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.company-info-label {
    font-size: 11px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.company-info-value {
    font-size: 13px;
    color: var(--silver);
}

.disclaimer {
    font-size: 11px;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 900px;
}

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

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

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--silver);
}

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

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

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

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

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 4px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modal-in 0.4s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-image {
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.modal-details h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 25px;
    font-weight: 500;
}

.modal-description {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-features {
    list-style: none;
    margin-bottom: 35px;
}

.modal-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--amber);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.modal-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--dark-gray);
    border-radius: 2px;
}

.modal-quantity button {
    width: 45px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.modal-quantity button:hover {
    background-color: var(--light-gray);
}

.modal-quantity input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-body);
}

.news-modal .modal-content {
    max-width: 800px;
}

.news-modal .modal-body {
    grid-template-columns: 1fr;
}

.news-modal .modal-details {
    padding: 50px;
}

.news-modal .news-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.news-modal h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    line-height: 1.3;
}

.news-modal .news-content {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.news-modal .news-content p {
    margin-bottom: 20px;
}

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

    .modal-image {
        aspect-ratio: 4/3;
    }
}

.cart-section {
    padding: 150px 0 100px;
    background-color: var(--off-white);
    min-height: 100vh;
    color: var(--charcoal);
}

.cart-header {
    text-align: center;
    margin-bottom: 60px;
}

.cart-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 15px;
}

.cart-header p {
    color: var(--medium-gray);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--silver);
    margin-bottom: 30px;
}

.cart-empty h2 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.cart-empty p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.cart-items {
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 25px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.cart-item-image {
    width: 120px;
    height: 120px;
    background-color: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

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

.cart-item-details h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.cart-item-details p {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--dark-gray);
    border-radius: 2px;
}

.cart-item-quantity button {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.cart-item-quantity button:hover {
    background-color: var(--light-gray);
}

.cart-item-quantity span {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 500;
}

.cart-item-remove {
    background-color: transparent;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    padding: 10px;
}

.cart-item-remove:hover {
    color: #dc3545;
}

.cart-summary {
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--dark-gray);
}

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

.summary-row.total span:last-child {
    font-family: var(--font-heading);
    color: var(--amber);
    font-size: 1.5rem;
}

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

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--medium-gray);
}

.continue-shopping:hover {
    color: var(--amber);
}

@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

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

    .cart-item-quantity,
    .cart-item-price,
    .cart-item-remove {
        grid-column: 2;
    }

    .cart-item-price-remove {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.checkout-section {
    padding: 150px 0 100px;
    background-color: var(--off-white);
    min-height: 100vh;
    color: var(--charcoal);
}

.checkout-header {
    text-align: center;
    margin-bottom: 60px;
}

.checkout-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 15px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.checkout-form {
    background-color: var(--white);
    border-radius: 4px;
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
}

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

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

.payment-method {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--amber);
    background-color: rgba(212, 163, 115, 0.05);
}

.payment-method input {
    margin-right: 15px;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.order-summary {
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.order-items {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.order-item-name {
    color: var(--dark-gray);
}

.order-item-name span {
    color: var(--medium-gray);
    font-size: 12px;
}

.order-item-price {
    font-weight: 500;
    color: var(--charcoal);
}

@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 150px 0 100px;
    background-color: var(--charcoal);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.contact-header p {
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

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

.contact-card {
    padding: 35px;
    background-color: var(--dark-gray);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    background-color: rgba(212, 163, 115, 0.1);
}

.contact-card i {
    font-size: 2rem;
    color: var(--amber);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--silver);
    font-size: 15px;
}

.contact-form-wrapper {
    background-color: var(--dark-gray);
    padding: 50px;
    border-radius: 4px;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 40px;
}

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

.contact-form label {
    color: var(--silver);
}

.contact-form input,
.contact-form textarea {
    background-color: var(--charcoal);
    border-color: var(--dark-gray);
    color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--amber);
}

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

.legal-section {
    padding: 150px 0 100px;
    background-color: var(--off-white);
    min-height: 100vh;
    color: var(--charcoal);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 15px;
}

.legal-header p {
    color: var(--medium-gray);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--amber);
    border-bottom: 1px solid transparent;
}

.legal-content a:hover {
    border-bottom-color: var(--amber);
}

.legal-date {
    font-size: 14px;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.catalog-section {
    padding: 150px 0 100px;
    background-color: var(--off-white);
    min-height: 100vh;
    color: var(--charcoal);
}

.catalog-header {
    text-align: center;
    margin-bottom: 60px;
}

.catalog-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 15px;
}

.catalog-header p {
    color: var(--medium-gray);
}

.about-page {
    padding: 150px 0 100px;
    background-color: var(--off-white);
    min-height: 100vh;
    color: var(--charcoal);
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    margin-bottom: 100px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.about-story-content h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.about-story-content p {
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: var(--charcoal);
    margin-bottom: 100px;
}

.values-section .section-header h2,
.values-section .section-header p {
    color: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--amber);
    margin-bottom: 25px;
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 15px;
}

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

.team-section {
    margin-bottom: 100px;
}

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

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

.team-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: var(--light-gray);
}

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

.team-card h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.team-card p {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

@media (max-width: 600px) {
    .about-story-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}
