@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F5C;
    --primary-dark: #6B5344;
    --secondary: #D4C5B9;
    --accent: #C4956A;
    --text-dark: #3D3D3D;
    --text-light: #6B6B6B;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0EA;
    --white: #FFFFFF;
    --border: #E8E2DB;
    --shadow: rgba(139, 111, 92, 0.12);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', 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-light);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,248,245,0.95) 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px var(--shadow);
    margin: 0 auto;
    max-width: 1100px;
}

.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: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 50%, var(--bg-light) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(196, 149, 106, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--white);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: 0 2px 10px var(--shadow);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
}

.products-preview {
    background-color: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    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(--secondary) 0%, var(--bg-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.craftsmanship {
    background-color: var(--white);
}

.craft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.craft-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.craft-text h2 {
    margin-bottom: 15px;
}

.craft-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.craft-list {
    list-style: none;
    margin-bottom: 20px;
}

.craft-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.craft-list i {
    color: var(--accent);
}

.testimonials {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.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-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.author-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background-color: var(--bg-light);
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom .policy-links {
    display: flex;
    gap: 15px;
}

.footer-bottom .policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom .policy-links a:hover {
    color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
}

.about-intro {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.values-section {
    background-color: var(--bg-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    background-color: var(--white);
    border-radius: 12px;
}

.value-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.team-section {
    background-color: var(--white);
}

.team-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.products-main {
    background-color: var(--white);
}

.products-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.products-intro p {
    color: var(--text-light);
    font-size: 14px;
}

.product-card-full {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px var(--shadow);
}

.product-card-image {
    height: 280px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image i {
    font-size: 60px;
    color: var(--primary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.product-card-content p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: var(--accent);
    font-size: 10px;
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-main {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 35px;
    border-radius: 12px;
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 13px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 13px;
    margin-bottom: 3px;
    color: var(--white);
}

.contact-item-text p {
    font-size: 12px;
    opacity: 0.85;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.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 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    background-color: var(--bg-cream);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
}

.error-content i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.policy-page {
    background-color: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.policy-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0 12px 25px;
    color: var(--text-light);
    font-size: 13px;
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-content .last-updated {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 15px 20px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary);
    color: var(--white);
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero p {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .craft-content {
        grid-template-columns: 1fr;
    }
    
    .craft-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card-full {
        grid-template-columns: 1fr;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .header-inner {
        border-radius: 0;
        padding: 12px 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255,255,255,0.98);
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    nav a {
        font-size: 18px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-badge {
        font-size: 10px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .product-card-content {
        padding: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .error-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 320px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
