:root {
    --color-bg: #f8f9fa;
    --color-surface: #ffffff;
    --color-card: #ffffff;
    --color-accent: #4a90e2;
    --color-accent-strong: #2c5aa0;
    --color-gold: #d4af37;
    --color-gold-strong: #b8860b;
    --color-muted: #6c757d;
    --color-body: #495057;
    --color-light: rgba(74, 144, 226, 0.1);
    --font-heading: "Poppins", "Segoe UI", Tahoma, sans-serif;
    --font-body: "Inter", "Segoe UI", Tahoma, sans-serif;
    --color-bg: #f8f9fa;
    --color-surface: #ffffff;
    --color-card: #ffffff;
    --color-accent: #4a90e2;
    --color-accent-strong: #2c5aa0;
    --color-muted: #6c757d;
    --color-body: #495057;
    --color-light: rgba(45, 38, 32, 0.08);
    --shadow-soft: 0 24px 55px rgba(57, 44, 34, 0.14);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1180px;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap");

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-body);
    background: radial-gradient(circle at top left, rgba(229, 215, 200, 0.35), transparent 55%),
        linear-gradient(180deg, #fffdf9 0%, var(--color-bg) 70%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 12px 24px rgba(45, 38, 32, 0.06);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    display: block;
    height: 58px;
    width: auto;
    filter: drop-shadow(0 10px 22px rgba(62, 46, 33, 0.18));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: rgba(45, 38, 32, 0.78);
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-strong));
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-body);
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--color-body);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    padding: 0 0.45rem;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(214, 147, 77, 0.16);
    color: var(--color-accent-strong);
    border-radius: 999px;
}

main {
    padding: 0 1.5rem 5rem;
}

section {
    max-width: var(--max-width);
    margin: 0 auto 5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(45, 38, 32, 0.52);
    margin-bottom: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn.primary {
    background: linear-gradient(120deg, var(--color-accent), var(--color-accent-strong));
    color: #fffdf7;
    box-shadow: 0 18px 30px rgba(214, 147, 77, 0.32);
}

.btn.primary:hover,
.btn.primary:focus {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 24px 36px rgba(214, 147, 77, 0.45);
}

.btn.ghost {
    background: rgba(45, 38, 32, 0.05);
    color: var(--color-body);
    border-color: rgba(45, 38, 32, 0.12);
}

.btn.ghost:hover,
.btn.ghost:focus {
    background: rgba(45, 38, 32, 0.12);
}

.link {
    color: var(--color-accent-strong);
    font-weight: 500;
    position: relative;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0.4;
}


.hero {
    position: relative;
    display: grid;
    gap: 3.5rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 6.5rem clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(252, 243, 229, 0.9));
    box-shadow: 0 32px 60px rgba(69, 53, 39, 0.12);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero::before {
    background: url("../images/DSC01812 (1).jpg")
        no-repeat center/cover;
    opacity: 0.6;

}

.hero::after {
    background: radial-gradient(circle at 85% 20%, rgba(214, 147, 77, 0.25), transparent 60%),
        radial-gradient(circle at 12% 80%, rgba(181, 106, 37, 0.18), transparent 70%);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    margin: 0 0 1rem;
}

.hero-content p {
    max-width: 36rem;
    margin: 0 0 1.75rem;
    color: rgba(45, 38, 32, 0.65);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-showcase {
    position: relative;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 38, 32, 0.08);
}

.hero-showcase img {
    border-radius: var(--radius-md);
    height: 320px;
    width: 100%;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    right: 2.75rem;
    bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    max-width: 220px;
    box-shadow: 0 26px 40px rgba(69, 53, 39, 0.18);
    border: 1px solid rgba(45, 38, 32, 0.08);
}

.hero-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
}

.hero-card p {
    margin: 0 0 0.75rem;
    color: rgba(45, 38, 32, 0.6);
    font-size: 0.9rem;
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.gallery-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 22px 32px rgba(69, 53, 39, 0.1);
}

.gallery-card img {
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.gallery-card figcaption {
    font-size: 0.9rem;
    color: rgba(45, 38, 32, 0.62);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    max-width: 36rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

.product-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.75rem 2rem;
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 28px 42px rgba(69, 53, 39, 0.14);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 38px 58px rgba(69, 53, 39, 0.18);
}

.product-visual {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: center;
}

.product-visual figure {
    margin: 0;
    display: grid;
    gap: 0.4rem;
    justify-items: center;
}

.product-visual img {
    height: 180px;
    width: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 32px rgba(69, 53, 39, 0.14);
}

.product-visual figcaption {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(45, 38, 32, 0.55);
}

.product-sizes {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.product-sizes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(45, 38, 32, 0.62);
}

.product-sizes input[type="radio"] {
    margin: 0;
    accent-color: var(--color-accent);
}

.product-info h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-heading);
}

.product-info .description {
    margin: 0 0 1rem;
    color: rgba(45, 38, 32, 0.62);
}

.notes {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    color: rgba(45, 38, 32, 0.58);
    font-size: 0.9rem;
}

.notes li + li {
    margin-top: 0.5rem;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-body);
}

.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(248, 239, 226, 0.9));
    padding: clamp(2.8rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 32px 55px rgba(69, 53, 39, 0.12);
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.1rem);
    margin: 0 0 1.5rem;
}

.story-content p {
    margin: 0 0 2rem;
    color: rgba(45, 38, 32, 0.62);
}

.story-highlights {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.story-highlights h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.testimonials .testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 26px 42px rgba(69, 53, 39, 0.12);
}

.testimonial p {
    font-size: 0.95rem;
    color: rgba(45, 38, 32, 0.65);
}

.author {
    display: block;
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--color-body);
}

.newsletter {
    margin-bottom: 7rem;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 227, 203, 0.9));
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 32px 55px rgba(69, 53, 39, 0.12);
}

.newsletter-card p {
    color: rgba(45, 38, 32, 0.62);
    margin: 0 0 1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}


.newsletter-form input {
    flex: 1 1 220px;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 38, 32, 0.18);
    background: #fffdf9;
    color: var(--color-body);
}

.newsletter-form input::placeholder {
    color: rgba(45, 38, 32, 0.45);
}

.site-footer {
    background: #f4ece0;
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(45, 38, 32, 0.08);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    color: rgba(45, 38, 32, 0.65);
}

.footer-grid h4 {
    margin: 0 0 0.75rem;
    color: var(--color-body);
    font-family: var(--font-heading);
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.social-links a {
    color: rgba(45, 38, 32, 0.75);
}

.footer-note {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    text-align: center;
    color: rgba(45, 38, 32, 0.55);
}

.page-hero {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 227, 0.92));
    padding: clamp(2.75rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 28px 50px rgba(69, 53, 39, 0.12);
}

.page-hero.compact {
    grid-template-columns: 1fr;
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.cta-banner {
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(244, 227, 203, 0.92));
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 28px 50px rgba(69, 53, 39, 0.12);
}

.cta-content h2 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
}

.cart {
    margin-top: 3rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
}

.cart-items {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3vw, 2.5rem);
    border: 1px solid rgba(45, 38, 32, 0.08);
    box-shadow: 0 28px 48px rgba(69, 53, 39, 0.12);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.5rem;
    background: #fffdf9;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 38, 32, 0.08);
}

.cart-item img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-details {
    display: grid;
    gap: 0.5rem;
}

.cart-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(45, 38, 32, 0.08);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.quantity-btn {
    background: transparent;
    border: none;
    color: var(--color-body);
    font-size: 1rem;
    cursor: pointer;
}

.cart-summary {
    position: sticky;
    top: 115px;
}

.summary-card {
    background: var(--color-card);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 38, 32, 0.08);
    display: grid;
    gap: 1.25rem;
    box-shadow: 0 26px 45px rgba(69, 53, 39, 0.12);
}

.summary-card h3 {
    margin: 0;
    font-family: var(--font-heading);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    color: rgba(45, 38, 32, 0.62);
}

.summary-line.total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-body);
}

.promo-form {
    display: flex;
    gap: 0.75rem;
}

.promo-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 38, 32, 0.18);
    background: #fffdf9;
    color: var(--color-body);
}

.note {
    color: rgba(45, 38, 32, 0.55);
    font-size: 0.85rem;
}

.empty-state {
    text-align: center;
    background: #fffdf9;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px dashed rgba(45, 38, 32, 0.16);
    display: grid;
    gap: 0.75rem;
}

.auth {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 320px);
}

.auth-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border: 1px solid rgba(45, 38, 32, 0.1);
    max-width: 520px;
    width: 100%;
    box-shadow: 0 28px 48px rgba(69, 53, 39, 0.14);
    display: grid;
    gap: 2rem;
}

.auth-intro h1 {
    font-family: var(--font-heading);
    margin: 0 0 0.75rem;
}

.auth-intro p {
    margin: 0;
    color: rgba(45, 38, 32, 0.6);
}

.auth-form {
    display: grid;
    gap: 1.25rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field input {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 38, 32, 0.18);
    background: #fffdf9;
    color: var(--color-body);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(45, 38, 32, 0.6);
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(45, 38, 32, 0.68);
}

.switch-auth {
    text-align: center;
    color: rgba(45, 38, 32, 0.62);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.96);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        display: grid;
        gap: 1.25rem;
        min-width: 220px;
        border: 1px solid rgba(45, 38, 32, 0.12);
        box-shadow: 0 18px 32px rgba(69, 53, 39, 0.14);
        transform-origin: top right;
        transform: scale(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links[data-visible="true"] {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    main {
        padding: 0 1.25rem 4rem;
    }

    section {
        margin-bottom: 4rem;
    }

    .hero-card {
        position: static;
        margin-top: 1.5rem;
        max-width: none;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .promo-form {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero,
    .page-hero,
    .story {
        padding: 2.25rem;
    }

    .hero-showcase {
        padding: 1.5rem;
    }

    .hero-showcase img {
        height: 240px;
    }

    .newsletter-card {
        padding: 2rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }
}

.image-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
}

.slideshow-container {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 20s infinite;
}

.slide {
    width: 25%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

@keyframes slide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}
.slideshow-container { animation-timing-function: ease-in-out; }

.story-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.story-slideshow .slideshow-container {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 20s infinite;
}

.story-slideshow .slide {
    width: 25%;
    height: 100%;
}

.story-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.floating-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-media img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    max-width: 100%;
    height: auto;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.tab-btn.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.tab-btn:hover {
    color: var(--color-accent);
}

.auth-containers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.auth-container {
    background: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 144, 226, 0.1);
    box-shadow: var(--shadow-soft);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .auth-containers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.address-section {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 144, 226, 0.1);
    margin-bottom: 1.5rem;
}

.address-section h3 {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.address-form .form-field {
    max-width: 400px;
    margin: 0 auto;
}

.address-form .form-row {
    max-width: 400px;
    margin: 0 auto;
}

.address-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.address-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.address-form {
    display: grid;
    gap: 1.5rem;
}

.address-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.address-form .form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.address-form .form-field {
    display: flex;
    flex-direction: column;
}

.address-form .form-field label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-body);
}

.address-form .form-field input {
    padding: 0.75rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-body);
    font-size: 1rem;
}

.address-form .form-field input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

@media (max-width: 768px) {
    .address-form .form-row,
    .address-form .form-row.three-col {
        grid-template-columns: 1fr;
    }
    
    .address-section {
        padding: 1rem;
    }
}

body {
    background-color: #f5f5f5;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.checkout-forms {
    display: grid;
    gap: 2rem;
}

.checkout-section {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.checkout-section h2 {
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.checkout-form {
    display: grid;
    gap: 1.5rem;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.checkout-form .form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.checkout-form .form-field {
    display: flex;
    flex-direction: column;
}

.checkout-form .form-field label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-body);
}

.checkout-form .form-field input,
.checkout-form .form-field select {
    padding: 0.75rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-body);
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.checkout-form .form-field input:focus,
.checkout-form .form-field select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.payment-methods {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.3s;
}

.payment-method:hover {
    border-color: var(--color-accent);
}

.payment-method input[type="radio"] {
    margin-right: 0.75rem;
}

.payment-details {
    display: grid;
    gap: 1rem;
}

.checkout-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    gap: 1rem;
}

.checkout-item:last-child {
    border-bottom: none;
}

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

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.checkout-item-details {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.checkout-item-price {
    font-weight: 500;
}

.checkout-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-section {
        padding: 1.5rem;
    }
    
    .checkout-summary {
        position: static;
    }
}

/* Order Confirmation Page */
.confirmation-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.confirmation-container {
    text-align: center;
}

.confirmation-icon {
    margin-bottom: 2rem;
}

.confirmation-icon svg {
    margin: 0 auto;
}

.confirmation-section h1 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.confirmation-message {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

.order-details-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.order-info {
    display: grid;
    gap: 1rem;
}

.order-info dt {
    font-weight: 600;
    color: var(--color-body);
}

.order-info dd {
    color: var(--color-muted);
    margin-left: 0;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.confirmation-note {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Profile Page */
.profile-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.profile-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--color-body);
    transition: background 0.3s;
}

.profile-nav-link:hover,
.profile-nav-link.active {
    background: var(--color-light);
    color: var(--color-accent);
}

.profile-panel {
    display: none;
}

.profile-panel.active {
    display: block;
}

.orders-list,
.addresses-list {
    display: grid;
    gap: 1.5rem;
}

.order-card,
.address-card {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.order-date {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-shipped {
    background: #d1ecf1;
    color: #0c5460;
}

.order-items {
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.item-name {
    font-weight: 500;
}

.item-qty {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.item-price {
    margin-left: auto;
    font-weight: 600;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total {
    font-weight: 600;
    font-size: 1.125rem;
}

.order-actions {
    display: flex;
    gap: 0.5rem;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.address-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.add-address-btn {
    width: 100%;
}

.profile-form {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Order Tracking Page */
.tracking-section {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tracking-container {
    display: grid;
    gap: 3rem;
}

.tracking-form {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
}

.tracking-result {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.tracking-status {
    padding: 0.5rem 1rem;
    background: #d1ecf1;
    color: #0c5460;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.tracking-timeline {
    margin-bottom: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: rgba(74, 144, 226, 0.2);
}

.timeline-item.completed::before {
    background: var(--color-accent);
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.2);
    position: relative;
}

.timeline-item.completed .timeline-marker {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.timeline-item.completed .timeline-marker::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.timeline-item.active .timeline-marker {
    background: white;
    border-color: var(--color-accent);
    border-width: 3px;
}

.timeline-content h3 {
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--color-muted);
    font-size: 0.875rem;
}

.timeline-desc {
    margin-top: 0.5rem;
}

.tracking-number {
    font-weight: 500;
    color: var(--color-accent);
}

.tracking-details {
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    padding-top: 2rem;
}

.tracking-items {
    margin: 1rem 0;
}

.tracking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-light);
    border-radius: var(--radius-sm);
}

.tracking-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.tracking-address {
    margin-top: 1.5rem;
}

/* Contact Page */
.contact-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-body);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.faq-section {
    padding: 4rem 2rem;
    background: var(--color-light);
}

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

.faq-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 1rem;
    color: var(--color-muted);
}

/* About Page */
.about-intro,
.about-story,
.about-process,
.about-commitment {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content,
.story-content,
.process-content,
.commitment-content {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.about-mission {
    padding: 4rem 2rem;
    background: var(--color-light);
}

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

.mission-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.story-text p {
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

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

.process-step {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.about-cta {
    padding: 4rem 2rem;
    background: var(--color-light);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-layout,
    .contact-layout,
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .mission-grid,
    .process-steps,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
}

/* WhatsApp Enquiry Button */
.whatsapp-enquiry {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
