@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6914;
    --primary-light: #C4A35A;
    --secondary: #2C4A3E;
    --accent: #D4A574;
    --bg-cream: #FDF8F3;
    --bg-warm: #F5EDE4;
    --text-dark: #2D2D2D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --border: #E8DDD4;
    --shadow: rgba(44, 74, 62, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 30px var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary);
    padding: 10px 20px;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 2px 15px var(--shadow);
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto 25px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-image {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    max-width: 550px;
    margin: 0 auto;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px 20px;
    background: var(--bg-cream);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 13px;
    margin: 0;
}

.about-preview {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2e26 100%);
    color: var(--white);
}

.about-preview .section-tag,
.about-preview h2,
.about-preview p {
    color: var(--white);
}

.about-preview p {
    opacity: 0.9;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text {
    order: 2;
}

.about-image {
    order: 1;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 11px;
    opacity: 0.8;
}

.products {
    background: var(--bg-warm);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.product-content {
    padding: 18px;
}

.product-category {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card h3 {
    font-size: 1rem;
    margin: 6px 0;
}

.product-card p {
    font-size: 12px;
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.product-btn {
    padding: 8px 16px;
    font-size: 11px;
}

.testimonials {
    background: var(--white);
}

.testimonial-card {
    padding: 25px;
    background: var(--bg-cream);
    border-radius: 16px;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 13px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.author-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.cta-section .btn {
    margin-top: 20px;
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 8px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom .current-year::before {
    content: '© ';
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.footer-legal a {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--accent);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 30px var(--shadow);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.privacy-popup h4 {
    font-size: 14px;
}

.privacy-popup p {
    font-size: 11px;
    margin: 0;
}

.privacy-popup-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.privacy-popup .btn {
    padding: 8px 20px;
    font-size: 11px;
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    margin: 30px 0 15px;
}

.content-section h3 {
    margin: 25px 0 12px;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.contact-page {
    background: var(--bg-warm);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2e26 100%);
    padding: 30px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
}

.contact-item-text h4 {
    color: var(--white);
    font-size: 12px;
    margin-bottom: 3px;
}

.contact-item-text p {
    margin: 0;
    font-size: 12px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
}

.map-section {
    padding: 0 0 50px;
    background: var(--bg-warm);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.about-page .about-full {
    background: var(--white);
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.mission-card {
    padding: 25px;
    background: var(--bg-cream);
    border-radius: 16px;
    text-align: center;
}

.mission-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.about-team {
    background: var(--bg-warm);
}

.team-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
}

.value-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2e26 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.value-item span {
    font-weight: 600;
    font-size: 13px;
}

.products-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.product-page-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.product-page-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary);
}

.product-page-content {
    padding: 25px;
}

.product-page-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-features {
    margin: 15px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    color: var(--text-light);
}

.product-features i {
    color: var(--primary);
    font-size: 12px;
}

.product-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.product-page-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.thank-you-page,
.error-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thank-you-content,
.error-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 15px 50px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    text-align: center;
}

.thank-you-inner,
.error-inner {
    max-width: 500px;
}

.thank-you-icon,
.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.error-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2e26 100%);
}

.thank-you-inner h1,
.error-inner h1 {
    margin-bottom: 15px;
}

.thank-you-inner p,
.error-inner p {
    margin-bottom: 25px;
}

.policy-content {
    background: var(--white);
}

.policy-content .container {
    max-width: 800px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.policy-section h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.policy-section p {
    font-size: 13px;
    line-height: 1.7;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section li {
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.last-updated {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
}

.decor-tips {
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tip-card {
    padding: 25px;
    background: var(--bg-cream);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.tip-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tip-card h3 i {
    color: var(--primary);
}

.tip-card p {
    font-size: 13px;
    margin: 0;
}

.inspiration-gallery {
    background: var(--bg-warm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.gallery-item {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--border) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-desktop {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-text {
        order: 1;
        flex: 1;
    }
    
    .about-image {
        order: 2;
        flex: 1;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .privacy-popup-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .privacy-popup-btns {
        flex-shrink: 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .about-mission {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-values {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-page-grid {
        grid-template-columns: 1fr;
    }
    
    .product-page-card {
        flex-direction: row;
    }
    
    .product-page-image {
        width: 300px;
        height: auto;
        min-height: 250px;
    }
    
    .product-page-content {
        flex: 1;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-container iframe {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section {
        padding: 80px 0;
    }
}
