@charset "UTF-8";
:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --primary: #3B6B3B;
    --primary-dark: #2A4F2A;
    --primary-light: #6D9B6D;
    --secondary: #C49A6C;
    --secondary-light: #D4B48C;
    --accent: #D4A843;
    --bg: #FDFBF7;
    --bg-alt: #F0EBE0;
    --text: #333333;
    --text-light: #777777;
    --white: #FFFFFF;
    --border: #DDD6CA;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
    --radius: 6px;
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.1rem;
}

h2 {
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
    color: var(--text);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.section-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0.6rem auto 0;
    border: none;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03em;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--secondary-light);
    color: var(--white);
    transform: translateY(-1px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--primary-dark);
}

.brand-link i {
    font-size: 1.1rem;
    color: var(--primary);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nav-list {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text);
    padding: 0.3rem;
    z-index: 1002;
    position: relative;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.hero-section {
    padding: 7rem 0 3.5rem;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, var(--bg-alt), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text .section-label {
    margin-bottom: 0.6rem;
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.4rem;
    max-width: 420px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    z-index: -1;
}

.welcome-section {
    padding: 3.5rem 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.welcome-inner {
    max-width: 680px;
    margin: 0 auto;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-text {
    text-align: left;
}

.welcome-text .section-divider {
    margin: 0.6rem 0 0;
}

.welcome-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.welcome-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.welcome-inner h2 {
    margin-bottom: 0.6rem;
}

.welcome-inner p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.categories-section {
    padding: 3.5rem 0;
    background-color: var(--white);
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.category-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 0.8rem;
}

.category-card h3 {
    color: var(--primary-dark);
}

.category-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.category-card a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.products-section {
    padding: 3.5rem 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.product-icon-area {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.product-card:nth-child(1) .product-icon-area {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: var(--primary);
}

.product-card:nth-child(2) .product-icon-area {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: var(--secondary);
}

.product-card:nth-child(3) .product-icon-area {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #b56576;
}

.product-details {
    padding: 1rem 1.2rem 1.3rem;
    text-align: left;
}

.product-details h3 {
    font-size: 1.05rem;
}

.product-details p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
    display: block;
}

.features-section {
    padding: 3.5rem 0;
    background-color: var(--white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
    padding: 1.2rem;
    background-color: var(--bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    transition: box-shadow var(--transition);
}

.feature-block:hover {
    box-shadow: var(--shadow);
}

.feature-block i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.feature-block h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-block p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section .cta-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

.cta-section .btn {
    background-color: var(--secondary);
    color: var(--white);
}

.cta-section .btn:hover {
    background-color: var(--accent);
    color: var(--white);
}

.page-banner {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.page-banner h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.page-banner .breadcrumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.page-banner .breadcrumb a:hover {
    color: var(--white);
}

.pot-intro {
    padding: 3rem 0;
    background-color: var(--bg);
}

.pot-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.pot-intro-text h2 {
    margin-bottom: 0.6rem;
}

.pot-intro-text p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.pot-intro-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.pot-features {
    padding: 3rem 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.pot-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.pot-feature-card {
    background-color: var(--white);
    padding: 1.3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.pot-feature-card:hover {
    transform: translateY(-3px);
}

.pot-feature-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pot-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.pot-feature-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.pot-care {
    padding: 3rem 0;
    background-color: var(--white);
}

.pot-care h2 {
    text-align: center;
    margin-bottom: 1.2rem;
}

.care-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.care-card {
    display: flex;
    gap: 0.7rem;
    padding: 1rem;
    background-color: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.care-card i {
    font-size: 1rem;
    color: var(--secondary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.care-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.care-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-story {
    padding: 3rem 0;
    background-color: var(--bg);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-story-text h2 {
    margin-bottom: 0.6rem;
}

.about-story-text p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.about-story-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.about-values {
    padding: 3rem 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.value-card {
    background-color: var(--white);
    padding: 1.4rem 1.1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-approach {
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
}

.approach-step {
    position: relative;
    padding: 1.2rem 0.8rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 auto 0.6rem;
}

.approach-step h3 {
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.approach-step p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-section {
    padding: 3rem 0;
    background-color: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 0.3rem;
    font-size: 1.35rem;
}

.contact-form-wrapper > p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.55rem 0.8rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--bg);
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

.form-check a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-card {
    background-color: var(--white);
    padding: 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-info-card h3 i {
    color: var(--primary);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
}

.info-row i {
    color: var(--secondary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.info-row a {
    color: var(--text);
}

.info-row a:hover {
    color: var(--primary);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 0 0;
    font-size: 0.78rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.footer-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.15rem;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-info a:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 0.8rem 0;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(42, 79, 42, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.78rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.78rem;
    flex: 1;
}

.cookie-consent a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btns button {
    padding: 0.35rem 0.9rem;
    font-size: 0.72rem;
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    transition: background-color var(--transition);
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--secondary);
}

.cookie-decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-fullscreen main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.2rem;
}

.fullscreen-content {
    text-align: center;
    max-width: 500px;
}

.fullscreen-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.fullscreen-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.fullscreen-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.policy-section {
    padding: 2.5rem 0;
    background-color: var(--bg);
}

.policy-content {
    max-width: 780px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.policy-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.policy-content p {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.policy-content ul,
.policy-content ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content li {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.policy-date {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.pot-cta {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}

.pot-cta h2 {
    color: var(--white);
    margin-bottom: 0.4rem;
}

.pot-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
}

.pot-cta .btn {
    background-color: var(--secondary);
    color: var(--white);
}

.pot-cta .btn:hover {
    background-color: var(--accent);
}

.contact-intro {
    padding: 3rem 0 1.5rem;
    text-align: center;
    background-color: var(--bg);
}

.contact-intro-inner {
    max-width: 560px;
    margin: 0 auto;
}

.contact-intro-inner i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-intro-inner h2 {
    margin-bottom: 0.4rem;
}

.contact-intro-inner p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.map-section {
    padding: 0 0 0;
    background-color: var(--bg);
}

.map-full {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 1.2rem 2rem;
}

.map-full iframe {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    border: none;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image::before {
        display: none;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pot-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1001;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.6rem;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.15rem;
    }

    .nav-toggle {
        z-index: 1002;
    }

    .hero-section {
        padding: 5.5rem 0 2.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .page-banner {
        padding: 5rem 0 1.5rem;
    }

    .page-banner h1 {
        font-size: 1.6rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .pot-features-grid {
        grid-template-columns: 1fr;
    }

    .care-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links {
        gap: 0.5rem 1rem;
    }

    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }

    .cookie-btns {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero-section {
        padding: 5rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .error-code {
        font-size: 3.5rem;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0.8rem;
    }

    .header-inner {
        padding: 0.6rem 0.8rem;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .contact-form-wrapper {
        padding: 1.2rem;
    }
}
