:root {
    --primary-color: #8b6f47;
    --secondary-color: #d4a574;
    --accent-color: #5a7d6f;
    --text-dark: #2c2520;
    --text-light: #6b5d54;
    --bg-light: #faf8f5;
    --bg-alt: #f2ede6;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --border: #e5dfd7;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 2px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.logo:hover {
    color: var(--accent-color);
}

.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-color);
    background: var(--bg-alt);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.3rem;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 3rem 0 3rem 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 8px 20px var(--shadow);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.craft-category {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: var(--transition);
}

.craft-category:hover {
    box-shadow: 0 8px 24px var(--shadow-md);
    transform: translateY(-4px);
}

.category-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-content {
    padding: 1.8rem;
}

.category-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.benefit-item i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-card footer {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-card span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.8rem;
}

.page-hero {
    background: var(--accent-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse>* {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.2rem;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.content-image img {
    border-radius: 8px;
    box-shadow: 0 8px 20px var(--shadow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 16px var(--shadow);
}

.product-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1rem 0;
}

.technique-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
}

.technique-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    display: block;
}

.technique-card h3 {
    margin-bottom: 0.7rem;
}

.technique-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.idea-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.idea-card:hover {
    box-shadow: 0 6px 16px var(--shadow);
    transform: translateY(-3px);
}

.idea-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.idea-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.idea-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.value-card,
.offering-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.value-card i,
.offering-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    display: block;
}

.value-card h3,
.offering-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.value-card p,
.offering-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.7rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card i {
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.map-wrapper {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.thank-you-section,
.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.thank-you-content,
.error-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thank-you-icon {
    color: var(--accent-color);
}

.error-icon {
    color: var(--secondary-color);
}

.thank-you-content h1,
.error-content h1 {
    margin-bottom: 1.2rem;
}

.thank-you-content p,
.error-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.thank-you-actions,
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.error-suggestions {
    margin-top: 3rem;
    text-align: left;
}

.error-suggestions h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
}

.error-suggestions li {
    margin-bottom: 0.6rem;
}

.error-suggestions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.policy-content {
    padding: 2rem 0 4rem;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.policy-article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.policy-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.policy-article ul,
.policy-article ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-article li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.policy-article strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.85rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.footer-section p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.2rem;
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}

.privacy-popup.active {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.privacy-popup-content p {
    font-size: 0.85rem;
    margin-bottom: 0;
    flex: 1;
}

.privacy-popup-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.privacy-link {
    color: var(--secondary-color);
    font-size: 0.85rem;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: 4px 0 12px var(--shadow);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-image {
        width: 100%;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(to right, rgba(250, 248, 245, 0.95) 0%, rgba(250, 248, 245, 0.85) 100%);
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-wrapper.reverse {
        direction: ltr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-popup-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .category-image img {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .category-image img {
        height: 200px;
    }

    .policy-article {
        padding: 1.5rem;
    }

    .privacy-popup-actions {
        flex-direction: column;
        width: 100%;
    }

    .privacy-popup-actions .btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .section {
        padding: 2rem 0;
    }
}