/* ════════════════ LOTTO NEPAL - MAIN STYLESHEET ════════════════ */

:root {
    --lotto-red: #e30613;
    --lotto-dark: #111111;
    --lotto-gray: #f5f5f5;
    --lotto-text: #222222;
    --lotto-muted: #666666;
    --red: #e30613;
    --red-hover: #b8000f;
    --black: #111111;
    --white: #ffffff;
    --grey-100: #f5f5f5;
    --grey-300: #d1d1d1;
    --grey-500: #9a9a9a;
    --grey-700: #4a4a4a;
    --radius: 6px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--lotto-text);
    margin: 0;
}

/* ── NAVBAR ── */
.navbar-lotto {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 1rem;
}

.navbar-lotto .navbar-brand img {
    height: 36px;
}

.navbar-lotto .nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lotto-dark) !important;
    letter-spacing: 0.04em;
    padding: 1.2rem 0.8rem !important;
    text-transform: uppercase;
}

.navbar-lotto .nav-link:hover {
    color: var(--lotto-red) !important;
}

.navbar-lotto .nav-link.active {
    color: var(--lotto-red) !important;
}

.nav-icons a {
    color: var(--lotto-dark);
    font-size: 1.1rem;
    margin-left: 0.6rem;
    text-decoration: none;
}

.nav-icons a:hover {
    color: var(--lotto-red);
}

.search-wrapper {
    position: relative;
    width: 250px;
}

/* INPUT */
.search-bar {
    width: 100%;
    padding: 10px 15px 10px 40px;
    /* left space for icon */
    border: 1px solid #ccc;
    border-radius: 50px;
    outline: none;
}

/* ICON ON LEFT */
.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    pointer-events: none;
}

/* ── HERO ── */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 60%, #1a1a1a 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=80') center/cover no-repeat;
    opacity: 0.25;
}

.hero-badge {
    display: inline-block;
    background: var(--lotto-red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.btn-lotto-primary {
    background: var(--lotto-red);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
}

.btn-lotto-primary:hover {
    background: #c00510;
    color: #fff;
}

.btn-lotto-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
}

.btn-lotto-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── SECTION HEADERS ── */
.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.section-subtitle {
    font-size: 0.78rem;
    color: var(--lotto-muted);
    margin-bottom: 1.5rem;
}

.view-all {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lotto-red) !important;
    text-decoration: none;
}

.view-all:hover {
    text-decoration: underline;
}

/* ── TABS ── */
.lotto-tabs .nav-link {
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lotto-dark);
    border: 1px solid #ddd;
    padding: 0.8rem 4rem;
}

.lotto-tabs .nav-link.active {
    background: var(--lotto-red);
    border-color: var(--lotto-red);
    color: #fff;
}

/* ── PRODUCT CARDS ── */
.product-card {
    border: none;
    border-radius: 0;
}

.product-card .img-wrap {
    background: var(--lotto-gray);
    overflow: hidden;
    position: relative;
}

.product-card .img-wrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .img-wrap img {
    transform: scale(1.06);
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--lotto-red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
}

.product-name {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.6rem;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-type {
    font-size: 0.7rem;
    color: var(--lotto-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--lotto-red);
    margin-top: 0.3rem;
}

.product-price-old {
    font-size: 0.72rem;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 0.4rem;
}

/* ── CATEGORY CARDS ── */
.cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    background: #1a1a1a;

}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.cat-card img {
    width: 100%;
    aspect-ratio: 4/6;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2.5rem 1.2rem 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.cat-label::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 1.2rem;
    width: 40px;
    height: 3px;
    background: var(--lotto-red);
}

/* ── ABOUT BLOCK ── */
.about-block {
    padding: 2.5rem;
}

.about-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lotto-red);
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.about-body {
    font-size: 0.82rem;
    color: #444;
    line-height: 1.7;
}

.live-love-block {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding: 2rem;
    position: relative;
}

.live-love-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.live-love-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--lotto-red);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    z-index: 3;
    border-top: 3px solid var(--lotto-red);
}

.live-love-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}

.live-love-text span {
    color: var(--lotto-red);
}

.live-love-badge {
    background: var(--lotto-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 0.8rem;
}

/* ── NEWS CARDS ── */
.news-card {
    border: none;
    border-radius: 0;
}

.news-card .img-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.news-tag {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lotto-red);
    margin-bottom: 0.4rem;
}

.news-title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.news-excerpt {
    font-size: 0.75rem;
    color: var(--lotto-muted);
    line-height: 1.6;
}

.read-more {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lotto-red) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.read-more:hover {
    text-decoration: underline;
}

/* ── NEWS FEATURED BLOCK ── */
.news-featured-block {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 400px;
    position: relative;
}

.news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.news-featured-content {
    color: #fff;
}

.news-featured-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--lotto-red);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
}

.news-featured-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.news-featured-excerpt {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ── NEWS SIDEBAR BLOCK ── */
.news-sidebar-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-sidebar-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lotto-red);
    margin-bottom: 0.5rem;
}

.news-sidebar-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.news-sidebar-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.news-sidebar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.news-item-excerpt {
    font-size: 0.8rem;
    color: var(--lotto-muted);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

/* ── HERITAGE BAND ── */
.heritage-band {
    background: var(--lotto-dark);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: visible;
}

.heritage-band::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--lotto-red);
}

.heritage-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.heritage-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lotto-red);
    margin-bottom: 1rem;
}

.heritage-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.heritage-body {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.heritage-stats-inline {
    display: flex;
    gap: 4rem;
}

.heritage-stat-item {
    text-align: left;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--lotto-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.heritage-image-block {
    position: relative;
    border-radius: 0;
}

.heritage-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.heritage-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--lotto-red);
    border-radius: 0;
}

.heritage-stat {
    text-align: center;
}

.heritage-stat .num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lotto-red);
    line-height: 1;
}

.heritage-stat .label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* ── SOCIAL GRID ── */
.social-section {
    padding: 60px 0;
    background: #fff;
}

/* TITLE */
.hashtag-title {
    font-size: 2rem;
    font-weight: 900;
    color: #e30613;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GRID ITEMS */
.social-item {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: #000;
}

.social-item.tall {
    height: 100%;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.social-item:hover img {
    transform: scale(1.08);
}

/* FEATURE CENTER */
.feature-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

/* HEADER */
.feature-header {
    background: #e30613;
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 18px;
}

/* IMAGE */
.feature-image {
    flex: 1;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 98%;
    object-fit: cover;
}

/* FOOTER */
.feature-footer {
    border: 2px solid #111;
    text-align: center;
    padding: 18px;
}

.feature-footer a {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .social-item {
        height: 180px;
    }

    .feature-header {
        font-size: 0.7rem;
    }
}

/* ── FOOTER ── */
.footer {
    background: #0a0a0a;
    padding: 60px 0 25px;
    color: #aaa;
}

/* BRAND TITLE */
.footer-logo-text {
    color: #e30613;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* DESCRIPTION */
.footer-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-top: 10px;
    color: #777;
    max-width: 260px;
}

/* HEADINGS */
.footer h6 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* LINKS */
.footer a {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #444;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #aaa;
    transition: 0.3s;
}

.footer-social a:hover {
    border-color: #fff;
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #666;
}

/* RIGHT MINI ICONS */
.footer-mini-icons span {
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    display: inline-block;
    margin-left: 10px;
    border-radius: 4px;
}

/* ── UTILITIES ── */
.section-pad {
    padding: 3.5rem 0;
}

.btn-lotto-sm {
    background: var(--lotto-red);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
}

.btn-lotto-sm:hover {
    background: #c00510;
    color: #fff;
}

.btn-outline-dark-lotto {
    border: 1px solid var(--lotto-dark);
    background: transparent;
    color: var(--lotto-dark);
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
}

.btn-outline-dark-lotto:hover {
    background: var(--lotto-dark);
    color: #fff;
}

/* ── SLIDER SECTION ── */
.banner-slider-section {
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
}

.banner-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-badge {
    display: inline-block;
    background: var(--lotto-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    margin-bottom: 1.5rem;
}

.banner-title {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-buttons .btn {
    min-width: 280px;
}

.carousel-indicators {
    bottom: 20px !important;
    position: absolute;
}

.carousel-indicators [data-bs-target] {
    width: 35px !important;
    height: 5px !important;
    border-radius: 3%;
    background-color: rgba(255, 255, 255, 0.986) !important;
    transition: all 0.3s ease;
    border: none;
}

.carousel-indicators .active {
    background-color: var(--lotto-red) !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(227, 6, 19, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: background 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--lotto-red);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .banner-slide {
        min-height: 500px;
    }

    .banner-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .banner-buttons {
        gap: 0.5rem;
    }

    .banner-buttons .btn {
        min-width: 140px;
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .banner-slide {
        min-height: 420px;
    }

    .hero-section {
        min-height: 420px;
    }

    .about-block {
        padding: 1.5rem;
    }

    .live-love-block {
        min-height: 130px;
        padding: 1.2rem;
    }
}


/* Login Page CSS */


/* ── Login page wrapper ── */
.login-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

/* ── Card ── */
.login-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(960px, 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .13);
}

/* ── Left panel ── */
.panel-image {
    position: relative;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=700&q=80') center/cover no-repeat;
    min-height: 480px;
}

.panel-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(85, 11, 19, 0.589) 0%, rgba(34, 24, 24, 0.78) 100%);
}

.panel-image-content {
    position: absolute;
    bottom: 36px;
    left: 36px;
    z-index: 1;
}

.panel-image-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: .95;
    color: var(--lotto-dark);
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin: 0;
}

.panel-image-content h1 span {
    display: block;
    color: var(--lotto-red);
}

.panel-image-content p {
    margin-top: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .72);
    max-width: 26ch;
    line-height: 1.5;
}

/* ── Right panel ── */
.panel-form {
    background: var(--white);
    padding: 52px 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-form h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--lotto-dark);
    letter-spacing: -.01em;
    margin: 0;
}

.panel-form .subtitle {
    margin-top: 6px;
    font-size: .85rem;
    color: var(--lotto-muted);
}

.fields {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.field label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lotto-muted);
}

.field .forgot-link {
    font-size: .73rem;
    font-weight: 500;
    color: var(--lotto-muted);
    text-decoration: none;
}

.field .forgot-link:hover {
    text-decoration: underline;
}

.field input {
    height: 46px;
    padding: 0 13px;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius);
    font-size: .9rem;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .15s;
    background: var(--white);
}

.field input::placeholder {
    color: var(--grey-500);
}

.field input:focus {
    border-color: var(--red);
}

.btn-login {
    margin-top: 24px;
    height: 50px;
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s, transform .12s;
}

.btn-login:hover {
    background: var(--red-hover);
}

.btn-login:active {
    transform: scale(.98);
}

.divider {
    margin: 24px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid var(--grey-300);
    margin: 0;
}

.divider span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--grey-500);
    white-space: nowrap;
}

.social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-social {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.btn-social:hover {
    border-color: #aaa;
    background: var(--grey-100);
}

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

.signup-line {
    margin-top: 24px;
    text-align: center;
    font-size: .8rem;
    color: var(--grey-700);
}

.signup-line a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.signup-line a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 680px) {
    .login-card {
        grid-template-columns: 1fr;
    }

    .panel-image {
        min-height: 200px;
    }

    .panel-form {
        padding: 32px 24px;
    }
}

/* ===================================================================
   shop_page.css
=================================================================== */

/* ---------- Hero banner ---------- */
.shop-hero {
    background: #0d0d0d;
    padding: 56px 0 48px;
}

.shop-hero-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-size: clamp(2.25rem, 4.5vw, 3.4rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.shop-hero-desc {
    font-family: "Inter", sans-serif;
    color: #b3b3b3;
    font-size: 1rem;
    max-width: 640px;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ---------- Layout wrapper ---------- */
.shop-content {
    padding: 40px 0 64px;
}

/* ---------- Sidebar filters ---------- */
.shop-filters {
    padding-right: 28px;
}

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

.filter-label {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 14px;
}

.filter-group .form-check {
    margin-bottom: 10px;
}

.filter-group .form-check-label {
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    color: #1a1a1a;
}

.filter-group .form-check-input:checked {
    background-color: #e30613;
    border-color: #e30613;
}

.filter-group .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.15);
}

.price-slider-wrap {
    position: relative;
    height: 36px;
}

.price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    transform: translateY(-50%);
}

.price-fill {
    position: absolute;
    top: 50%;
    height: 4px;
    background: #333;
    border-radius: 4px;
    transform: translateY(-50%);
}

.price-slider-wrap input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    margin: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
}

.price-slider-wrap input[type="range"]:first-child {
    z-index: 2;
}

.price-slider-wrap input[type="range"]:last-child {
    z-index: 3;
}

.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #333;
    cursor: pointer;
}

.price-slider-wrap input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #333;
    cursor: pointer;
}

.price-track {
    height: 3px;
    background: #ddd;
    border-radius: 2px;
    margin: 8px 0 12px;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    color: #6b6b6b;
    margin-top: 4px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.size-btn {
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #1a1a1a;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.size-btn:hover {
    border-color: #e30613;
}

.size-btn.active {
    border-color: #e30613;
    color: #e30613;
}

/* ---------- Toolbar ---------- */
.shop-toolbar {
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-count {
    font-family: "Inter", sans-serif;
    font-size: 0.92rem;
    color: #3a3a3a;
    margin: 0;
}

.shop-count strong {
    color: #0d0d0d;
}

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

.sort-label {
    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b6b6b;
}

.sort-toggle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #e30613;
    background: none;
    border: none;
    padding: 0;
}

.sort-toggle:hover,
.sort-toggle:focus {
    color: #c00510;
}

/* ---------- Product cards ---------- */
.product-card {
    position: relative;
}

.product-image-wrap {
    position: relative;
    background: #f1f1f1;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-image-wrap svg {
    width: 52%;
    height: 52%;
}

.badge-stack {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge-sale,
.badge-new {
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    text-align: center;
}

.badge-sale {
    background: #ef7d22;
    color: #fff;
}

.badge-new {
    background: #111111;
    color: #fff;
}

.product-name {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #111111;
    margin-bottom: 4px;
}

.product-category {
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 6px;
}

.product-price {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #e30613;
    margin-bottom: 0;
}

/* ---------- Load more ---------- */
.load-more-wrap {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.btn-load-more {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: #e30613;
    border: none;
    padding: 14px 40px;
    border-radius: 2px;
    transition: background .15s;
}

.btn-load-more:hover {
    background: #c00510;
    color: #fff;
}

@media (max-width: 991.98px) {
    .shop-filters {
        padding-right: 0;
        margin-bottom: 36px;
    }
}

/* ==========================================================================
   LOTTO NEPAL — PRODUCT DETAIL PAGE STYLES
   ========================================================================== */

.pdp-section {
    padding: 1rem 0 3rem;
}

/* ---------- Gallery ---------- */

.pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.pdp-thumb {
    border: 1px solid var(--lotto-grey-300);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .15s ease;
    background: var(--lotto-grey-100);
    aspect-ratio: 1/1;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-thumb.active {
    border-color: var(--lotto-red);
    border-width: 2px;
}

.pdp-main-image {
    border-radius: 8px;
    overflow: hidden;
    background: var(--lotto-grey-100);
    aspect-ratio: 1/1.18;
}

.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Info column ---------- */

.pdp-category {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lotto-grey-600);
    font-weight: 600;
    margin-bottom: .4rem;
}

.pdp-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: .01em;
    color: var(--lotto-ink);
    margin-bottom: .25rem;
    line-height: 1.05;
}

.pdp-colorway {
    font-size: .95rem;
    color: var(--lotto-grey-600);
    margin-bottom: .6rem;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

.pdp-rating .stars {
    color: var(--lotto-red);
    letter-spacing: 1px;
}

.pdp-rating .count {
    color: var(--lotto-grey-600);
}

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: .7rem;
    margin-bottom: .2rem;
}

.pdp-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--lotto-ink);
}

.pdp-tax-note {
    font-size: .78rem;
    color: var(--lotto-grey-600);
    margin-bottom: 1.5rem;
}

.pdp-block-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lotto-ink);
    margin-bottom: .7rem;
}

/* Color swatches */

.pdp-colors {
    display: flex;
    gap: .6rem;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}

.pdp-color-swatch {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    border: 1px solid var(--lotto-grey-300);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--lotto-grey-100);
    transition: border-color .15s ease;
}

.pdp-color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-color-swatch.selected {
    border: 2px solid var(--lotto-ink);
}

/* Size selector */

.pdp-size-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .7rem;
}

.pdp-size-guide-link {
    font-size: .8rem;
    color: var(--lotto-grey-600);
    text-decoration: underline;
    cursor: pointer;
}

.pdp-size-guide-link:hover {
    color: var(--lotto-red);
}

.pdp-sizes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem;
    margin-bottom: 1.8rem;
}

.pdp-size-btn {
    border: 1px solid var(--lotto-muted);
    background: var(--lotto-white);
    border-radius: 4px solid var(--lotto-grey-300);
    padding: .65rem .3rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--lotto-ink);
    cursor: pointer;
    transition: all .15s ease;
}

.pdp-size-btn:hover {
    border-color: var(--lotto-red);
}

.pdp-size-btn.selected {
    background: var(--lotto-ink);
    color: var(--lotto-white);
    border-color: var(--lotto-ink);
}

.pdp-size-btn:disabled {
    color: var(--lotto-grey-300);
    text-decoration: line-through;
    cursor: not-allowed;
    background: var(--lotto-grey-100);
}

/* CTA buttons */

.pdp-cta-row {
    display: flex;
    gap: .8rem;
    margin-bottom: 1.5rem;
}

.btn-lotto-primary {
    background: var(--lotto-red);
    color: var(--white);
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .95rem;
    padding: .9rem 1.5rem;
    border-radius: 4px;
    flex: 1;
    transition: background .15s ease;
}

.btn-lotto-primary:hover {
    background: var(--red-hover);
    color: var(--white);
}

.btn-lotto-outline {
    background: var(--white);
    color: var(--lotto-ink);
    border: 1.5px solid var(--lotto-ink);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .95rem;
    padding: .9rem 1.5rem;
    border-radius: 4px;
    flex: 1;
    transition: all .15s ease;
}

.btn-lotto-outline:hover {
    background: var(--grey-300);
    color: var(--lotto-white);
}

.btn-lotto-wishlist {
    width: 54px;
    border: 1.5px solid var(--lotto-grey-300);
    background: var(--lotto-white);
    border-radius: 4px;
    color: var(--lotto-ink);
    font-size: 1.1rem;
    transition: all .15s ease;
}

.btn-lotto-wishlist:hover {
    border-color: var(--lotto-red);
    color: var(--lotto-red);
}

/* Pincode check */

.pdp-pincode {
    display: flex;
    gap: .6rem;
    margin-bottom: 1.8rem;
}

.pdp-pincode input {
    flex: 1;
    border: 1px solid var(--lotto-grey-300);
    border-radius: 4px;
    padding: .65rem .9rem;
    font-size: .88rem;
    outline: none;
}

.pdp-pincode input:focus {
    border-color: var(--lotto-ink);
}

.pdp-pincode button {
    border: 1px solid var(--lotto-ink);
    background: var(--lotto-white);
    color: var(--lotto-ink);
    font-weight: 600;
    font-size: .85rem;
    padding: .65rem 1.3rem;
    border-radius: 4px;
    transition: all .15s ease;
}

.pdp-pincode button:hover {
    background: var(--lotto-ink);
    color: var(--lotto-white);
}

/* Bio / description */

.pdp-bio {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--lotto-grey-900);
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--lotto-grey-300);
}

/* ---------- Accordions ---------- */

.pdp-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--lotto-grey-300);
}

.pdp-accordion .accordion-button {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .9rem;
    color: var(--lotto-ink);
    padding: 1.1rem 0;
    background: transparent;
    box-shadow: none;
}

.pdp-accordion .accordion-button:not(.collapsed) {
    color: var(--lotto-red);
    background: transparent;
}

.pdp-accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.pdp-accordion .accordion-body {
    padding: 0 0 1.4rem;
    font-size: .88rem;
    color: var(--lotto-grey-900);
    line-height: 1.7;
}

.pdp-accordion .accordion-body ul {
    padding-left: 1.1rem;
    margin-bottom: 1rem;
}

.pdp-accordion .accordion-body li {
    margin-bottom: .35rem;
}

.pdp-meta-note {
    font-size: .78rem;
    color: var(--lotto-grey-600);
    margin-top: 1rem;
    line-height: 1.6;
}

/* ---------- Care tips ---------- */

.care-tip-block {
    margin-bottom: 1.3rem;
}

.care-tip-block h6 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--lotto-ink);
    margin-bottom: .4rem;
}

/* ---------- Feature strip ---------- */

.pdp-feature-strip {
    background: var(--lotto-grey-100);
    padding: 4rem 0;
    margin-top: 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--lotto-grey-300);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-copy {
    flex: 1;
}

.feature-eyebrow {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lotto-red);
    font-weight: 700;
    margin-bottom: .6rem;
}

.feature-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--lotto-ink);
    margin-bottom: .8rem;
}

.feature-body {
    font-size: .92rem;
    color: var(--lotto-grey-900);
    line-height: 1.7;
    max-width: 420px;
}

/* ---------- Reviews ---------- */

.reviews-section {
    padding: 4.5rem 0 5rem;
    background: var(--lotto-white);
}

.reviews-eyebrow {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--lotto-red);
    font-weight: 700;
    margin-bottom: .5rem;
}

.reviews-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--lotto-ink);
    margin-bottom: 2.4rem;
    letter-spacing: .01em;
}

/* ---- Summary panel ---- */

.review-summary {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 3rem;
    align-items: center;
    background: var(--lotto-grey-100);
    border-radius: 12px;
    padding: 2.2rem 2.4rem;
    margin-bottom: 3rem;
}

.review-score {
    text-align: center;
    padding-right: 3rem;
    border-right: 1px solid var(--lotto-grey-300);
}

.review-score .big-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.4rem;
    color: var(--lotto-ink);
    line-height: 1;
}

.review-score .stars {
    color: var(--lotto-red);
    letter-spacing: 2px;
    margin: .5rem 0 .4rem;
    font-size: 1rem;
}

.review-score .based-on {
    font-size: .8rem;
    color: var(--lotto-grey-600);
    font-weight: 500;
}

.review-bars {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.review-bar-row {
    display: grid;
    grid-template-columns: 32px 1fr 28px;
    align-items: center;
    gap: .8rem;
    font-size: .78rem;
    color: var(--lotto-grey-600);
    font-weight: 600;
}

.review-bar-track {
    height: 7px;
    background: var(--lotto-grey-300);
    border-radius: 999px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lotto-gold), #ddb872);
    border-radius: 999px;
}

.review-bar-row span:last-child {
    text-align: right;
    color: var(--lotto-grey-900);
}

.review-summary .btn-lotto-outline {
    white-space: nowrap;
    padding: .85rem 1.8rem;
}

/* ---- Review cards ---- */

.review-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.1rem;
    border-top: 1px solid var(--lotto-grey-300);
    padding: 1.8rem 0;
}

.review-list .review-card:first-child {
    border-top: none;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lotto-ink);
    color: var(--lotto-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.review-card .stars {
    color: var(--lotto-red);
    font-size: .85rem;
    letter-spacing: 1px;
    margin-bottom: .35rem;
    display: block;
}

.review-card .reviewer {
    font-weight: 700;
    font-size: .92rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--lotto-ink);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #1a8f4c;
    background: #e8f7ee;
    border-radius: 999px;
    padding: .15rem .55rem .15rem .4rem;
}

.review-card .review-date {
    font-size: .76rem;
    color: var(--lotto-grey-600);
    white-space: nowrap;
}

.review-card .review-title {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .35rem;
    color: var(--lotto-ink);
}

.review-card .review-text {
    font-size: .88rem;
    color: var(--lotto-grey-900);
    line-height: 1.65;
    margin-bottom: .7rem;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--lotto-grey-600);
}

.review-helpful button {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid var(--lotto-grey-300);
    background: var(--lotto-white);
    border-radius: 999px;
    padding: .3rem .75rem;
    font-size: .76rem;
    color: var(--lotto-grey-900);
    transition: all .15s ease;
}

.review-helpful button:hover {
    border-color: var(--lotto-ink);
    background: var(--lotto-grey-100);
}

.reviews-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.reviews-footer .btn-lotto-outline {
    flex: none;
    padding: .85rem 2.5rem;
}

@media (max-width: 767px) {
    .review-summary {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.6rem;
    }

    .review-score {
        border-right: none;
        border-bottom: 1px solid var(--lotto-grey-300);
        padding-right: 0;
        padding-bottom: 1.4rem;
    }

    .review-summary .btn-lotto-outline {
        width: 100%;
    }

    .review-card {
        grid-template-columns: 40px 1fr;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: .9rem;
    }

    .review-card-header {
        flex-direction: column;
        gap: .25rem;
    }
}

/* ---------- Sticky add-to-cart bar ---------- */

.pdp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--lotto-white);
    border-top: 1px solid var(--lotto-grey-300);
    padding: .8rem 0;
    z-index: 1030;
    transform: translateY(100%);
    transition: transform .25s ease;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, .06);
}

.pdp-sticky-bar.visible {
    transform: translateY(0);
}

.pdp-sticky-thumb {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--lotto-grey-100);
}

.pdp-sticky-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Size guide modal table ---------- */

.size-guide-table th,
.size-guide-table td {
    text-align: center;
    font-size: .85rem;
    padding: .6rem;
}

.size-guide-table th {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .03em;
    background: var(--lotto-grey-100);
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .pdp-title {
        font-size: 1.9rem;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .feature-copy {
        text-align: left;
    }
}

/* ── CUSTOMER / ACCOUNT PAGE ── */
.section {
    padding: 40px 0 64px;
}

.member-nav .list-group-item {
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}

.member-nav .list-group-item:last-child {
    border-bottom: none;
}

.member-nav a {
    color: var(--lotto-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color .15s;
}

.member-nav a:hover {
    color: var(--lotto-red);
}

.member-nav a.active-nav {
    color: var(--lotto-red);
    font-weight: 700;
    background: transparent;
}

.member-nav a.active-nav i {
    color: var(--lotto-red);
}

.card.rounded-4 {
    border-radius: 12px;
}

.min-height-70vh {
    min-height: 70vh;
}

@media (max-width: 767px) {
    .pdp-thumbs {
        flex-direction: row;
        overflow-x: auto;
    }

    .pdp-thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }

    .pdp-sizes {
        grid-template-columns: repeat(3, 1fr);
    }

    .pdp-cta-row {
        flex-wrap: wrap;
    }
}