@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary: #8B7355;
    --secondary: #A67B5B;
    --accent: #C4A77D;
    --sage: #9CAF88;
    --terracotta: #CC7A5C;
    --mustard: #D4A84B;
    --dark: #2C2416;
    --light: #FAF8F5;
    --text: #3D3425;
    --cream: #F5F0E8
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--light)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark)
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem)
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem)
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem)
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s ease;
    border: none;
    cursor: pointer
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px)
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff
}

header {
    background: var(--cream);
    position: relative;
    z-index: 1000
}

.header-top {
    background: var(--dark);
    color: var(--light);
    padding: 8px 0;
    font-size: .85rem
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 6px
}

.header-main {
    padding: 15px 0
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px
}

.logo i {
    color: var(--sage);
    font-size: 1.8rem
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
    z-index: 1001
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px
}

.main-nav a {
    padding: 10px 18px;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 25px;
    position: relative
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--primary);
    color: #fff
}

.main-nav .dropdown {
    position: relative
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    padding: 10px 0;
    z-index: 100
}

.main-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    border-radius: 0
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--primary)
}

.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #E8E4DD 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(156, 175, 136, .15) 0%, transparent 70%);
    pointer-events: none
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.hero-content h1 {
    margin-bottom: 20px
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #5A5145
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.hero-image {
    position: relative
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1)
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.hero-badge span {
    display: block;
    font-size: .8rem;
    color: #888
}

.hero-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark)
}

.section {
    padding: 70px 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header span {
    display: inline-block;
    background: var(--sage);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.section-header p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #6B6358
}

.features {
    background: var(--light)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px
}

.feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid rgba(0, 0, 0, .05)
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08)
}

.feature-card i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem
}

.feature-card p {
    font-size: .9rem;
    color: #6B6358
}

.products {
    background: var(--cream)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05)
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1)
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, var(--cream) 0%, #E5DFD5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.product-image i {
    font-size: 4rem;
    color: var(--primary);
    opacity: .4
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--terracotta);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: .75rem;
    font-weight: 600
}

.product-content {
    padding: 25px
}

.product-content h3 {
    margin-bottom: 8px
}

.product-content p {
    font-size: .9rem;
    color: #6B6358;
    margin-bottom: 15px
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary)
}

.product-price small {
    font-size: .8rem;
    font-weight: 400;
    color: #888
}

.about-preview {
    background: var(--light)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-image {
    position: relative
}

.about-image img {
    border-radius: 20px
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sage);
    border-radius: 20px;
    z-index: -1
}

.about-content h2 {
    margin-bottom: 20px
}

.about-content p {
    margin-bottom: 20px;
    color: #5A5145
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.stat {
    text-align: center
}

.stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--primary)
}

.stat span {
    font-size: .85rem;
    color: #6B6358
}

.testimonials {
    background: linear-gradient(135deg, var(--dark) 0%, #3D3425 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='.5' opacity='.1'/%3E%3C/svg%3E") repeat;
    opacity: .3
}

.testimonials .section-header span {
    background: var(--accent)
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: #fff
}

.testimonial-card {
    background: rgba(255, 255, 255, .08);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px)
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px
}

.testimonial-author-info strong {
    display: block;
    color: var(--accent)
}

.testimonial-author-info span {
    font-size: .85rem;
    opacity: .7
}

.cta-section {
    background: linear-gradient(135deg, var(--sage) 0%, var(--primary) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 15px
}

.cta-section p {
    margin-bottom: 25px;
    opacity: .9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.cta-section .btn {
    background: #fff;
    color: var(--primary)
}

.cta-section .btn:hover {
    background: var(--dark);
    color: #fff
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 40px 0 20px
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 15px
}

.footer-brand .logo i {
    color: var(--sage)
}

.footer-brand p {
    font-size: .9rem;
    opacity: .7;
    margin-bottom: 15px
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    margin-bottom: 8px;
    opacity: .8
}

.footer-contact i {
    color: var(--accent);
    width: 16px
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--accent)
}

.footer-links a {
    display: block;
    font-size: .85rem;
    opacity: .7;
    padding: 5px 0;
    transition: all .3s ease
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px
}

.footer-bottom p {
    font-size: .8rem;
    opacity: .6
}

.footer-bottom p span {
    color: var(--accent)
}

.payment-icons {
    display: flex;
    gap: 10px
}

.payment-icons i {
    font-size: 1.8rem;
    opacity: .7
}

.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, #E8E4DD 100%);
    padding: 50px 0;
    text-align: center
}

.page-hero h1 {
    margin-bottom: 10px
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: .9rem;
    color: #6B6358
}

.breadcrumb a:hover {
    color: var(--primary)
}

.breadcrumb span {
    color: var(--primary)
}

.products-page .products-grid {
    margin-bottom: 40px
}

.product-full {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px
}

.product-full-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start
}

.product-full-image {
    background: linear-gradient(135deg, var(--cream) 0%, #E5DFD5 100%);
    border-radius: 16px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-full-image i {
    font-size: 5rem;
    color: var(--primary);
    opacity: .4
}

.product-full-content h3 {
    margin-bottom: 15px
}

.product-full-content p {
    margin-bottom: 15px;
    color: #5A5145
}

.product-features {
    margin: 20px 0
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: .9rem
}

.product-features i {
    color: var(--sage)
}

.about-page .about-grid {
    margin-bottom: 50px
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center
}

.value-card i {
    font-size: 2.5rem;
    color: var(--sage);
    margin-bottom: 15px
}

.value-card h3 {
    margin-bottom: 10px
}

.value-card p {
    font-size: .9rem;
    color: #6B6358
}

.team-section {
    background: var(--cream)
}

.timeline {
    max-width: 700px;
    margin: 0 auto
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px
}

.timeline-year {
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: .9rem;
    height: fit-content
}

.timeline-content h3 {
    margin-bottom: 5px
}

.timeline-content p {
    font-size: .9rem;
    color: #6B6358
}

.contact-section {
    background: var(--light)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 40px;
    border-radius: 20px;
    color: #fff
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 20px
}

.contact-info p {
    opacity: .85;
    margin-bottom: 30px
}

.contact-details {
    margin-bottom: 30px
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-details span {
    font-size: .9rem;
    opacity: .9
}

.contact-details strong {
    display: block;
    margin-bottom: 3px;
    opacity: 1
}

.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05)
}

.contact-form h3 {
    margin-bottom: 25px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: .9rem
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8E4DD;
    border-radius: 12px;
    font-family: inherit;
    font-size: .95rem;
    transition: all .3s ease
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary)
}

.form-checkbox label {
    font-size: .85rem;
    font-weight: 400;
    color: #5A5145
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline
}

.success-page,
.error-page {
    min-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    text-align: center;
    padding: 40px 20px
}

.success-content,
.error-content {
    max-width: 500px
}

.success-content i,
.error-content i {
    font-size: 5rem;
    margin-bottom: 25px
}

.success-content i {
    color: var(--sage)
}

.error-content i {
    color: var(--terracotta)
}

.success-content h1,
.error-content h1 {
    margin-bottom: 15px
}

.success-content p,
.error-content p {
    margin-bottom: 25px;
    color: #5A5145
}

.policy-page {
    background: var(--light)
}

.policy-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .05)
}

.policy-content h2 {
    margin: 35px 0 15px;
    padding-top: 25px;
    border-top: 1px solid #E8E4DD
}

.policy-content h2:first-of-type {
    margin-top: 20px;
    padding-top: 0;
    border-top: none
}

.policy-content p {
    margin-bottom: 15px;
    color: #5A5145
}

.policy-content ul {
    margin: 15px 0 15px 25px
}

.policy-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #5A5145
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--sage);
    border-radius: 50%
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .4s ease
}

.cookie-popup.active {
    transform: translateY(0)
}

.cookie-popup .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-popup p {
    font-size: .9rem;
    opacity: .9;
    flex: 1
}

.cookie-popup a {
    color: var(--accent);
    text-decoration: underline
}

.cookie-buttons {
    display: flex;
    gap: 10px
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    border: none;
    transition: all .3s ease
}

.cookie-btn.accept {
    background: var(--sage);
    color: #fff
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff
}

.cookie-btn:hover {
    opacity: .85
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center
}

.gallery-item i {
    font-size: 3rem;
    color: var(--primary);
    opacity: .3
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--sage)
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 1.1rem
}

.info-box p {
    font-size: .9rem;
    color: #6B6358
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.process-step {
    text-align: center;
    position: relative
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--accent)
}

.process-step:last-child::after {
    display: none
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1rem
}

.process-step p {
    font-size: .85rem;
    color: #6B6358
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease
}

.faq-question:hover {
    background: var(--cream)
}

.faq-question i {
    transition: transform .3s ease
}

.faq-item.active .faq-question i {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px
}

.faq-answer p {
    color: #5A5145;
    font-size: .95rem
}

@media(max-width:1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-step::after {
        display: none
    }
}

@media(max-width:768px) {
    .header-top-left {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, .1);
        transition: right .3s ease;
        align-items: flex-start;
        gap: 0
    }

    .main-nav.active {
        right: 0
    }

    .main-nav a {
        width: 100%;
        padding: 15px 0;
        border-radius: 0;
        border-bottom: 1px solid #E8E4DD
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: transparent;
        color: var(--primary)
    }

    .main-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-image {
        order: -1
    }

    .hero-buttons {
        justify-content: center
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-image::before {
        display: none
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        justify-content: center;
        text-align: center
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .product-full-grid {
        grid-template-columns: 1fr
    }

    .info-boxes {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 15px
    }

    .section {
        padding: 50px 0
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr
    }

    .about-stats {
        flex-direction: column;
        gap: 20px
    }

    .hero-buttons {
        flex-direction: column
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center
    }

    .policy-content {
        padding: 30px 20px
    }

    .contact-form {
        padding: 25px
    }

    .contact-info {
        padding: 25px
    }

    .cookie-popup .container {
        flex-direction: column;
        text-align: center
    }

    .cookie-buttons {
        width: 100%
    }

    .cookie-btn {
        flex: 1
    }

    .process-steps {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:400px) {
    body {
        font-size: 14px
    }

    .btn {
        padding: 10px 20px;
        font-size: .85rem
    }

    .logo {
        font-size: 1.3rem
    }

    .section {
        padding: 40px 0
    }

    .feature-card,
    .product-card,
    .value-card {
        padding: 20px
    }

    .contact-form,
    .contact-info {
        padding: 20px
    }
}