/* ========================================
   Mama Bear & Cub Co. - Main Styles
   Made for cozy snuggles
   ======================================== */

/* === CSS VARIABLES === */
:root {
    --color-cream: #FFF8F0;
    --color-peach: #FFD4B8;
    --color-lavender: #E6D9F0;
    --color-gold: #F4C430;
    --color-brown: #8B6F47;
    --color-dark: #3D2C1F;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray: #888888;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Quicksand', Arial, sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-brown);
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: #E0B020;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-brown);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-lavender);
    color: var(--color-dark);
    border-color: var(--color-lavender);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.btn-disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

.btn-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-brown);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
    color: var(--color-gold);
}

/* === NAVIGATION === */
.navbar {
    background: linear-gradient(to right, var(--color-cream) 0%, rgba(255, 248, 240, 0.8) 20%, rgba(255, 248, 240, 0.4) 50%, rgba(255, 248, 240, 0.1) 80%, transparent 100%);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: none;
}

.car-carousel-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
}

.nav-cta {
    padding: 8px 20px;
    background: var(--color-lavender);
    border-radius: var(--border-radius-sm);
    color: var(--color-brown) !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--color-peach);
}

.cart-toggle {
    position: relative;
    padding: 8px;
    color: var(--color-dark);
}

.cart-toggle:hover {
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: -100px;
}

.hero-fullscreen-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full Screen Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(61, 44, 31, 0.2) 0%, rgba(139, 111, 71, 0.25) 50%, rgba(200, 162, 200, 0.2) 100%);
    z-index: 1;
}

/* Twinkling stars effect */
.hero .stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
    animation: twinkle 3s infinite;
}

.hero .star:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero .star:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.5s; }
.hero .star:nth-child(3) { top: 45%; left: 20%; animation-delay: 1s; }
.hero .star:nth-child(4) { top: 70%; left: 75%; animation-delay: 1.5s; }
.hero .star:nth-child(5) { top: 20%; left: 50%; animation-delay: 2s; }
.hero .star:nth-child(6) { top: 80%; left: 90%; animation-delay: 2.5s; }
.hero .star:nth-child(7) { top: 10%; left: 65%; animation-delay: 0.8s; }
.hero .star:nth-child(8) { top: 55%; left: 5%; animation-delay: 1.2s; }
.hero .star:nth-child(9) { top: 85%; left: 40%; animation-delay: 1.8s; }
.hero .star:nth-child(10) { top: 30%; left: 90%; animation-delay: 0.3s; }
.hero .star:nth-child(11) { top: 60%; left: 60%; animation-delay: 1.6s; }
.hero .star:nth-child(12) { top: 12%; left: 30%; animation-delay: 2.2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Content Overlay */
.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding: 60px 20px;
}

.hero-text-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.hero-text-content .hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    line-height: 1.1;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
}

.hero-text-content .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-white);
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text-content .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}



/* === TAGLINE BAR === */
.tagline-bar {
    background: var(--color-lavender);
    padding: 16px 0;
    text-align: center;
}

.tagline-bar p {
    font-weight: 600;
    color: var(--color-brown);
    margin: 0;
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-peach);
    color: var(--color-brown);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === FEATURED PRODUCT === */
.featured-product {
    background-image: url('images/sunshine-rays-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.featured-product .container {
    position: relative;
    z-index: 2;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

/* === PRODUCT CARDS === */
.product-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 3px solid var(--color-peach);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.3);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    background: var(--color-gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--color-brown);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.product-card-content h3 a {
    color: var(--color-brown);
    transition: color 0.3s ease;
}

.product-card-content h3 a:hover {
    color: var(--color-gold);
}

.product-description {
    color: var(--color-gray);
    font-size: 0.875rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.product-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 18px;
    display: block;
    font-family: var(--font-heading);
    margin-top: auto;
}

/* High-end button styling for product cards */
.product-card-content .btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.product-card-content .btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    border: 2px solid var(--color-gold);
}

.product-card-content .btn-primary:hover {
    background: #E0B020;
    border-color: #E0B020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
}

.product-card-content .btn-secondary {
    background: transparent;
    color: var(--color-brown);
    border: 2px solid var(--color-brown);
}

.product-card-content .btn-secondary:hover {
    background: var(--color-brown);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 111, 71, 0.25);
}

/* === FEATURES SECTION === */
.features {
    background: var(--color-gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 32px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--color-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-brown);
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--color-gray);
    margin: 0;
}

/* === COMING SOON SECTION === */
.coming-soon {
    background: var(--color-lavender);
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coming-soon-text h2 {
    margin-bottom: 24px;
}

.coming-soon-list {
    margin: 24px 0;
    padding-left: 24px;
}

.coming-soon-list li {
    list-style: disc;
    color: var(--color-brown);
    margin-bottom: 12px;
    font-weight: 500;
}

.coming-soon-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coming-soon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === EMAIL SIGNUP === */
.email-signup {
    background: var(--color-cream);
    position: relative;
}

.email-signup .container {
    position: relative;
    z-index: 2;
}

.signup-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.signup-card h2 {
    margin-bottom: 16px;
}

.signup-card > p {
    color: var(--color-gray);
    margin-bottom: 32px;
}

.signup-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.signup-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.signup-note {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0;
}

/* === INSTAGRAM SECTION === */
.instagram-section {
    text-align: center;
    overflow: hidden;
}

.instagram-section h2 {
    margin-bottom: 12px;
}

.instagram-subtitle {
    color: var(--color-gray);
    margin-bottom: 40px;
}

.instagram-grid {
    display: flex;
    gap: 16px;
    animation: scroll-carousel 20s linear infinite;
    width: max-content;
}

.instagram-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.instagram-placeholder {
    flex-shrink: 0;
    width: 300px;
    aspect-ratio: 1;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.instagram-placeholder:hover {
    transform: scale(1.05);
}

.instagram-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === FEATURED PRODUCTS (Homepage) === */
.featured-products-section {
    padding: 80px 0;
    background: var(--color-white);
}

.featured-products-section .section-header {
    margin-bottom: 48px;
}

.featured-loading {
    text-align: center;
    padding: 40px;
    color: var(--color-gray);
    font-size: 1rem;
}

/* === SHOP PAGE === */
.shop-section {
    padding: 60px 0;
}

.shop-header {
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFE8D6 50%, var(--color-lavender) 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '🐻';
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 8rem;
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
}

.shop-header::after {
    content: '🌟';
    position: absolute;
    bottom: 10px;
    left: 4%;
    font-size: 5rem;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.shop-header .container {
    position: relative;
    z-index: 2;
}

.shop-header .section-tag {
    margin-bottom: 20px;
}

.shop-main {
    flex: 1;
}

.shop-header h1 {
    color: var(--color-brown);
    margin-bottom: 14px;
}

.shop-header p {
    font-size: 1.125rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.shop-content {
    padding: 48px 0 80px;
    background: var(--color-cream);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* === FILTERS SIDEBAR (collection pages) === */
.filters-sidebar {
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-gray-light);
}

.filters-header h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--color-brown);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-brown);
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.btn-text:hover {
    color: var(--color-gold);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* === SHOP FILTERS === */
.shop-filters {
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-gray-light);
}

.filter-group {
    margin-bottom: 32px;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-reset {
    margin-top: 24px;
}

/* === SHOP TOOLBAR (simplified, full-width) === */
.shop-toolbar-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    padding: 16px 24px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-peach);
}

/* === SHOP TOOLBAR (old sidebar layout) === */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-gray-light);
}

.product-count {
    font-weight: 600;
    color: var(--color-brown);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sort label {
    font-weight: 600;
}

.shop-sort select {
    padding: 8px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
}

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-gray);
    font-size: 1.125rem;
}

/* === PAGINATION === */
.pagination {
    margin-top: 60px;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 16px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover {
    background: var(--color-peach);
    border-color: var(--color-peach);
}

.pagination-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

/* === PRESALE BANNER === */
.presale-banner {
    background: var(--color-peach);
    padding: 60px 0;
}

/* === SUMMER BANNER === */
.summer-banner {
    background: linear-gradient(135deg, #FFE066 0%, #FFB347 40%, #FF8C69 80%, #FFD4B8 100%);
    position: relative;
    overflow: hidden;
}

.summer-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.summer-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.summer-banner .container {
    position: relative;
    z-index: 2;
}

.summer-banner-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    animation: spin-sun 8s linear infinite;
}

@keyframes spin-sun {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.summer-banner h2 {
    color: var(--color-dark);
}

.summer-banner > .container > .presale-content > p {
    color: var(--color-dark);
}

/* === SUMMER COMING SOON SECTION === */
.summer-coming-soon {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE8CC 50%, #E6D9F0 100%);
    position: relative;
    overflow: hidden;
}

.summer-coming-soon::before {
    content: '\2600';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 12rem;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

.presale-content {
    text-align: center;
}

.presale-content h2 {
    margin-bottom: 16px;
}

.presale-content > p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.presale-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.presale-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-brown);
}

.presale-benefit svg {
    color: var(--color-gold);
}

/* === PRODUCT DETAIL PAGE === */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.product-detail {
    padding: 40px 0 80px;
}

.product-detail-section {
    padding: 3rem 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info {
    position: sticky;
    top: 120px;
}

.product-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.product-price {
    margin-bottom: 24px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.product-description {
    margin-bottom: 32px;
    color: var(--color-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 32px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-brown);
}

.product-select,
.quantity-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
}

.product-select:focus,
.quantity-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.variant-selector {
    margin: 1.5rem 0;
}

.variant-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-brown);
}

.variant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-gray-light);
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    min-width: 80px;
}

.variant-btn:hover:not(:disabled) {
    border-color: var(--color-brown);
}

.variant-btn.selected {
    border-color: var(--color-brown);
    background: var(--color-brown);
    color: var(--color-white);
}

.variant-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: var(--color-gray-light);
}

.quantity-input {
    max-width: 120px;
}

.product-features {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--color-gray-light);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--color-brown);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.product-details-accordion {
    margin-top: 40px;
}

.product-details-accordion details {
    margin-bottom: 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.product-details-accordion summary {
    padding: 16px 20px;
    background: var(--color-white);
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.product-details-accordion summary:hover {
    background: var(--color-gray-light);
}

.details-content {
    padding: 20px;
    background: var(--color-gray-light);
}

.details-content ul {
    padding-left: 20px;
}

.details-content li {
    list-style: disc;
    margin-bottom: 8px;
}

/* === RELATED PRODUCTS === */
.related-products {
    background: var(--color-gray-light);
    padding: 80px 0;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 12px;
}

.related-products .section-subtitle {
    text-align: center;
    margin-bottom: 48px;
}

/* === ABOUT PAGE === */
.about-hero {
    padding: 80px 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h1 {
    margin-bottom: 24px;
}

.about-hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === VALUES SECTION === */
.values {
    background: var(--color-white);
}

.values h2 {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 32px;
    background: var(--color-gray-light);
    border-radius: var(--border-radius);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--color-lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-brown);
}

.value-card h3 {
    margin-bottom: 16px;
}

/* === MISSION SECTION === */
.mission {
    background: var(--color-peach);
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission h2 {
    margin-bottom: 32px;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* === BEHIND THE SCENES === */
.behind-scenes {
    padding: 80px 0;
}

.behind-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.behind-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.behind-text h2 {
    margin-bottom: 24px;
}

.behind-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* === JOIN CTA === */
.join-cta {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-peach) 100%);
    text-align: center;
}

.join-cta h2 {
    margin-bottom: 16px;
}

.join-cta > p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === SEARCH PAGE === */
.search-header {
    background: var(--color-lavender);
    padding: 60px 0;
    text-align: center;
}

.search-header h1 {
    margin-bottom: 32px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.search-results {
    padding: 60px 0;
}

.search-status {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-gray);
    font-size: 1.125rem;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h3 {
    margin-bottom: 16px;
}

/* === CART DRAWER === */
#cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

#cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 44, 31, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1999;
    pointer-events: none;
}

#cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--color-cream);
    box-shadow: -8px 0 32px rgba(61, 44, 31, 0.18);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    overflow: hidden;
}

/* Header — matches both .cart-header and .cart-drawer-header */
.cart-header,
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    background: var(--color-dark);
    border-bottom: 3px solid var(--color-gold);
    flex-shrink: 0;
}

.cart-header h2,
.cart-drawer-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-cream);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Close button — matches both .cart-close and .close-cart */
.cart-close,
.close-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--color-cream);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.cart-close:hover,
.close-cart:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: rotate(90deg);
}

/* Cart items scroll area */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-peach) transparent;
}

.cart-items::-webkit-scrollbar {
    width: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--color-peach);
    border-radius: 4px;
}

/* Empty cart state — matches both .empty-cart and .cart-empty */
.empty-cart,
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    color: var(--color-gray);
    flex: 1;
}

.empty-cart p,
.cart-empty p {
    font-size: 1rem;
    color: var(--color-brown);
    margin: 0;
    font-style: italic;
}

/* Individual cart item */
.cart-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(244, 196, 48, 0.15);
    position: relative;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
    border: 2px solid var(--color-peach);
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    /* Truncate long names */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.variant-title {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 6px;
    font-style: italic;
}

.item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-brown);
    margin-bottom: 0;
}

/* Cart item actions column */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    flex-shrink: 0;
}

/* Quantity controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--color-peach);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--color-white);
}

.quantity-controls button,
.qty-decrease,
.qty-increase {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.quantity-controls button:hover,
.qty-decrease:hover,
.qty-increase:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.quantity-controls span {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
    border-left: 1.5px solid var(--color-peach);
    border-right: 1.5px solid var(--color-peach);
    line-height: 28px;
}

.quantity-controls input {
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    padding: 4px 2px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
}

/* Remove button */
.remove-item,
.remove-btn {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 4px;
    transition: var(--transition);
    font-family: var(--font-body);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.remove-item:hover,
.remove-btn:hover {
    color: #c0392b;
    text-decoration: none;
}

/* Cart footer */
.cart-footer {
    padding: 20px 24px;
    background: var(--color-white);
    border-top: 2px solid var(--color-peach);
    flex-shrink: 0;
}

/* Subtotal row — matches both .cart-total and .cart-subtotal */
.cart-total,
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.cart-total span:last-child,
.cart-subtotal span:last-child {
    color: var(--color-brown);
    font-size: 1.2rem;
}

/* Checkout & continue shopping buttons inside cart footer */
.cart-footer .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    padding: 14px 24px;
    font-size: 1rem;
    border: none;
}

.cart-footer .btn:last-child {
    margin-bottom: 0;
}

.cart-footer .btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
}

.cart-footer .btn-primary:hover {
    background: #E0B020;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-footer .btn-secondary {
    background: transparent;
    color: var(--color-brown);
    border: 2px solid var(--color-peach) !important;
}

.cart-footer .btn-secondary:hover {
    background: var(--color-lavender);
    color: var(--color-dark);
    border-color: var(--color-lavender) !important;
}

.cart-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 10px;
}

/* === CART NOTIFICATION === */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    z-index: 3000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* === FOOTER === */
.footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-section h4 {
    color: var(--color-peach);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-section p {
    color: var(--color-cream);
    opacity: 0.8;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--color-cream);
    opacity: 0.8;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-cream);
    opacity: 0.7;
}

/* === SHOPIFY INTEGRATION STYLES === */

/* Navigation Dropdown for Collections */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown {
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.collection-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.collection-list li {
    margin: 0;
}

.collection-list a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.collection-list a:hover {
    background: #f5f5f5;
    padding-left: 24px;
}

/* === ADDITIONAL SHOP PAGE STYLES === */

/* Out of Stock Badge */
.out-of-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(211, 47, 47, 0.9);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

/* Product Category Badge */
.product-category {
    color: var(--color-brown);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Product Images Gallery */
.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 500px;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--color-gray-light);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background-color: var(--color-gray-light);
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--color-brown);
}

/* Product Info Section */
.product-info-section {
    padding: 1rem 0;
}

.product-title {
    font-size: 2.5rem;
    color: var(--color-brown);
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-meta {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
    margin-bottom: 2rem;
}

.product-meta p {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.add-to-cart-btn {
    width: 100%;
    margin-bottom: 2rem;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: var(--color-gray);
}

.empty-state p {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    font-size: 1.25rem;
    color: var(--color-gray);
}

.error-state {
    text-align: center;
    padding: 3rem;
}

.error-state p {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

/* Search Input Wrapper */
.search-input-wrapper {
    position: relative;
    display: flex;
}

.search-input-wrapper input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--color-gray-light);
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-brown);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background 0.3s;
}

.search-btn:hover {
    background: var(--color-gold);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.search-info {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

/* Page Header Enhancements */
.page-header {
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFE8D6 50%, var(--color-lavender) 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--color-brown);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin: 0 auto;
    max-width: 600px;
}

/* === FOUNDER LETTER PAGE === */
.founder-page-header {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-peach) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.founder-page-header .section-tag {
    margin-bottom: 16px;
}

.founder-page-header h1 {
    font-size: 3rem;
    color: var(--color-brown);
}

.founder-letter-section {
    padding: 70px 0 80px;
    background: var(--color-cream);
}

.founder-letter-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

/* Photo Column */
.founder-photo-col {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.founder-photo-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-peach);
    aspect-ratio: 4/5;
}

.founder-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-photo-caption {
    text-align: center;
}

.founder-name-caption {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-brown);
    margin: 0;
}

.founder-title-caption {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
    margin: 4px 0 0;
}

.founder-faith-badge {
    background: var(--color-white);
    border: 2px solid var(--color-lavender);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.founder-faith-badge span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.founder-faith-badge p {
    font-size: 0.875rem;
    color: var(--color-brown);
    font-weight: 500;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Letter Column */
.founder-letter-col {
    display: flex;
    flex-direction: column;
}

.founder-letter-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 52px 56px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(230, 217, 240, 0.5);
    position: relative;
    line-height: 1.9;
}

.letter-quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.6;
    color: var(--color-peach);
    margin-bottom: 24px;
    display: block;
    user-select: none;
}

.letter-greeting {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 28px;
    line-height: 1.4;
}

.founder-letter-card p {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 22px;
    line-height: 1.9;
}

.letter-closing-line {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-brown) !important;
    margin-top: 8px;
}

.letter-signature {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px dashed var(--color-peach);
}

.signature-warmth {
    font-size: 1rem;
    color: var(--color-gray) !important;
    margin-bottom: 4px !important;
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brown) !important;
    margin-bottom: 4px !important;
}

.signature-title {
    font-size: 0.9rem;
    color: var(--color-gray) !important;
    font-weight: 500;
    margin: 0 !important;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid #e0e0e0;
        margin-left: 15px;
        margin-top: 10px;
        visibility: visible;
        opacity: 1;
        display: none;
        border-radius: 0;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-text-content .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text-content .hero-subtitle {
        font-size: 1.05rem;
    }

    .coming-soon-content,
    .about-hero-content,
    .behind-content,
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-letter-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-photo-col {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }

    .founder-letter-card {
        padding: 36px 32px;
    }

    .founder-page-header h1 {
        font-size: 2.25rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-toolbar-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 18px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shop-filters {
        position: static;
    }

    .instagram-placeholder {
        width: 250px;
    }

    .featured-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }

    .signup-form {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cart-drawer-content {
        max-width: 100%;
    }
}

/* === AUTH MODAL === */
.auth-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 44, 31, 0.6);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.auth-modal-overlay.open {
    display: flex;
}

.auth-modal-box {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1;
}

.auth-modal-close:hover {
    color: var(--color-dark);
}

.auth-modal-title {
    font-size: 1.75rem;
    color: var(--color-brown);
    margin-bottom: 24px;
    text-align: center;
}

.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-brown);
    margin-bottom: 6px;
}

.auth-field input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.auth-field input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.auth-btn {
    width: 100%;
    padding: 13px;
    background: var(--color-gold);
    color: var(--color-dark);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.auth-btn:hover {
    background: #E0B020;
}

.auth-error {
    color: #c0392b;
    font-size: 0.875rem;
    margin: 6px 0 0;
    min-height: 1.2em;
}

.auth-switch {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 14px;
    color: var(--color-gray);
}

.auth-switch a {
    color: var(--color-brown);
    font-weight: 600;
}

.auth-switch a:hover {
    color: var(--color-gold);
}

.auth-note {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .auth-modal-box {
        margin: 16px;
        padding: 28px 20px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 50px 0;
    }

    .founder-letter-card {
        padding: 28px 24px;
    }

    .letter-quote-mark {
        font-size: 6rem;
    }

    .signature-name {
        font-size: 1.6rem !important;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-text-content .hero-title {
        font-size: 2rem;
    }

    .hero-text-content .hero-subtitle {
        font-size: 1rem;
    }

    .signup-card {
        padding: 32px 24px;
    }

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

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

    .instagram-placeholder {
        width: 200px;
    }

    .presale-benefits {
        flex-direction: column;
        align-items: center;
    }
}
