html {
    scroll-behavior: smooth;
}

:root {
    --bg-color: #f7f3eb;
    --text-primary: #2a2118;
    --text-secondary: #5c554e;
    --btn-color: #556b35;
    --btn-hover: #485c2c;
    --nav-text: #706a64;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    /* Base size */
}

@media (min-width: 2000px) {
    html {
        font-size: 18px;
        /* Scale up for 2K */
    }
}

@media (min-width: 3000px) {
    html {
        font-size: 20px;
        /* Scale up further for 4K */
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    margin: 1.5rem auto;
    width: calc(100% - 5rem);
    max-width: 1400px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 1.5rem;
    z-index: 100;
}

.header .logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer .logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-primary);
}

.lang-switch {
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-switch a {
    text-decoration: none;
    color: var(--nav-text);
    transition: color 0.3s ease;
}

.lang-switch a.active {
    color: var(--text-primary);
    font-weight: 600;
}

.lang-switch .divider {
    margin: 0 0.5rem;
    color: var(--nav-text);
    font-weight: 300;
}

/* Hero Section */
.hero {
    display: flex;
    flex: 1;
    padding: 0 2.5rem;
    position: relative;
    justify-content: center;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 7rem;
    /* Moved slightly higher than 10rem */
    padding-bottom: 5rem;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    /* Made smaller */
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--btn-color);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* Image Container */
.hero-image-container {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: absolute;
    right: 0;
    top: -7.5rem;
    width: 100%;
    max-width: none;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Global Utilities */
.section-padding {
    padding-top: 10rem;
    padding-bottom: 0;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
    }
}

@media (min-width: 3000px) {
    .container {
        max-width: 2400px;
    }
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 500;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
}

/* About Section */
.about {
    background-color: var(--bg-color);
}

.about-info {
    margin-bottom: 4rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--white);
    /* White cards on off-white background */
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--bg-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Collection Section */
.collection {
    background-color: var(--bg-color);
}

.collection-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* Centered relative to each other horizontally */
    margin-bottom: 4rem;
}

.collection-header .section-desc {
    text-align: right;
    max-width: 420px;
    justify-self: end;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.collection-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.card-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--btn-color);
    opacity: 0.6;
}

.collection-card .card-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.collection-accent {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #fbf9f6;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.accent-bar {
    width: 6px;
    height: 100%;
    background-color: var(--btn-color);
    position: absolute;
    left: 0;
    top: 0;
}

.accent-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    padding-left: 1rem;
}

@media (max-width: 1200px) {
    .hero-content-wrapper {
        padding-left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .header {
        width: calc(100% - 2rem);
    }
}

/* Carousel Section */
.carousel-section {
    background-color: var(--bg-color);
    padding-top: 6rem;
    /* Combined with track's 4rem padding = 10rem total gap */
    padding-bottom: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 4rem 4rem 6rem 4rem;
    /* Added vertical padding to prevent clipping */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.carousel-slide {
    flex: 0 0 350px;
    scroll-snap-align: center;
    aspect-ratio: 4 / 5;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

/* Creative floating effect */
.carousel-slide:nth-child(even) {
    transform: rotate(2deg) translateY(20px);
}

.carousel-slide:nth-child(odd) {
    transform: rotate(-1deg) translateY(-10px);
}

.carousel-slide:hover {
    transform: rotate(0) translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide:hover img {
    transform: scale(1.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--btn-color);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--btn-color);
    color: var(--white);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-nav-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--btn-color);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.6;
}

.hint-arrow {
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(10px);
    }

    60% {
        transform: translateX(5px);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(100% - 2rem);
    }

    .carousel-track {
        padding: 0 2rem 2rem 2rem;
    }
}

/* Production Section */
.production {
    background-color: var(--bg-color);
}

/* Reduced padding when following the carousel because of carousel-track's bottom padding */
.carousel-section+.production {
    padding-top: 4rem;
    /* 6rem (track bottom) + 4rem (this) = 10rem total gap */
}

.production-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
    /* Centered relative to each other horizontally */
}

.production-header .section-desc {
    text-align: right;
    max-width: 420px;
    justify-self: end;
}

.production-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--btn-color);
    line-height: 1;
}

.step-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--btn-color) 0%, rgba(85, 107, 53, 0.1) 100%);
    opacity: 0.3;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 250px;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 280px;
}

/* Products Section */
.products {
    background-color: var(--bg-color);
}

.products .section-title {
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.product-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.info-list li {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--btn-color);
}

.product-usage,
.product-footer {
    font-size: 0.9rem;
    line-height: 1.4;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.usage-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Production Section */
.production {
    background-color: var(--bg-color);
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-content {
        padding-bottom: 3rem;
        max-width: 100%;
    }

    .hero-image-container {
        min-height: 400px;
        margin-top: 2rem;
    }

    .image-wrapper {
        position: relative;
        top: 0;
        border-radius: 20px;
    }

    .container-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 4rem 2rem;
    }
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-color);
}

.why-us .section-title {
    max-width: 800px;
    margin-bottom: 0;
    /* Margin handled by section-header-split */
}

.why-us .section-header-split {
    margin-bottom: 2.5rem;
    /* Reduced to 2.5rem + 1.5rem padding in row = 4rem total gap */
}

.why-us-rows {
    border-top: 1px solid rgba(61, 48, 40, 0.1);
    border-bottom: 1px solid rgba(61, 48, 40, 0.1);
}

.why-us-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(61, 48, 40, 0.1);
    transition: background-color 0.3s ease;
}

.why-us-row:first-child {
    border-top: none;
}

.why-us-row:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.title-wrapper {
    position: relative;
    padding-top: 1.5rem;
}

.row-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--btn-color);
    opacity: 0.08;
    /* Semi-transparent */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.row-title {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.row-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 420px;
    text-align: right;
    justify-self: end;
    line-height: 1.4;
    padding-top: 1.5rem;
    /* Match title-wrapper padding and header text grid alignment */
}

/* Contacts Section */
.contacts {
    background-color: var(--bg-color);
    padding-bottom: 10rem;
    /* Keep padding for the end of the page */
}

.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.section-header-split .section-desc {
    text-align: right;
    max-width: 420px;
    justify-self: end;
}

.contacts-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(61, 48, 40, 0.05);
}

.contact-info {
    padding-top: 0;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.info-item {
    margin-bottom: 2rem;
    border-left: 2px solid var(--btn-color);
    padding-left: 1.5rem;
}

.info-item-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--btn-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1.25rem;
    border: 1px solid rgba(61, 48, 40, 0.1);
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: #faf9f6;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--btn-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(85, 107, 53, 0.05);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "↓";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--btn-color);
    font-size: 0.8rem;
    opacity: 0.6;
}

.form-group select {
    appearance: none;
    width: 100%;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--white);
    color: var(--text-primary);
    padding: 1rem;
}

/* Footer Section */
.footer {
    background-color: var(--white);
    padding: 6rem 2.5rem 3rem 2.5rem;
    border-top: 1px solid rgba(61, 48, 40, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.company-eic {
    font-size: 0.9rem;
    color: var(--btn-color);
    font-weight: 600;
}

.company-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-nav {
    display: flex;
    gap: 6rem;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(61, 48, 40, 0.05);
}

.copyright p {
    font-size: 0.85rem;
    color: var(--nav-text);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal .divider {
    color: var(--nav-text);
    opacity: 0.3;
    font-size: 0.85rem;
}

.footer-legal a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--nav-text);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--btn-color);
}

.form-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.form-footer .cta-button {
    width: 100%;
    justify-content: center;
    padding: 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--btn-color);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.checkbox-group {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(61, 48, 40, 0.2);
    border-radius: 6px;
    background-color: #faf9f6;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.2rem;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: var(--white);
    font-size: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--btn-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Privacy Policy Page Styles */
.privacy-section {
    padding-top: 4rem;
    padding-bottom: 8rem;
    background-color: var(--bg-color);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--btn-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.privacy-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.privacy-content {
    background-color: var(--white);
    padding: 4.5rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(61, 48, 40, 0.05);
}

.privacy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(61, 48, 40, 0.05);
    padding-bottom: 0.75rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.privacy-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    margin-bottom: 2rem;
    padding-left: 0;
}

.privacy-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}

.privacy-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--btn-color);
    font-weight: bold;
}

.privacy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Responsive Design Master Media Queries --- */

/* Laptops / Tablets (1024px) */
@media (max-width: 1024px) {
    .nav {
        display: none;
        /* Hide desktop nav */
    }

    .menu-toggle {
        display: flex;
        /* Show hamburger */
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .lang-switch {
        margin-right: 0;
    }

    .container-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .collection-header,
    .production-header,
    .section-header-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .collection-header .section-desc,
    .production-header .section-desc,
    .section-header-split .section-desc {
        text-align: left;
        justify-self: start;
        max-width: 100%;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .production-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .row-text {
        text-align: left;
        justify-self: start;
        padding-top: 0;
    }

    .contacts-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        flex: 1;
        padding-top: 4rem;
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-container {
        width: 100%;
        justify-content: center;
        margin-top: 3rem;
        min-height: 350px;
    }

    .image-wrapper {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 500px;
        height: 400px;
        border-radius: 30px;
    }

    .cta-button {
        align-self: center;
    }
}

/* Mobile Devices (768px) */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .collection-grid,
    .production-steps,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .carousel-track {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .carousel-slide {
        flex: 0 0 280px;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .accent-text {
        font-size: 1.1rem;
    }

    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-content {
        padding: 2.5rem 1.5rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1.5rem;
        margin: 1rem auto;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .product-card {
        height: 400px;
        padding: 1.5rem;
    }

    .footer {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }
}