:root {
    --petal-pink-light: #FFB9B9;
    --petal-peach: #FFDDD2;
    --petal-pink: #FFACC7;
    --petal-purple: #FF8DC7;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --shadow-light: rgba(255, 185, 185, 0.15);
    --shadow-medium: rgba(255, 141, 199, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg,
            rgba(255, 221, 210, 0.3) 0%,
            rgba(255, 185, 185, 0.2) 50%,
            rgba(255, 172, 199, 0.25) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(255, 185, 185, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 221, 210, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 70% 45% at 50% 50%, rgba(255, 172, 199, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 10% 80%, rgba(255, 141, 199, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 400px at 30% 40%, rgba(255, 221, 210, 0.1) 0%, transparent 50%),
        radial-gradient(circle 300px at 70% 60%, rgba(255, 172, 199, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--petal-purple);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--petal-pink);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 185, 185, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: block;
}

.logo-container img {
    width: 4rem;
    position: relative;
    z-index: 20;
}

.logo-container img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.logo-container:hover img {
    transform: rotate(0);
}

@media (max-width: 992px) {
    .logo-container img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .logo-container img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .logo-container img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .logo-container img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--petal-pink), var(--petal-purple));
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--petal-purple);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-line {
    width: 25px;
    height: 2px;
    background: var(--petal-purple);
    transition: all 0.3s ease;
}

.burger-menu:hover .burger-line {
    background: var(--petal-pink);
}

.mobile-nav {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-light);
    z-index: 999;
}

.mobile-nav.active {
    max-height: 400px;
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 1.5rem 20px;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 185, 185, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--petal-purple);
    padding-left: 1rem;
}

.hero {
    background: linear-gradient(135deg,
            rgba(255, 221, 210, 0.4) 0%,
            rgba(255, 185, 185, 0.3) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 172, 199, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.page-hero {
    background: linear-gradient(135deg,
            rgba(255, 221, 210, 0.5) 0%,
            rgba(255, 185, 185, 0.4) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--petal-pink), var(--petal-purple));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn:active {
    transform: translateY(0);
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--petal-purple);
    color: var(--petal-purple);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--petal-purple);
    color: var(--white);
}

section {
    padding: 4rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 100% 60% at 50% 50%, rgba(255, 221, 210, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.featured-products {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 221, 210, 0.1) 0%,
            rgba(255, 185, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.product-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--petal-purple);
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.our-story {
    background: rgba(255, 255, 255, 0.5);
}

.our-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.testimonials {
    background: linear-gradient(135deg,
            rgba(255, 185, 185, 0.2) 0%,
            rgba(255, 221, 210, 0.2) 100%);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--petal-pink);
    font-family: 'Cormorant Garamond', serif;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-content h3 {
    font-size: 1.1rem;
    color: var(--petal-purple);
}

.contact-preview {
    background: rgba(255, 255, 255, 0.6);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--petal-purple);
}

.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.7);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(255, 185, 185, 0.3);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--petal-purple);
    box-shadow: 0 0 0 3px rgba(255, 141, 199, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.form-submit {
    margin-top: 2rem;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.6);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--petal-pink), var(--petal-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.method-icon i {
    font-size: 1.5rem;
}

.location-map {
    margin-top: 3rem;
}

.location-map h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.legal-last-updated {
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 185, 185, 0.2);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h3 {
    color: var(--petal-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h4 {
    color: var(--petal-pink);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.faq-categories {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.category-tab.active,
.category-tab:hover {
    background: linear-gradient(135deg, var(--petal-pink), var(--petal-purple));
    color: var(--white);
    transform: translateY(-2px);
}

.faq-section {
    background: rgba(255, 255, 255, 0.5);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 221, 210, 0.3);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-dark);
}

.faq-toggle {
    color: var(--petal-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.team-members {
    background: rgba(255, 255, 255, 0.6);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-title {
    color: var(--petal-purple);
    font-weight: 500;
    margin-bottom: 1rem;
}

footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 185, 185, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--petal-purple);
    padding-left: 0.5rem;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-contact p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 185, 185, 0.2);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-medium);
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 185, 185, 0.3);
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--petal-purple);
}

.privacy-popup-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.popup-buttons .btn {
    flex: 1;
    min-width: 120px;
}

.product-categories {
    background: rgba(255, 255, 255, 0.6);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-dark);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 1.5rem;
}

.product-section {
    background: rgba(255, 255, 255, 0.5);
}

.custom-orders,
.special-orders,
.our-vision,
.our-approach,
.workshops,
.join-team,
.contact-cta,
.faq-teaser {
    background: rgba(255, 255, 255, 0.6);
}

.custom-content,
.special-content,
.vision-content,
.workshop-content {
    max-width: 600px;
}

.custom-orders .container,
.special-orders .container,
.our-vision .container,
.workshops .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-image img,
.special-image img,
.vision-image img,
.workshop-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.our-approach .container {
    text-align: center;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--petal-pink), var(--petal-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.approach-icon i {
    font-size: 1.5rem;
}

.care-tips {
    background: rgba(255, 255, 255, 0.6);
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--petal-pink), var(--petal-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.tip-icon i {
    font-size: 1.5rem;
}

.contact-cta,
.join-team {
    text-align: center;
    padding: 4rem 0;
}

@media (max-width: 968px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .our-story .container,
    .custom-orders .container,
    .special-orders .container,
    .our-vision .container,
    .workshops .container {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .contact-info,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 3rem 0;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .categories-tabs {
        flex-direction: column;
    }

    .category-tab {
        width: 100%;
        justify-content: center;
    }
}