:root {
    --primary-color: #8B6F47;
    --secondary-color: #2C3E50;
    --accent-color: #D4A574;
    --text-dark: #1A1A1A;
    --text-light: #6B6B6B;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --border-color: #E8E5E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.9rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 60px;
}

.logo a {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.4rem 0;
    position: relative;
    text-transform: capitalize;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle.active .menu-icon:nth-child(1) {
    transform: rotate(45deg) translateY(10px) translateX(4px);
}

.menu-toggle.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

main {
    margin-top: 60px;
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: var(--bg-white);
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--bg-white);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

section {
    padding: 4rem 0;
}

.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: var(--bg-white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.8rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.about-preview {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.testimonials h2 {
    text-align: center;
    color: var(--bg-white);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 1.8rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-card strong {
    font-weight: 600;
}

.testimonial-card span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-info p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--bg-white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.privacy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: bottom 0.4s ease;
}

.privacy-popup.show {
    bottom: 0;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.privacy-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
}

.privacy-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.privacy-link {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 3.5rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro h2 {
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.product-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.product-item-image {
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 6px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item-image i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    transition: all 0.4s ease;
}

.product-item:hover .product-item-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.product-item:hover .product-item-image i {
    font-size: 4.5rem;
    color: var(--bg-white);
    opacity: 0.3;
    transform: rotate(5deg) scale(1.1);
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
}

.product-item-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-features i {
    color: var(--primary-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Crimson Pro', serif;
}

.craftsmanship {
    background-color: var(--bg-light);
}

.craftsmanship-content {
    max-width: 900px;
    margin: 0 auto;
}

.craftsmanship-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.craftsmanship-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.gifts-intro {
    background-color: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.gift-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.category-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.featured-gifts {
    background-color: var(--bg-light);
}

.featured-gifts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gifts-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gift-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.gift-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gift-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.gift-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.gift-highlights {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.gift-highlights li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.gift-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-content {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.guide-item h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.guide-item h3 i {
    font-size: 1.5rem;
}

.guide-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.our-story {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.our-values {
    background-color: var(--bg-light);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.artisan-commitment {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.commitment-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.commitment-list {
    display: grid;
    gap: 1.8rem;
}

.commitment-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.commitment-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-handmade {
    background-color: var(--bg-light);
}

.handmade-reasons {
    max-width: 900px;
    margin: 0 auto;
}

.handmade-reasons h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.handmade-reasons > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.reasons-list {
    display: grid;
    gap: 2rem;
}

.reason h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.reason p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro h2 {
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-method {
    display: flex;
    gap: 1.2rem;
}

.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.method-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.checkbox-group {
    margin-bottom: 1.8rem;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.contact-form button {
    width: 100%;
}

.map-section {
    padding: 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-cta {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 6px;
}

.cta-feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cta-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

.thank-you-main,
.error-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content,
.error-content {
    padding: 4rem 0;
}

.thank-you-box,
.error-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.thank-you-icon,
.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.error-icon {
    color: #E74C3C;
}

.thank-you-box h1,
.error-box h1 {
    margin-bottom: 1.2rem;
    font-size: 2rem;
}

.thank-you-box p,
.error-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thank-you-actions,
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-note {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.thank-you-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.error-suggestions {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-suggestions h3 {
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.error-suggestions a {
    color: var(--primary-color);
    font-weight: 500;
}

.policy-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

.policy-hero h1 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.policy-hero p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.policy-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-section ul {
    list-style: disc;
}

.policy-section ol {
    list-style: decimal;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-item-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .features-grid,
    .products-grid,
    .categories-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .privacy-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-actions {
        width: 100%;
        justify-content: center;
    }

    .thank-you-box,
    .error-box {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.65rem 1.4rem;
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .thank-you-box h1,
    .error-box h1 {
        font-size: 1.6rem;
    }

    .thank-you-icon,
    .error-icon {
        font-size: 3rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .feature-card,
    .value-card,
    .category-card {
        padding: 1.5rem 1rem;
    }
}