/* ============================================
   SWEET THERAPY - WEBSITE STYLES
   Purple theme aligned with logo (primary = logo outline)
   ============================================ */

:root {
    /* Logo purple = primary; all others derived from same hue */
    --primary-purple: #8B7FA8;
    --dark-purple: #5E5270;
    --light-purple: #A89BC4;
    --lavender: #C9BDDE;
    --pale-lavender: #EDE8F5;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: rgba(139, 127, 168, 0.2);
    --shadow-hover: rgba(139, 127, 168, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(168, 155, 196, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 189, 222, 0.12) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='sweet-pattern' x='0' y='0' width='600' height='600' patternUnits='userSpaceOnUse'%3E%3Ctext x='80' y='120' font-size='36' fill='%238B7FA8' opacity='0.28'%3E🍪%3C/text%3E%3Ctext x='450' y='220' font-size='31' fill='%23A89BC4' opacity='0.3'%3E🌿%3C/text%3E%3Ctext x='280' y='400' font-size='34' fill='%238B7FA8' opacity='0.34'%3E🐷%3C/text%3E%3Ctext x='520' y='520' font-size='34' fill='%23A89BC4' opacity='0.28'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23sweet-pattern)'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: 600px 600px, 600px 600px, 600px 600px;
    background-position: 0 0, 300px 300px, 150px 150px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.banner-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav-brand h1.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin: 0;
    display: block;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 0.3rem;
    display: none;
}

.logo-img[src=""] {
    display: none;
}

.nav-brand .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--pale-lavender) 0%, var(--lavender) 100%);
    background-image: 
        linear-gradient(135deg, var(--pale-lavender) 0%, var(--lavender) 100%),
        url("data:image/svg+xml,%3Csvg width='500' height='500' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='hero-pattern' x='0' y='0' width='500' height='500' patternUnits='userSpaceOnUse'%3E%3Ctext x='60' y='120' font-size='25' fill='rgba(139,127,168,0.32)'%3E🍪%3C/text%3E%3Ctext x='360' y='180' font-size='20' fill='rgba(168,155,196,0.3)'%3E🌿%3C/text%3E%3Ctext x='220' y='350' font-size='26' fill='rgba(139,127,168,0.36)'%3E🐷%3C/text%3E%3Ctext x='400' y='420' font-size='22' fill='rgba(168,155,196,0.32)'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23hero-pattern)'/%3E%3C/svg%3E");
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover, 500px 500px;
    background-position: center, 0 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    width: 380px;
    height: 380px;
    margin: 0 auto 2rem;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-purple);
    box-sizing: border-box;
    filter: drop-shadow(0 4px 15px var(--shadow));
}

.hero-logo[src=""] {
    display: none;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Hide text title if logo exists */
.hero-logo[src]:not([src=""]):not([src="logo.png"]) ~ .hero-title {
    display: none;
}

.hero-logo[src=""] ~ .hero-title,
.hero-logo:not([src]) ~ .hero-title {
    display: block;
}

.hero-tagline {
    font-size: 1.85rem;
    color: var(--dark-purple);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--lavender));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.products-and-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
}

.products-pig {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--white);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='540' height='540' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='about-pattern' x='0' y='0' width='540' height='540' patternUnits='userSpaceOnUse'%3E%3Ctext x='90' y='130' font-size='34' fill='%23F0E8F8' opacity='0.42'%3E🍪%3C/text%3E%3Ctext x='420' y='270' font-size='28' fill='%23D4C5E8' opacity='0.38'%3E🌿%3C/text%3E%3Ctext x='210' y='450' font-size='32' fill='%23B8A9D4' opacity='0.38'%3E🐷%3C/text%3E%3Ctext x='450' y='480' font-size='32' fill='%23F0E8F8' opacity='0.42'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23about-pattern)'/%3E%3C/svg%3E");
    background-size: 540px 540px;
    background-position: 0 0;
}

.about-content {
    display: grid;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: var(--pale-lavender);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.about-card p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-card .location {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lavender);
    color: var(--dark-purple);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    background: linear-gradient(180deg, var(--cream) 0%, var(--pale-lavender) 100%);
    background-image: 
        linear-gradient(180deg, var(--cream) 0%, var(--pale-lavender) 100%),
        url("data:image/svg+xml,%3Csvg width='480' height='480' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='products-pattern' x='0' y='0' width='480' height='480' patternUnits='userSpaceOnUse'%3E%3Ctext x='80' y='120' font-size='32' fill='rgba(139,127,168,0.28)'%3E🍪%3C/text%3E%3Ctext x='390' y='220' font-size='26' fill='rgba(168,155,196,0.3)'%3E🌿%3C/text%3E%3Ctext x='200' y='400' font-size='34' fill='rgba(139,127,168,0.38)'%3E🐷%3C/text%3E%3Ctext x='420' y='420' font-size='30' fill='rgba(168,155,196,0.28)'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23products-pattern)'/%3E%3C/svg%3E");
    background-size: cover, 480px 480px;
    background-position: center, 0 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px var(--shadow-hover);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 5px 20px var(--shadow);
}

.product-image[src=""] {
    display: none;
}

.product-image[src=""] ~ .product-icon {
    display: block;
}

/* Therapy Bites: same frame as other product images */
#therapyBitesImage {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
}

.product-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.product-features h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 0.3rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '💜';
    position: absolute;
    left: 0;
}

.product-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
    margin: 0 auto 1.5rem;
    max-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

#artisanCookiesCollage {
    grid-template-areas: 
        "top top"
        "left right";
}

#artisanCookiesCollage .collage-image:nth-child(1) {
    grid-area: top;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

#artisanCookiesCollage .collage-image:nth-child(2),
#artisanCookiesCollage .collage-image:nth-child(3) {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

#decadentDessertsCollage {
    grid-template-areas: 
        "left right"
        "bottom bottom";
}

#decadentDessertsCollage .collage-image:nth-child(1),
#decadentDessertsCollage .collage-image:nth-child(2) {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

#decadentDessertsCollage .collage-image:nth-child(3) {
    grid-area: bottom;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lavender);
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-item strong {
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.3rem;
}

.detail-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   MARKETS SECTION
   ============================================ */

.markets {
    background: var(--white);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='510' height='510' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='markets-pattern' x='0' y='0' width='510' height='510' patternUnits='userSpaceOnUse'%3E%3Ctext x='80' y='130' font-size='33' fill='%23F0E8F8' opacity='0.42'%3E🍪%3C/text%3E%3Ctext x='410' y='270' font-size='27' fill='%23D4C5E8' opacity='0.38'%3E🌿%3C/text%3E%3Ctext x='210' y='450' font-size='32' fill='%23B8A9D4' opacity='0.38'%3E🐷%3C/text%3E%3Ctext x='440' y='450' font-size='31' fill='%23F0E8F8' opacity='0.42'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23markets-pattern)'/%3E%3C/svg%3E");
    background-size: 510px 510px;
    background-position: 0 0;
}

.markets-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.market-card {
    background: var(--pale-lavender);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.market-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.market-card ul {
    list-style: none;
    padding-left: 0;
}

.market-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.market-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

.market-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.events-list {
    list-style: none;
    padding-left: 0;
}
.events-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 127, 168, 0.2);
}
.events-list li:last-child {
    border-bottom: none;
}
.events-list a {
    color: var(--primary-purple);
    font-weight: 600;
    text-underline-offset: 3px;
}
.events-list a:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}
.events-list li::before {
    content: none;
    display: none;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: linear-gradient(180deg, var(--pale-lavender) 0%, var(--cream) 100%);
    background-image: 
        linear-gradient(180deg, var(--pale-lavender) 0%, var(--cream) 100%),
        url("data:image/svg+xml,%3Csvg width='465' height='465' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='faq-pattern' x='0' y='0' width='465' height='465' patternUnits='userSpaceOnUse'%3E%3Ctext x='80' y='120' font-size='31' fill='rgba(139,127,168,0.28)'%3E🍪%3C/text%3E%3Ctext x='380' y='240' font-size='25' fill='rgba(168,155,196,0.3)'%3E🌿%3C/text%3E%3Ctext x='200' y='400' font-size='34' fill='rgba(139,127,168,0.38)'%3E🐷%3C/text%3E%3Ctext x='410' y='420' font-size='29' fill='rgba(168,155,196,0.28)'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23faq-pattern)'/%3E%3C/svg%3E");
    background-size: cover, 465px 465px;
    background-position: center, 0 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--pale-lavender);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--white);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='525' height='525' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='contact-pattern' x='0' y='0' width='525' height='525' patternUnits='userSpaceOnUse'%3E%3Ctext x='90' y='130' font-size='34' fill='%23F0E8F8' opacity='0.42'%3E🍪%3C/text%3E%3Ctext x='420' y='270' font-size='28' fill='%23D4C5E8' opacity='0.38'%3E🌿%3C/text%3E%3Ctext x='225' y='450' font-size='32' fill='%23B8A9D4' opacity='0.38'%3E🐷%3C/text%3E%3Ctext x='450' y='450' font-size='32' fill='%23F0E8F8' opacity='0.42'%3E🍪%3C/text%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23contact-pattern)'/%3E%3C/svg%3E");
    background-size: 525px 525px;
    background-position: 0 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.contact-tagline {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    background: var(--pale-lavender);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-purple);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-message {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-links {
    margin-top: 2rem;
}

.social-links p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-style: italic;
    opacity: 0.9;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

    .about-card,
    .product-card,
    .market-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    section {
        padding: 3rem 0;
    }
}
