/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FAF8F4;
    --bg-warm: #F5F0E8;
    --text: #3D2B1F;
    --text-light: #7A6A5E;
    --gold: #B8976A;
    --gold-dark: #8B6F47;
    --accent: #8B1A4A;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-accent: 'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

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

.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { height: 0; }
    to { height: 30px; }
}

/* ===== Loading Screen ===== */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s both;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.4s;
}

.navbar.scrolled .logo {
    color: #1a1a1a;
}

.logo-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-accent {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: #8B1A4A;
    line-height: 1;
    margin-right: -2px;
}

.logo-divider {
    display: inline-block;
    width: 1px;
    height: 24px;
    background: #c9a96e;
    margin: 0 10px;
}

.logo-sub {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8B1A4A;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s;
}

.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.cart-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: color 0.4s;
}

.navbar.scrolled .cart-btn {
    color: var(--text);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -6px;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.4s;
}

.navbar.scrolled .menu-toggle {
    color: var(--text);
}

/* ===== Hero ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1.2s ease 1.5s both;
}

.hero-badge {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.4);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.hero-script {
    font-family: 'Great Vibes', cursive, var(--font-heading);
    font-size: 5rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
}

.hero-serif {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 auto 0.8rem;
}

.hero-sub {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
}

.btn-hero {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.4s ease;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: fadeInUp 1s ease 2.5s both;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    animation: slideDown 1.5s ease infinite;
}

/* ===== Signature Quote ===== */
.quote-section {
    padding: 5rem 2rem;
    background: var(--bg-warm);
    text-align: center;
}

.quote-ornament {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.signature-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto 0;
}

/* ===== Stories Grid ===== */
.stories-section {
    background: var(--bg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(61, 43, 31, 0.1);
}

.story-img {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.story-img img {
    width: 100%;
    height: calc(100% + 30px);
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.story-card:hover .story-img img {
    transform: scale(1.05);
}

.story-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-info {
    padding: 1.5rem;
}

.story-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.story-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-add {
    flex: 1;
    padding: 10px 0;
    background: var(--text);
    color: var(--white);
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-body);
}

.btn-add:hover {
    background: var(--accent);
}

.btn-dm {
    flex: 1;
    padding: 10px 0;
    border: 1px solid var(--text);
    background: none;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    font-family: var(--font-body);
}

.btn-dm:hover {
    background: var(--text);
    color: var(--white);
}

/* ===== Full-Width Image Break ===== */
.image-break {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.image-break-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.image-break-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.15);
}

.image-break-text {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-break-text p {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: 1px;
}

/* ===== Coming Soon Fabrics ===== */
.coming-soon-section {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid #ede8e0;
}

.coming-soon-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.85rem;
}

.coming-soon-fabrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 0.6rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.55;
}

.cs-dot {
    color: var(--accent);
    opacity: 0.7;
}

/* ===== Colour Customisation ===== */
.colour-section {
    text-align: center;
}

.colour-steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.colour-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.colour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.colour-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.colour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.colour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.colour-label {
    padding: 0.8rem;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.colour-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn-colour-dm {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-colour-dm:hover {
    background: #a62058;
}

/* ===== How to Order ===== */
.order-section {
    background: var(--bg-warm);
    max-width: 100%;
    padding: 6rem 2rem;
}

.order-section .section-title {
    margin-bottom: 3rem;
}

.order-steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.order-step {
    text-align: center;
    flex: 1;
}

.order-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

.order-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.order-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== About Section ===== */
.about-section {
    max-width: 1000px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-greeting {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-style: italic;
    font-weight: 400;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-signature {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold-dark);
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* ===== Reviews ===== */
.reviews-section {
    background: var(--bg-warm);
    max-width: 100%;
    padding: 6rem 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
}

.review-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.review-author strong {
    color: var(--text);
}

.review-author span {
    color: var(--text-light);
}

/* ===== Customer Reviews (Google Sheet) ===== */
.customer-reviews {
    margin-top: 3rem;
}

.cr-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    color: var(--text);
    margin-bottom: 2rem;
}

.cr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cr-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.cr-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.cr-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.cr-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.cr-footer strong {
    color: var(--text);
}

.cr-product {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Review CTA */
.review-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.review-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.review-cta p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-write-review {
    display: inline-block;
    padding: 12px 32px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-write-review:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .cr-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-section {
    max-width: 700px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

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

/* ===== Footer ===== */
.footer {
    background: #2C2218;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 5rem 2rem 3rem;
}

.footer-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.footer-policies {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-policies a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s;
}

.lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

.lb-img-wrap {
    max-width: 85vw;
    max-height: 80vh;
    position: relative;
}

.lb-img-wrap img {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
}

.lb-counter {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.lb-thumbs {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.lb-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.lb-thumb.active, .lb-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}

/* ===== Cart Sidebar ===== */
.cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0; right: -400px;
    width: 380px;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cart-header h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cart-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0,0,0,0.1);
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 2px;
}

.cart-item-controls span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-summary {
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--text);
    color: var(--white);
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: var(--accent);
}

/* ===== Modals ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text);
}

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

.order-summary {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.order-total {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 0.5rem;
    padding-top: 0.8rem;
}


.payment-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.payment-amount {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.upi-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.upi-app-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    padding: 0.6rem 0.3rem;
    border-radius: 10px;
    border: 1px solid #e8e3dc;
    transition: transform 0.15s, box-shadow 0.15s;
    background: #fff;
}
.upi-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.upi-app-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

.upi-app-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.upi-id-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.payment-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0 0.8rem;
}
.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0d8d0;
}
.payment-divider span {
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
}

.payment-proof-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
    text-align: left;
}

.proof-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
}

.proof-required { color: #c0392b; }
.proof-optional { font-weight: 400; color: var(--text-light); font-size: 0.78rem; }

.proof-input {
    padding: 0.6rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.proof-input:focus { border-color: var(--accent); }

.proof-upload-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f5f0eb;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    transition: background 0.2s;
    margin-top: 0.2rem;
}
.proof-upload-btn:hover { background: #ede6dd; }

.screenshot-preview {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.screenshot-preview img {
    width: 100%;
    display: block;
    max-height: 180px;
    object-fit: contain;
    background: #f8f8f8;
}

.txn-confirm {
    background: #f0faf4;
    border: 1px solid #b2dfc5;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin: 0.8rem 0;
    text-align: center;
}
.txn-label {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}
.txn-value {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #1a7a42;
    word-break: break-all;
}

.screenshot-confirm {
    margin: 0.8rem 0;
    text-align: center;
}
.pay-instruction {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.pay-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0 0.5rem;
}

.pay-contact-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e8e3dc;
    border-radius: 10px;
    text-decoration: none;
    background: #fafaf8;
    transition: background 0.15s;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}
.pay-contact-btn:hover { background: #f0ebe4; }

.pay-app-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
    font-family: var(--font-body);
}
.ig-icon   { background: linear-gradient(135deg, #f9ed32 0%, #ee2a7b 50%, #285AEB 100%); }
.wa-icon   { background: #25D366; }
.mail-icon { background: #EA4335; }

.pay-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.pay-contact-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.pay-contact-handle {
    font-size: 0.72rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pay-contact-arrow {
    font-size: 1rem;
    color: #bbb;
    flex-shrink: 0;
}

.payment-alt-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.8rem;
}
.payment-alt-link {
    color: var(--accent);
    text-decoration: underline;
}

.screenshot-confirm-img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f8f8f8;
}

.thankyou-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2ecc71;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thankyou-details {
    text-align: center;
    margin: 1.5rem 0;
}

.thankyou-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thankyou-email, .thankyou-insta {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 100;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .colour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text) !important;
    }

    .menu-toggle { display: block; }

    .hero-script { font-size: 3.5rem; }
    .hero-serif { font-size: 1rem; letter-spacing: 8px; }
    .hero-tagline { font-size: 1rem; }

    .signature-quote { font-size: 1.3rem; }

    .stories-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .story-img { height: 320px; }

    .colour-grid { grid-template-columns: repeat(2, 1fr); }

    .order-steps { flex-direction: column; gap: 2rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img { height: 350px; }

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

    .image-break { height: 35vh; }
    .image-break-bg { background-attachment: scroll; }
    .image-break-text p { font-size: 1.3rem; }

    .section { padding: 4rem 1.5rem; }

    .footer-links { gap: 1rem; }
    .footer-policies { gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-script { font-size: 2.8rem; }
    .section-title { font-size: 1.8rem; }
    .colour-grid { grid-template-columns: 1fr 1fr; }
    .colour-steps { gap: 1rem; }
    .story-actions { flex-direction: column; }
}
