* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: #171717; background: #ffffff; line-height: 1.6; }
a { color: inherit; }
a:focus-visible {
    outline: 2px solid #171717;
    outline-offset: 4px;
}
.site-header { width: 100%; padding: 22px 7%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eeeeee; background: #ffffff; position: sticky; top: 0; z-index: 100; }
.logo { text-decoration: none; font-size: 25px; font-weight: 700; letter-spacing: 4px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { text-decoration: none; font-size: 14px; color: #444444; }
.main-nav a:hover { color: #000000; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: #777777; margin-bottom: 15px; }
.button { display: inline-block; padding: 14px 28px; background: #171717; color: #ffffff; text-decoration: none; font-size: 14px; border-radius: 3px; transition: opacity 0.2s ease; }
.button:hover { opacity: 0.75; }
.hero { min-height: 650px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 100px 20px; background: #f6f6f4; }
.hero-content { max-width: 850px; }
.hero h1 { font-size: clamp(42px, 7vw, 76px); line-height: 1.08; letter-spacing: -2px; margin-bottom: 25px; }
.hero-text { max-width: 600px; margin: 0 auto 35px; color: #666666; font-size: 18px; }
.section { padding: 100px 7%; }
.section-heading { max-width: 700px; margin: 0 auto; text-align: center; }
.section-heading h2, .about-content h2, .contact-content h2 { font-size: clamp(32px, 5vw, 48px); line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.section-heading > p:last-child { color: #666666; }
.product-filters {
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-button {
    padding: 9px 16px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #444444;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}
.filter-button:hover,
.filter-button.active {
    background: #171717;
    color: #ffffff;
    border-color: #171717;
}
.product-count {
    text-align: center;
    margin-top: 15px;
    color: #888888;
    font-size: 12px;
}
.cards { max-width: 1100px; margin: 55px auto 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { padding: 35px; min-height: 280px; border: 1px solid #e7e7e7; background: #ffffff; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06); }
.card img {
    transition: transform 0.25s ease;
}
.card:hover img {
    transform: scale(1.02);
}
.product-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999999;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 6px;
}
.card-number { font-size: 12px; color: #999999; margin-bottom: 45px; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: #666666; font-size: 15px; margin-bottom: 25px; }
.card-status { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: #888888; }
.card-link { display: inline-block; margin-top: 5px; font-size: 14px; text-decoration: none; font-weight: 600; }
.about-section { padding: 110px 7%; background: #f6f6f4; }
.about-content { max-width: 760px; margin: auto; text-align: center; }
.about-content p:not(.eyebrow) { color: #666666; margin-bottom: 18px; }
.why-section { background: #ffffff; }
.values { max-width: 1100px; margin: 55px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.value h3 { font-size: 18px; margin-bottom: 12px; }
.value p { color: #666666; font-size: 15px; }
.contact-section { padding: 110px 7%; background: #171717; color: #ffffff; text-align: center; }
.contact-content { max-width: 700px; margin: auto; }
.contact-section .eyebrow { color: #aaaaaa; }
.contact-content p:not(.eyebrow) { color: #bbbbbb; margin-bottom: 30px; }
.contact-section .button { background: #ffffff; color: #171717; }
footer { padding: 35px 7%; background: #111111; color: #aaaaaa; text-align: center; font-size: 13px; }
.footer-brand { color: #ffffff; font-weight: 700; letter-spacing: 3px; margin-bottom: 6px; }
footer p { margin: 4px 0; }
.shop-note {
    margin-top: 35px;
    text-align: center;
    color: #888888;
    font-size: 13px;
}
main {
    width: 100%;
    overflow: hidden;
}
@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 800px) {
    .site-header { padding: 18px 5%; }
    .main-nav { gap: 18px; }
    .main-nav a { font-size: 13px; }
    .hero { min-height: 580px; padding: 80px 20px; }
    .hero h1 { letter-spacing: -1px; }
    .section { padding: 75px 6%; }
    .cards { grid-template-columns: 1fr; }
    .card { min-height: auto; }
    .values { grid-template-columns: 1fr; gap: 35px; }
    .about-section, .contact-section { padding: 80px 6%; }
}
@media (max-width: 500px) {
    .site-header {
        padding: 16px 5%;
        gap: 12px;
    }
    .main-nav { gap: 20px; }
    .hero h1 { font-size: 42px; }
    .hero-text { font-size: 16px; }
    .button {
        width: 100%;
        text-align: center;
    }
    .whatsapp-button {
        margin-left: 0;
        margin-top: 10px;
    }
    .card {
        padding: 25px;
    }
    .card img {
        height: 160px;
    }
}

.card small {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card h3 {
    margin-bottom: 10px;
}

.card img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.card strong {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    color: #222;
}

.marketplace-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.marketplace-links a {
    padding: 8px 12px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.marketplace-links a:hover {
    background: #f5f5f5;
    border-color: #bbbbbb;
}

.product-card {
    display: flex;
    flex-direction: column;
    animation: productFadeIn 0.25s ease;
}

@keyframes productFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card .marketplace-links {
    margin-top: auto;
}

.product-card p {
    min-height: 48px;
}

.product-category {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    color: #222222;
}

.product-status {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
}

.product-card .product-status {
    opacity: 0.8;
}

.direct-order-note {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.7;
}

.product-status-coming-soon {
    opacity: 0.65;
}

.product-status-available {
    font-weight: 700;
}

.product-status-out-of-stock {
    opacity: 0.5;
}

.product-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.product-link:hover {
    text-decoration: underline;
}

.product-page {
    min-height: 100vh;
}

.product-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 7%;
}

.product-detail-image {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    background: #f5f5f5;
    color: #999999;
    letter-spacing: 1px;
}

.product-detail-image img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.product-detail h1 {
    margin-bottom: 15px;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.1;
}

.product-detail-description {
    max-width: 650px;
    margin: 20px 0;
    color: #666666;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.marketplace-button {
    border: 0;
    opacity: 0.55;
    cursor: not-allowed;
}

.product-detail-back {
    display: inline-block;
    margin-top: 35px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.contact-email {
    margin-top: 20px;
    margin-bottom: 0 !important;
    font-size: 13px;
}

.brand-statement {
    margin-top: 30px;
    color: #171717 !important;
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-button {
    margin-left: 10px;
}

@media (max-width: 500px) {
    .product-detail {
        padding: 65px 6%;
    }

    .product-detail-image {
        min-height: 220px;
    }

    .whatsapp-button {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Product Detail Page */

.container {
    width: min(1100px, 86%);
    margin: 0 auto;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav {
    display: flex;
    gap: 30px;
}

.site-nav a {
    color: #444444;
    font-size: 14px;
    text-decoration: none;
}

.site-nav a:hover {
    color: #000000;
}

.product-detail-section {
    padding: 80px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: none;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    max-width: none;
    margin: 0;
    padding: 0;
}

.product-detail-image {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content h1 {
    margin: 10px 0 20px;
    font-size: 42px;
    line-height: 1.1;
}

.product-detail-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-detail-content .product-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-actions {
    margin: 30px 0;
}

.product-actions .button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.product-information {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.product-information h2 {
    margin-bottom: 15px;
}

.product-information p {
    line-height: 1.7;
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-image {
        min-height: 320px;
    }

    .product-detail-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .site-nav {
        gap: 18px;
    }
}

/* Product Image System */

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 16px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-image .product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-highlights {
    margin: 30px 0;
}

.product-highlights h2 {
    margin-bottom: 15px;
}

.product-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.product-highlights li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.marketplace-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.marketplace-links a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.marketplace-links a:hover {
    text-decoration: underline;
}

.product-breadcrumb {
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 14px;
    opacity: 0.65;
}

/* Standard Content Pages */

.page-section {
    padding: 80px 0;
}

.page-section h1 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 1.15;
}

.page-intro {
    max-width: 700px;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 60px;
}

.content-block {
    max-width: 800px;
    margin-bottom: 50px;
}

.content-block h2 {
    margin-bottom: 15px;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    line-height: 1.9;
    padding-left: 25px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin: 20px 0;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.product-marketplace-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f3f3;
    font-size: 12px;
    font-weight: 600;
}

/* Featured Products */

.featured-products-section {
    margin-bottom: 70px;
}

.section-heading {
    margin-bottom: 30px;
}

.section-eyebrow {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.65;
}

.section-heading h2 {
    margin-bottom: 10px;
}

.section-heading p {
    line-height: 1.6;
}

.featured-products-grid {
    margin-bottom: 20px;
}

@media (max-width: 700px) {
    .page-section {
        padding: 60px 0;
    }

    .page-section h1 {
        font-size: 34px;
    }

    .page-intro {
        font-size: 18px;
    }
}

/* Mobile Navigation */

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

/* Product Tools */

.product-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.product-search,
.product-sort {
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #ffffff;
    font: inherit;
}

.product-search {
    flex: 1 1 280px;
}

.product-sort {
    flex: 0 1 220px;
}

.product-search:focus,
.product-sort:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Accessibility */

.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;
}

.product-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    opacity: 0.7;
}

.product-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    border: 1px dashed #dcdcdc;
    border-radius: 12px;
}

.product-empty-state h3 {
    margin-bottom: 10px;
}

.product-empty-state p {
    margin: 0;
    opacity: 0.7;
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:focus-within {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.product-link:focus-visible,
.filter-button:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.logo:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .mobile-menu-button {
        display: block;
    }

    .header-inner {
        position: relative;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        gap: 15px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        display: block;
        padding: 8px 0;
    }
}

/* =========================================
   LEESARA PRODUCT & MEESHO SHOP
   ========================================= */

.shop-all-meesho {
    width: 100%;
    max-width: 760px;
    margin: 56px auto 24px;
    padding: 32px 24px;
    text-align: center;
    border-radius: 16px;
}

.shop-all-meesho-text {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.shop-all-meesho .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    text-decoration: none;
    cursor: pointer;
}

/* Product cards */

.product-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.product-card-link .product-image {
    overflow: hidden;
}

.product-card-link .product-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-card-link:hover .product-image img {
    transform: scale(1.03);
}

/* Marketplace badge */

.marketplace-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1;
}

/* Product actions */

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.product-actions a {
    text-decoration: none;
}

/* Mobile */

@media (max-width: 600px) {
    .shop-all-meesho {
        margin-top: 40px;
        padding: 24px 16px;
    }

    .shop-all-meesho .btn {
        width: 100%;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions a {
        width: 100%;
        text-align: center;
    }
}

/* Public storefront refinement */

body:not(.admin-page) {
    background: #fbfcfa;
}

body:not(.admin-page) .site-header {
    border-bottom-color: #dfe7e1;
    background: rgba(251, 252, 250, 0.96);
}

body:not(.admin-page) .logo {
    color: #172b22;
}

body:not(.admin-page) .site-nav a {
    color: #536158;
}

body:not(.admin-page) .site-nav a:hover {
    color: #172b22;
}

body:not(.admin-page) .hero {
    min-height: 620px;
    background: #edf3ee;
    border-bottom: 1px solid #dfe8e1;
}

body:not(.admin-page) .hero-content {
    max-width: 760px;
}

body:not(.admin-page) .hero .eyebrow,
body:not(.admin-page) .section-heading .eyebrow {
    color: #567261;
}

body:not(.admin-page) .hero h1 {
    color: #172b22;
}

body:not(.admin-page) .hero-text {
    color: #5e6e64;
}

body:not(.admin-page) .hero .button,
body:not(.admin-page) .product-actions .button,
body:not(.admin-page) .shop-all-meesho .btn {
    background: #172b22;
}

body:not(.admin-page) .products-section {
    background: #fbfcfa;
}

.featured-products-section {
    max-width: 1160px;
    margin: 70px auto 0;
    padding: 42px 0 8px;
    border-top: 1px solid #dfe7e1;
}

.featured-products-section .section-heading {
    max-width: 620px;
}

.featured-products-section .section-heading h2 {
    color: #172b22;
}

.featured-products-grid {
    margin-top: 34px;
}

.product-card {
    overflow: hidden;
    padding: 0;
    border-color: #dfe7e1;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(23, 43, 34, 0.04);
}

.product-card:hover {
    box-shadow: 0 16px 30px rgba(23, 43, 34, 0.1);
}

.product-card .product-image-wrapper {
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: #edf3ee;
}

.product-card .product-image-wrapper img {
    height: 100%;
}

.product-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: #e8efeb;
    color: #517061;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-card .product-card-content {
    padding: 22px 24px 18px;
}

.product-card .product-category {
    color: #678170;
}

.product-card h3 {
    color: #172b22;
    line-height: 1.3;
}

.product-card p {
    color: #67756c;
}

.product-card .product-price {
    color: #172b22;
    font-size: 20px;
    font-weight: 700;
}

.product-card .marketplace-badge {
    background: #e5f0e7;
    color: #356b45;
    font-weight: 700;
}

.product-card .product-actions {
    margin: 0;
    padding: 0 24px 24px;
}

.product-card .product-actions .button {
    width: 100%;
    text-align: center;
}

.product-tools {
    max-width: 1100px;
    margin: 58px auto 0;
    padding-top: 26px;
    border-top: 1px solid #dfe7e1;
}

.product-search,
.product-sort {
    border-color: #d2ddd5;
    border-radius: 5px;
    color: #34463b;
}

.product-search::placeholder {
    color: #8a9890;
}

.product-filters {
    margin-top: 22px;
}

.filter-button {
    border-color: #d2ddd5;
    color: #536158;
}

.filter-button:hover,
.filter-button.active {
    background: #172b22;
    border-color: #172b22;
}

.shop-note {
    color: #718078;
}

.shop-all-meesho {
    background: #edf3ee;
    border: 1px solid #dfe7e1;
}

.shop-all-meesho-text {
    color: #536158;
}

@media (max-width: 600px) {
    .featured-products-section {
        margin-top: 48px;
        padding-top: 30px;
    }

    .featured-products-grid {
        margin-top: 26px;
    }

    .product-card .product-card-content {
        padding: 20px;
    }

    .product-card .product-actions {
        padding: 0 20px 20px;
    }
}
