@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: #c9a86c;
    --primary-dark: #a8894f;
    --secondary: #2d3436;
    --accent: #e17055;
    --light: #faf8f5;
    --dark: #1a1a1a;
    --text: #4a4a4a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--accent); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    margin: 2px 0;
    transition: var(--transition);
}

.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 ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, #f5ede4 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 25px;
    color: var(--text);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 13px;
    margin-bottom: 0;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 13px;
}

.features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.products-section {
    background: linear-gradient(180deg, var(--light) 0%, #f0e9e0 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 50px;
    color: var(--white);
    opacity: 0.9;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price small {
    font-size: 12px;
    color: var(--text);
    font-weight: 400;
}

.testimonials-section {
    background: var(--secondary);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    color: var(--white);
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
}

.testimonial-date {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-section .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-info p {
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--primary);
}

.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;
}

.copyright {
    font-size: 11px;
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.policy-links a:hover {
    color: var(--primary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 12px;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 12px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #3d4447 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb span {
    color: var(--primary);
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
}

.content-main p {
    margin-bottom: 15px;
}

.sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: fit-content;
}

.sidebar h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sidebar a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar i {
    color: var(--primary);
    font-size: 12px;
}

.contact-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--secondary);
    color: var(--white);
    padding: 35px;
    border-radius: var(--radius);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,168,108,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    background: #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 15px;
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-icon,
.thankyou-icon {
    width: 100px;
    height: 100px;
    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;
}

.error-icon i,
.thankyou-icon i {
    font-size: 45px;
    color: var(--white);
}

.error-content h1,
.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.error-content p,
.thankyou-content p {
    margin-bottom: 25px;
}

.policy-section {
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 8px;
    font-size: 13px;
}

.policy-date {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.info-card p {
    font-size: 12px;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    height: 200px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-image {
    height: 150px;
    background: linear-gradient(135deg, var(--secondary) 0%, #3d4447 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 50px;
    color: var(--primary);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 12px;
    color: var(--text);
    margin: 0;
}

.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.process-content h3 {
    margin-bottom: 8px;
}

.process-content p {
    font-size: 13px;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-card {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 20px;
    color: var(--white);
}

.value-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 13px;
    margin: 0;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 13px;
    margin: 0;
}

.party-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 140px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image i {
    font-size: 40px;
    color: var(--white);
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.category-info p {
    font-size: 12px;
    margin-bottom: 12px;
}

.supplies-list {
    list-style: none;
}

.supplies-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.supplies-list .item-price {
    font-weight: 600;
    color: var(--primary-dark);
}

.basket-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.basket-feature {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.basket-feature i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 12px;
}

.basket-feature h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.basket-feature p {
    font-size: 12px;
    margin: 0;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .basket-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    .nav-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-hover);
        transition: var(--transition);
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .gallery-grid,
    .values-grid,
    .party-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid,
    .basket-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 25px 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 7px 15px;
        font-size: 11px;
    }
    
    .service-card,
    .product-card {
        padding: 20px 15px;
    }
}
