/* WhatchamaCloset - Shared Styles */

:root {
    --tan-bg: #D4B896;
    --tan-light: #E5D4BE;
    --burgundy: #4A1C1C;
    --burgundy-light: #6B2D2D;
    --rust: #8B4726;
    --terracotta: #C67D4A;
    --peach: #E8A87C;
    --golden: #DAA520;
    --cream: #FDF8F3;
    --dark-brown: #3D1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: var(--cream);
    color: var(--burgundy);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(74, 28, 28, 0.1);
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--burgundy);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(74, 28, 28, 0.15));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--burgundy);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--rust);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--burgundy);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--tan-bg) 0%, var(--tan-light) 50%, var(--peach) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, var(--terracotta) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, var(--golden) 0%, transparent 25%);
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--rust);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--golden), var(--peach));
    opacity: 0.4;
    z-index: -1;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo-display {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-display img {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(74, 28, 28, 0.2));
    transition: transform 0.5s ease;
}

.hero-logo-display img:hover {
    transform: scale(1.03);
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--burgundy-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 28, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-secondary:hover {
    background: var(--burgundy);
    color: var(--cream);
    transform: translateY(-3px);
}

/* Decorative Circles */
.retro-circles {
    position: absolute;
    width: 350px;
    height: 350px;
    opacity: 0.12;
}

.retro-circles.left {
    left: -120px;
    bottom: 8%;
}

.retro-circles.right {
    right: -120px;
    top: 15%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle:nth-child(1) { width: 100%; height: 100%; background: var(--rust); }
.circle:nth-child(2) { width: 80%; height: 80%; background: var(--terracotta); }
.circle:nth-child(3) { width: 60%; height: 60%; background: var(--peach); }
.circle:nth-child(4) { width: 40%; height: 40%; background: var(--golden); }

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--cream);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--rust), var(--golden), var(--terracotta));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Block Styles */
.about-block {
    background: var(--tan-bg);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: visible;
}

.about-block-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.about-block-content.reverse {
    flex-direction: row-reverse;
}

.number-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--rust), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(139, 71, 38, 0.3);
}

.about-block-text {
    flex: 1;
}

.about-block-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-block-text p {
    font-size: 1.1rem;
    color: var(--dark-brown);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--tan-light);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 28, 28, 0.15);
}

.feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--burgundy);
}

.pricing-info {
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.5);
    padding: 1.5rem;
    border-radius: 15px;
}

.pricing-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--burgundy);
    margin-bottom: 1rem;
    text-decoration: underline;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    padding: 0.5rem 0;
    color: var(--dark-brown);
    font-size: 1rem;
    border-bottom: 1px solid rgba(74, 28, 28, 0.1);
}

.pricing-info li:last-child {
    border-bottom: none;
}

.about-owner {
    text-align: center;
    margin-top: 3rem;
}

.about-owner .about-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
}

.owner-caption {
    margin-top: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--burgundy);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(74, 28, 28, 0.25);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Visit Us Section */
.info-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--tan-light) 0%, var(--tan-bg) 50%, var(--peach) 100%);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(218, 165, 32, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.info-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(198, 125, 74, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: linear-gradient(145deg, rgba(253, 248, 243, 0.95), rgba(253, 248, 243, 0.85));
    backdrop-filter: blur(10px);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(74, 28, 28, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 380px;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rust), var(--golden), var(--terracotta));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(74, 28, 28, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--rust), var(--terracotta), var(--golden));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 71, 38, 0.3);
    transition: transform 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--cream);
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.info-card p {
    color: var(--dark-brown);
    line-height: 2.1;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card .address-text {
    margin: 1rem 0 auto 0;
    padding: 1.5rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card .address-text p {
    margin-bottom: 0;
}

.hours-list {
    list-style: none;
    text-align: left;
}

.hours-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 184, 150, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--burgundy);
}

.hours-time {
    color: var(--rust);
    font-weight: 500;
}

.info-card .btn {
    margin-top: 2rem;
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
    display: inline-block;
}

/* Instagram Section */
.instagram-section {
    padding: 8rem 2rem;
    background: var(--cream);
    text-align: center;
}

.instagram-cta {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--rust), var(--terracotta), var(--golden));
    color: var(--cream);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(139, 71, 38, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 71, 38, 0.4);
}

.instagram-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(74, 28, 28, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 28, 28, 0.25);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item .placeholder-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-brown) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title {
    color: var(--cream);
}

.contact .section-divider {
    background: linear-gradient(90deg, var(--golden), var(--peach), var(--golden));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--golden);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: rgba(218, 165, 32, 0.3);
}

.contact-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), rgba(218, 165, 32, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

.contact-item-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--golden);
}

.contact-item-text {
    flex: 1;
    padding: 0.5rem 0;
}

.contact-item-text h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--tan-light);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.contact-item-text a:hover {
    color: var(--golden);
}

.contact-map {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(218, 165, 32, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #2A1010;
    color: var(--tan-light);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--golden);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--tan-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--golden);
    transform: translateY(-2px);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Shop Section */
.shop-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--tan-light) 100%);
}

.shop-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--dark-brown);
    font-size: 1.1rem;
}

.shopify-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shop-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    border: 2px dashed var(--tan-bg);
}

.shop-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.shop-placeholder h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.shop-placeholder p {
    color: var(--dark-brown);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Shopify Buy Button Overrides */
.shopify-buy__product {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 28, 28, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shopify-buy__product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 28, 28, 0.15);
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    nav {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(74, 28, 28, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
        min-height: -webkit-fill-available;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-logo-display {
        order: 0;
    }

    .hero-logo-display img {
        max-width: 280px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-title span::after {
        height: 6px;
        bottom: 3px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin: 0 auto 2rem;
        padding: 0 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about, .info-section, .instagram-section, .contact, .shop-section {
        padding: 4rem 1.5rem;
    }

    /* About blocks - tablet */
    .about-block {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-block-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .about-block-text h3 {
        font-size: 1.5rem;
    }

    .about-block-text p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature .feature-icon {
        font-size: 2rem;
    }

    .feature h4 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .pricing-info {
        padding: 1.25rem;
        text-align: left;
    }

    .pricing-info li {
        font-size: 0.95rem;
    }

    .about-owner .about-image-wrapper {
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-image-decoration {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .contact-item-icon {
        width: 55px;
        height: 55px;
    }

    .contact-map {
        min-height: 300px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .instagram-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .nav-logo img {
        height: 30px;
    }

    .hero {
        padding: 5.5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .hero-logo-display img {
        max-width: 180px;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .hero-tagline {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        min-height: 48px; /* iOS touch target */
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-divider {
        width: 80px;
    }

    .about, .info-section, .instagram-section, .contact, .shop-section {
        padding: 3rem 1rem;
    }

    /* About blocks - phone */
    .about-block {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
        border-radius: 18px;
    }

    .about-block-content {
        gap: 1rem;
    }

    .number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .about-block-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .about-block-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .feature {
        padding: 1rem 0.75rem;
        border-radius: 15px;
    }

    .feature .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .feature h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .feature p {
        font-size: 0.75rem;
    }

    .pricing-info {
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
    }

    .pricing-info h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .pricing-info li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .about-owner {
        margin-top: 2rem;
    }

    .about-owner .about-image-wrapper {
        max-width: 220px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-image {
        max-width: 250px;
    }

    .info-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .info-icon svg {
        width: 28px;
        height: 28px;
    }

    .hours-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .info-card .btn {
        margin-top: 1.5rem;
        padding: 0.9rem 2rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .contact-item-icon {
        width: 50px;
        height: 50px;
    }

    .contact-item-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-item-text h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-item-text p,
    .contact-item-text a {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-map {
        min-height: 250px;
        border-radius: 18px;
    }

    .instagram-section p {
        font-size: 0.9rem !important;
        padding: 0 0.5rem;
    }

    .instagram-cta {
        margin-bottom: 2rem;
    }

    .instagram-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }

    .instagram-grid {
        gap: 0.75rem;
    }

    .instagram-item {
        border-radius: 12px;
    }

    .instagram-item .placeholder-text {
        font-size: 0.7rem;
    }

    footer {
        padding: 2.5rem 1rem;
    }

    .footer-content {
        padding: 0;
    }

    .footer-logo {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .footer-copyright {
        font-size: 0.75rem;
        margin-top: 1.25rem;
    }
}

/* Founder Page Specific Styles */
.founder-hero {
    min-height: 60vh;
    padding-top: 6rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: sticky;
    top: 100px;
}

.founder-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--rust);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.founder-quote {
    background: var(--tan-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--golden);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--burgundy);
}

@media (max-width: 968px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-image {
        position: relative;
        top: 0;
        max-width: 300px;
        margin: 0 auto;
    }
}
