:root {
    --primary-color: #8b7355;
    --secondary-color: #d4af37;
    --accent-color: #2c3e50;
    --text-dark: #1a1a1a;
    --text-light: #6c6c6c;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-color: #e8e5e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--accent-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--background-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-popup.active {
    transform: translateY(0);
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.privacy-content p {
    color: var(--background-white);
    margin: 0;
    flex: 1;
}

.privacy-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.privacy-actions a {
    color: var(--secondary-color);
    text-decoration: underline;
    white-space: nowrap;
}

#accept-privacy {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
}

#accept-privacy:hover {
    background: var(--primary-color);
    color: var(--background-white);
}

.header {
    background: var(--background-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background-white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 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(--background-white);
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    color: var(--background-white);
}

.hero-content h1 {
    color: var(--background-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    color: var(--background-white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.features {
    padding: 5rem 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    font-size: 0.95rem;
}

.products-preview {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-preview-card {
    background: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 3rem 2rem;
    text-align: center;
}

.product-preview-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-preview-content h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.product-preview-content p {
    margin-bottom: 1.5rem;
}

.benefits {
    padding: 5rem 0;
    background: var(--background-white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 2px;
}

.benefits-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 600;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.process {
    padding: 5rem 0;
    background: var(--background-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.process-step h3 {
    margin-bottom: 1rem;
}

.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.cta-content {
    text-align: center;
    color: var(--background-white);
}

.cta-content h2 {
    color: var(--background-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--background-white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.page-hero {
    padding: 4rem 0;
    background: var(--background-light);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.product-intro {
    padding: 5rem 0;
}

.product-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-intro-text h2 {
    margin-bottom: 1.5rem;
}

.product-intro-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-features {
    padding: 5rem 0;
    background: var(--background-light);
}

.product-range {
    padding: 5rem 0;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.product-item {
    background: var(--background-light);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-item:hover {
    box-shadow: var(--shadow-md);
}

.product-item-content h3 {
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.product-item-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.product-item-content li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.about-story {
    padding: 5rem 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.values {
    padding: 5rem 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background: var(--background-white);
    border-radius: 8px;
    text-align: center;
}

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.compliance {
    padding: 5rem 0;
}

.compliance-content {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-content h2 {
    margin-bottom: 1.5rem;
}

.compliance-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compliance-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.compliance-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 40px;
}

.compliance-item h4 {
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 30px;
    margin-top: 4px;
}

.contact-detail-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-detail-item p {
    margin: 0;
}

.hours {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.contact-form-wrapper {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.checkbox-group label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.error-main,
.thankyou-main {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.error-section,
.thankyou-section {
    padding: 5rem 0;
    text-align: center;
    margin: 0 auto;
}

.error-content,
.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon,
.thankyou-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.error-content h1,
.thankyou-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-content h2 {
    margin-bottom: 1rem;
}

.error-actions,
.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-links p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.error-links a {
    margin: 0 0.75rem;
    color: var(--primary-color);
    text-decoration: underline;
}

.thankyou-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.policy-hero {
    padding: 3rem 0;
    background: var(--background-light);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.policy-hero h1 {
    margin-bottom: 0.5rem;
}

.policy-hero p {
    color: var(--text-light);
}

.policy-content {
    padding: 5rem 0;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
}

.policy-article h2 {
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
}

.policy-article h2:first-child {
    margin-top: 0;
}

.policy-article h3 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.policy-article h4 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.policy-article ul,
.policy-article ol {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-article li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    list-style: disc;
}

.policy-article ol li {
    list-style: decimal;
}

.contact-details {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.footer {
    background: var(--accent-color);
    color: var(--background-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info address {
    font-style: normal;
    color: var(--background-white);
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--background-white);
    margin-bottom: 0.25rem;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--background-white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-payment h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
}

.payment-icons i {
    color: var(--background-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--background-white);
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .header {
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--background-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .features,
    .products-preview,
    .benefits,
    .process,
    .product-intro,
    .product-features,
    .product-range,
    .about-story,
    .values,
    .compliance,
    .contact-section {
        padding: 4rem 0;
    }

    .benefits-content,
    .product-intro-content,
    .about-content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .container {
        padding: 0 15px;
    }

    .features-grid,
    .products-grid,
    .process-steps,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features,
    .products-preview,
    .benefits,
    .process,
    .cta,
    .product-intro,
    .product-features,
    .product-range,
    .about-story,
    .values,
    .compliance,
    .contact-section {
        padding: 3rem 0;
    }

    .hero {
        height: 60vh;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .error-content h1,
    .thankyou-content h1 {
        font-size: 3rem;
    }

    .error-actions,
    .thankyou-actions {
        flex-direction: column;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .features,
    .products-preview,
    .benefits,
    .process,
    .cta,
    .product-intro,
    .product-features,
    .product-range,
    .about-story,
    .values,
    .compliance,
    .contact-section,
    .policy-content {
        padding: 2rem 0;
    }

    .feature-card,
    .product-item {
        padding: 1.5rem;
    }

    .stat-item,
    .process-step {
        padding: 1.5rem;
    }

    .product-intro-image,
    .about-image {
        margin-top: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .policy-article h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .policy-article ul,
    .policy-article ol {
        margin-left: 1.5rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .payment-icons {
        font-size: 1.5rem;
    }
}
