:root {
    --ink: #111318;
    --charcoal: #252a31;
    --muted: #666f7d;
    --line: #e4e7ec;
    --soft: #f5f6f8;
    --white: #ffffff;
    --brand: #0f766e;
    --brand-dark: #0a4f49;
    --gold: #c58b22;
    --coral: #d95f45;
    --ruby: #9f2d45;
    --font-body: 'Manrope', sans-serif;
    --font-display: 'Fraunces', serif;
    --shadow: 0 12px 32px rgba(16, 17, 20, 0.08);
    --shadow-lg: 0 22px 60px rgba(16, 17, 20, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: #fbfbfc;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.55;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.container {
    max-width: 1200px;
    min-width: 0;
}

.row,
[class*="col-"] {
    min-width: 0;
}

.top-bar {
    background: #090b0f;
    color: var(--white);
    font-size: 0.74rem;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1040;
}

.top-bar-inner {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 36px;
    min-width: 0;
}

.top-bar span {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    gap: 0.4rem;
    min-width: 0;
    white-space: nowrap;
}

.top-bar i {
    color: var(--gold);
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(16, 17, 20, 0.045);
    padding: 0.68rem 0;
    top: 36px;
    transition: all 0.25s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 34px rgba(16, 17, 20, 0.08);
    padding: 0.58rem 0;
}

.navbar-brand {
    align-items: center;
    color: var(--ink) !important;
    display: flex;
    font-family: var(--font-body);
    font-size: 1.18rem;
    font-weight: 800;
    gap: 0.55rem;
    margin-right: 1rem;
}

.navbar-brand i {
    align-items: center;
    background: linear-gradient(135deg, var(--brand), var(--ink));
    border-radius: 8px;
    color: var(--white);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.brand-logo {
    border: 1px solid rgba(197, 139, 34, 0.35);
    border-radius: 8px;
    height: 42px;
    object-fit: cover;
    width: 42px;
}

.navbar-toggler {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    justify-content: center;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.nav-link {
    color: var(--charcoal) !important;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.65rem 0.85rem !important;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand) !important;
}

.nav-link::after {
    display: none;
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 0.55rem;
    margin-left: 1rem;
}

.nav-icon {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
    width: 40px;
}

button.nav-icon {
    cursor: pointer;
    padding: 0;
}

.nav-icon:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.cart-count {
    align-items: center;
    background: var(--coral);
    border-radius: 999px;
    color: var(--white);
    display: flex;
    font-size: 0.68rem;
    font-weight: 800;
    height: 18px;
    justify-content: center;
    position: absolute;
    right: -6px;
    top: -7px;
    width: 18px;
}

.search-drawer {
    align-items: flex-start;
    background: rgba(16, 17, 20, 0.46);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 7.5rem 1rem 1rem;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.22s ease;
    z-index: 1050;
}

.search-drawer.active {
    opacity: 1;
    pointer-events: auto;
}

.search-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    padding: 1.2rem;
    transform: translateY(-12px);
    transition: transform 0.22s ease;
    width: min(100%, 720px);
}

.search-drawer.active .search-panel {
    transform: translateY(0);
}

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

.search-panel-header .section-tag {
    margin-bottom: 0.45rem;
}

.search-panel-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    margin: 0;
}

.search-close {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    transition: all 0.2s ease;
    width: 42px;
}

.search-close:hover {
    background: var(--ink);
    color: var(--white);
}

.search-input-row {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 0.7rem;
    padding: 0.25rem 0.9rem;
}

.search-input-row i {
    color: var(--brand);
    font-size: 1.1rem;
}

.search-input-row input {
    background: transparent;
    border: 0;
    color: var(--ink);
    flex: 1;
    font: inherit;
    min-height: 52px;
    outline: 0;
}

.search-hint {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0.75rem 0 0;
}

.hero-section {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(8, 10, 14, 0.84), rgba(8, 10, 14, 0.48), rgba(8, 10, 14, 0.18)),
        url('ChatGPT Image May 25, 2026, 05_50_42 PM.png');
    background-position: center 42%;
    background-size: cover;
    display: flex;
    min-height: 82vh;
    padding: 8rem 0 3.8rem;
    position: relative;
}

.shop-page-hero {
    background:
        linear-gradient(90deg, rgba(8, 10, 14, 0.86), rgba(8, 10, 14, 0.36)),
        url('Admin/uploads/product-1779708994-7a5a8aaf4e14ad4d.jpg');
    background-position: center;
    background-size: cover;
    color: var(--white);
    margin-top: 96px;
    padding: 78px 0 52px;
}

.shop-page-hero.cart-hero {
    background:
        linear-gradient(90deg, rgba(16, 17, 20, 0.78), rgba(16, 17, 20, 0.32)),
        url('Admin/uploads/product-1779709010-e69ba830073d3836.jpg');
    background-position: center;
    background-size: cover;
}

.shop-page-hero h1 {
    color: var(--white);
    font-size: clamp(2.25rem, 4.6vw, 4.25rem);
    line-height: 0.96;
    max-width: 800px;
}

.shop-page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0.9rem 0 0;
    max-width: 620px;
}

.hero-overlay,
.hero-section::before,
.scroll-indicator {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag,
.section-tag {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding: 0.46rem 0.78rem;
    text-transform: uppercase;
}

.hero-title {
    color: var(--white);
    font-size: 40px;
    line-height: 0.94;
    max-width: 780px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.65;
    margin: 1rem 0 1.55rem;
    max-width: 590px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 800;
    gap: 0.45rem;
    justify-content: center;
    min-height: 44px;
}

.btn-primary {
    background: #0b6f67;
    border-color: #0b6f67;
    color: var(--white);
    padding: 0.78rem 1.05rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-primary.added {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.buy-now-btn.added {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.btn-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    padding: 0.78rem 1.05rem;
}

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

.btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
    padding: 0.78rem 1.05rem;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--ink);
}

.hero-stats {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
}

.stat-item {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    padding: 0.82rem;
}

.stat-item i {
    color: var(--gold);
    font-size: 1.3rem;
}

.stat-item h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 0;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    margin: 0;
}

.hero-shop-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    position: relative;
}

.hero-shop-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.hero-shop-content {
    padding: 1.15rem;
}

.deal-label,
.product-badge {
    background: var(--coral) !important;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.42rem 0.72rem;
    position: absolute;
    right: 0.85rem;
    text-transform: uppercase;
    top: 0.85rem;
    z-index: 3;
}

.section-tag {
    background: #e9f5f3;
    border-color: #cfe7e4;
    color: var(--brand-dark);
}

.section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.95rem);
    line-height: 1.02;
    margin-bottom: 0.7rem;
}

.section-description {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 620px;
}

.about-section,
.collections-section,
.products-section,
.premium-banner-section,
.cart-section,
.occasions-section,
.testimonials-section,
.contact-section {
    padding: 76px 0;
}

.retail-promise-section {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.retail-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promise-item {
    align-items: center;
    border-right: 1px solid var(--line);
    display: flex;
    gap: 0.85rem;
    min-height: 94px;
    padding: 1.15rem 1rem;
}

.promise-item:first-child {
    border-left: 1px solid var(--line);
}

.promise-item i {
    align-items: center;
    background: #eef8f6;
    border-radius: 8px;
    color: var(--brand);
    display: flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.promise-item h3 {
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 0.15rem;
}

.promise-item p {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.collections-section,
.products-section,
.cart-section,
.featured-shop-section,
.contact-section {
    background: var(--soft);
}

.products-section {
    background: linear-gradient(180deg, var(--white), var(--soft));
}

.product-page-section {
    padding-top: 150px !important;
}

.featured-shop-band {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 245, 243, 0.92)),
        url('Admin/uploads/product-1779706530-95b5fe1b5675cdf3.jpg');
    background-position: right center;
    background-size: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    position: relative;
}

.featured-shop-band .section-title {
    max-width: 620px;
}

.featured-shop-band::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.22) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.featured-shop-band > * {
    position: relative;
    z-index: 1;
}

.featured-shop-band .section-description {
    margin-left: 0;
}

.featured-shop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    min-width: 0;
}

.premium-banner-section {
    background: var(--white);
}

.premium-banner {
    align-items: flex-end;
    background: var(--ink);
    border-radius: 8px;
    display: grid;
    min-height: 430px;
    overflow: hidden;
    position: relative;
}

.premium-banner img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.premium-banner::after {
    background: linear-gradient(90deg, rgba(8, 10, 14, 0.88), rgba(8, 10, 14, 0.44), rgba(8, 10, 14, 0.08));
    content: "";
    inset: 0;
    position: absolute;
}

.premium-banner-content {
    max-width: 560px;
    padding: clamp(1.4rem, 5vw, 3rem);
    position: relative;
    z-index: 1;
}

.premium-banner-content .section-tag {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.premium-banner-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4.4vw, 4.1rem);
    line-height: 0.98;
    margin-bottom: 0.9rem;
}

.premium-banner-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.promo-tile-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.promo-tile {
    align-content: end;
    background: var(--ink);
    border-radius: 8px;
    color: var(--white);
    display: grid;
    min-height: 310px;
    overflow: hidden;
    padding: 1.2rem;
    position: relative;
}

.promo-tile img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transition: transform 0.35s ease;
    width: 100%;
}

.promo-tile::after {
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.05), rgba(8, 10, 14, 0.76));
    content: "";
    inset: 0;
    position: absolute;
}

.promo-tile:hover img {
    transform: scale(1.04);
}

.promo-tile span,
.promo-tile h3,
.promo-tile p {
    position: relative;
    z-index: 1;
}

.promo-tile span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promo-tile h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin: 0.35rem 0;
}

.promo-tile p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
}

.about-image-wrapper,
.collection-card,
.product-card,
.cart-card,
.checkout-card,
.occasion-card,
.testimonial-card,
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 17, 20, 0.06);
    height: 100%;
    overflow: hidden;
    transition: all 0.22s ease;
}

.collection-card:hover,
.product-card:hover,
.cart-card:hover,
.checkout-card:hover,
.occasion-card:hover,
.testimonial-card:hover {
    border-color: rgba(15, 118, 110, 0.34);
    box-shadow: 0 18px 46px rgba(16, 17, 20, 0.12);
    transform: translateY(-3px);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    aspect-ratio: 4 / 5;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-badge {
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    bottom: 1rem;
    box-shadow: var(--shadow);
    color: var(--ink);
    display: flex;
    gap: 0.55rem;
    left: 1rem;
    padding: 0.72rem 0.9rem;
    position: absolute;
}

.about-badge i,
.collection-icon,
.testimonial-rating i,
.product-rating i {
    color: var(--gold);
}

.about-content .section-description,
.contact-info .section-description {
    margin-left: 0;
}

.about-content > p:not(.section-description),
.feature-content p,
.collection-content p,
.occasion-card p,
.testimonial-author p,
.contact-item p,
.footer-brand p {
    color: var(--muted);
}

.about-features {
    display: grid;
    gap: 0.8rem;
    margin: 1.75rem 0;
}

.feature-item {
    align-items: flex-start;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 0.95rem;
    padding: 1rem;
}

.feature-icon,
.contact-icon,
.occasion-icon {
    align-items: center;
    background: #e9f5f3;
    border-radius: 8px;
    color: var(--brand);
    display: flex;
    flex: 0 0 50px;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.feature-content h4,
.collection-content h4,
.occasion-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.3rem;
}

.collection-image,
.product-image {
    background: #eef0f3;
    overflow: hidden;
    position: relative;
}

.collection-image {
    height: 260px;
}

.product-image {
    height: 280px;
}

.collection-image img,
.product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    width: 100%;
}

.collection-card:hover img,
.product-card:hover img {
    transform: scale(1.04);
}

.collection-overlay {
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(16, 17, 20, 0), rgba(16, 17, 20, 0.64));
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 1;
    padding: 1rem;
    position: absolute;
    transition: opacity 0.22s ease;
}

.collection-content,
.product-content {
    padding: 1rem;
}

.category-meta {
    color: var(--ink);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    margin-top: 0.25rem;
}

.catalogue-status {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.catalogue-status-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-status-grid span {
    align-items: center;
    border-right: 1px solid var(--line);
    color: var(--charcoal);
    display: flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 0.5rem;
    min-height: 58px;
    padding: 0.9rem 1rem;
}

.catalogue-status-grid span:first-child {
    border-left: 1px solid var(--line);
}

.catalogue-status-grid i {
    color: var(--brand);
}

.shop-toolbar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: 100%;
    min-width: 0;
}

.filter-toggle {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 8px;
    color: var(--white);
    display: none;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 0.5rem;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.72rem 0.9rem;
    width: 100%;
}

.filter-toggle .bi-chevron-down {
    transition: transform 0.2s ease;
}

.filter-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.62rem 0.82rem;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.shop-sort {
    align-items: center;
    color: var(--muted);
    display: flex;
    flex: 0 0 auto;
    gap: 0.7rem;
    font-size: 0.82rem;
    font-weight: 800;
    min-width: 0;
}

.shop-sort .form-select {
    border-color: var(--line);
    border-radius: 8px;
    min-width: 160px;
}

.product-card {
    position: relative;
}

.product-card::after {
    background: linear-gradient(90deg, var(--brand), var(--gold));
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.2s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-image::after {
    background: linear-gradient(180deg, rgba(17, 19, 24, 0), rgba(17, 19, 24, 0.1));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.product-actions {
    display: flex;
    gap: 0.55rem;
    left: 0.8rem;
    opacity: 0;
    position: absolute;
    top: 0.8rem;
    transition: opacity 0.22s ease;
    z-index: 4;
}

.product-card:hover .product-actions {
    opacity: 1;
}

#products .product-actions {
    opacity: 1;
}

.action-btn {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--ink);
    display: flex;
    height: 40px;
    justify-content: center;
    transition: all 0.2s ease;
    width: 40px;
}

.action-btn:hover {
    background: var(--ink);
    color: var(--white);
}

.action-btn.favorite-active {
    background: #fff1ec;
    border-color: #ffd8cc;
    color: var(--coral);
}

.product-content h5 {
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.28;
    margin-bottom: 0.55rem;
    min-height: 2.4rem;
}

.product-rating {
    align-items: center;
    display: flex;
    gap: 0.18rem;
    margin-bottom: 0.45rem;
}

.product-rating span {
    color: var(--muted);
    font-size: 0.74rem;
    margin-left: 0.35rem;
}

.product-category {
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.price-row {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.product-price {
    color: var(--ink);
    font-size: 1.16rem;
    font-weight: 900;
}

.old-price {
    color: #9aa0aa;
    font-size: 0.84rem;
    text-decoration: line-through;
}

.discount {
    background: #fff1ec;
    border-radius: 999px;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.2rem 0.45rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.product-meta span {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.48rem;
}

.product-cta {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
}

.product-cta .btn {
    font-size: 0.76rem;
    min-height: 40px;
    padding: 0.62rem 0.45rem;
    white-space: normal;
}

.product-qty-control {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 8px;
    color: var(--white);
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    min-height: 40px;
    overflow: hidden;
}

.product-qty-control span {
    font-size: 0.86rem;
    font-weight: 900;
    text-align: center;
}

.product-qty-btn {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--white);
    display: flex;
    font-size: 1rem;
    font-weight: 900;
    height: 100%;
    justify-content: center;
    transition: background 0.2s ease;
}

.product-qty-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item.hide {
    display: none;
}

.reveal {
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.55s ease;
    transform: translateY(28px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-card,
.checkout-card {
    padding: 1.4rem;
}

.cart-card-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.cart-card-header h3,
.checkout-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 900;
    margin: 0;
}

.clear-cart-btn {
    background: #fff1ec;
    border: 1px solid #ffd8cc;
    border-radius: 8px;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.48rem 0.72rem;
    transition: all 0.2s ease;
}

.clear-cart-btn:hover {
    background: var(--coral);
    color: var(--white);
}

.cart-empty {
    align-items: center;
    color: var(--muted);
    display: grid;
    justify-items: center;
    min-height: 300px;
    padding: 2rem;
    text-align: center;
}

.cart-empty i {
    color: #b9bec8;
    font-size: 3rem;
    margin-bottom: 0.6rem;
}

.cart-empty h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.cart-items {
    display: grid;
    gap: 0.85rem;
}

.cart-item {
    align-items: center;
    animation: cartItemIn 0.24s ease both;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 78px 1fr auto auto;
    padding: 0.8rem;
    transition: all 0.2s ease;
}

.cart-item:hover {
    background: var(--white);
    box-shadow: 0 12px 28px rgba(16, 17, 20, 0.08);
}

@keyframes cartItemIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cart-item img {
    aspect-ratio: 1;
    border-radius: 8px;
    height: 78px;
    object-fit: cover;
    width: 78px;
}

.cart-item-info h4 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.cart-item-info strong {
    font-size: 0.92rem;
}

.qty-control {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.qty-control span {
    font-weight: 900;
    min-width: 34px;
    text-align: center;
}

.qty-btn,
.remove-item {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ink);
    display: inline-flex;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    transition: all 0.2s ease;
    width: 36px;
}

.qty-btn:hover {
    background: var(--ink);
    color: var(--white);
}

.remove-item {
    background: #fff1ec;
    border-radius: 8px;
    color: var(--coral);
}

.remove-item:hover {
    background: var(--coral);
    color: var(--white);
}

.summary-line {
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.summary-line strong {
    color: var(--ink);
}

.summary-line.total {
    border-bottom: 0;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 900;
}

.checkout-form {
    border-top: 1px solid var(--line);
    margin-top: 0.4rem;
    padding-top: 1.1rem;
}

.checkout-form label {
    color: var(--charcoal);
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.payment-box {
    background: linear-gradient(135deg, #effaf8, #ffffff);
    border: 1px solid #cfe7e4;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
    padding: 1rem;
}

.payment-label {
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-box h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0.2rem 0;
}

.payment-box p {
    color: var(--muted);
    font-size: 0.84rem;
    margin: 0;
}

.qr-image {
    align-items: center;
    background:
        linear-gradient(45deg, #101114 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(45deg, transparent 75%, #101114 75%) 0 0 / 18px 18px,
        var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 210px;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.qr-image img {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: 210px;
    object-fit: contain;
    width: min(100%, 210px);
    z-index: 2;
}

.qr-image span {
    background: rgba(255, 255, 255, 0.92);
    border: 1px dashed #b9bec8;
    border-radius: 8px;
    color: var(--muted);
    display: none;
    font-size: 0.9rem;
    font-weight: 900;
    padding: 1rem;
    position: absolute;
    text-align: center;
}

.qr-image.qr-missing span {
    display: block;
}

.upi-row {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 0.7rem;
    justify-content: space-between;
    padding: 0.7rem;
}

.upi-row span {
    color: var(--ink);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.upi-row button {
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    color: var(--white);
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.upi-row button:hover {
    background: var(--brand);
}

.occasions-section {
    background: var(--ink);
    color: var(--white);
}

.occasions-section .section-title {
    color: var(--white);
}

.occasions-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.occasion-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    padding: 1.5rem;
}

.occasion-card h4 {
    color: var(--white);
}

.occasion-card p {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-card {
    padding: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 0.8rem;
    padding-top: 1rem;
}

.testimonial-author img {
    border-radius: 8px;
    height: 54px;
    object-fit: cover;
    width: 54px;
}

.testimonial-author h5,
.contact-item h5 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin: 1.8rem 0;
}

.contact-item {
    align-items: flex-start;
    display: flex;
    gap: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand);
    display: flex;
    height: 42px;
    justify-content: center;
    transition: all 0.2s ease;
    width: 42px;
}

.social-link:hover {
    background: var(--brand);
    color: var(--white);
}

.contact-form-wrapper {
    padding: 1.6rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    color: var(--charcoal);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.form-control {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 0.85rem 0.9rem;
}

.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-success {
    background: var(--brand);
    border: 0;
    border-radius: 8px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

textarea.form-control {
    resize: vertical;
}

.footer {
    background: var(--ink);
    color: var(--white);
    padding: 58px 0 24px;
}

.footer-brand h3 {
    align-items: center;
    color: var(--white);
    display: flex;
    font-size: 1.45rem;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.footer-brand i {
    color: var(--gold);
}

.footer-logo {
    border-radius: 8px;
    height: 38px;
    object-fit: cover;
    width: 38px;
}

.footer-links h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a,
.footer-bottom p,
.footer-brand p {
    color: rgba(255, 255, 255, 0.66);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom i {
    color: var(--coral);
}

.scroll-to-top {
    align-items: center;
    background: var(--brand);
    border: 0;
    border-radius: 8px;
    bottom: 1.4rem;
    box-shadow: var(--shadow);
    color: var(--white);
    display: flex;
    height: 46px;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: 1.4rem;
    transition: all 0.2s ease;
    visibility: hidden;
    width: 46px;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.4rem;
}

.modal-title {
    font-size: 1.4rem;
}

.modal-body {
    padding: 1.4rem;
}

@media (max-width: 991px) {
    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-inner span:nth-child(n+2) {
        display: none;
    }

    .navbar > .container {
        flex-wrap: wrap;
    }

    .navbar-brand {
        flex: 1 1 auto;
        margin-right: auto;
        order: 1;
    }

    .nav-actions {
        flex: 0 0 auto;
        margin-left: 0;
        order: 2;
    }

    .navbar-toggler {
        flex: 0 0 auto;
        order: 3;
    }

    .navbar-collapse {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        flex-basis: 100%;
        margin-top: 0.8rem;
        min-width: 0;
        order: 4;
        padding: 0.8rem;
    }

    .navbar-nav,
    .nav-actions {
        min-width: 0;
    }

    .hero-section {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .retail-promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promise-item:nth-child(odd) {
        border-left: 1px solid var(--line);
    }

    .catalogue-status-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-status-grid span,
    .catalogue-status-grid span:first-child {
        border-left: 1px solid var(--line);
    }

    .hero-shop-card {
        max-width: 520px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-banner {
        min-height: 380px;
    }

    .promo-tile-grid {
        grid-template-columns: 1fr;
    }

    .promo-tile {
        min-height: 260px;
    }

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

    .featured-shop-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
.container {
        max-width: 100%;
        overflow-x: clip;
        padding-left: 1rem;
        padding-right: 1rem;
    }

.row {
        --bs-gutter-x: 1rem;
    }

.about-section,
.collections-section,
.products-section,
.premium-banner-section,
.cart-section,
.occasions-section,
.testimonials-section,
.contact-section {
        padding: 68px 0;
    }

    .hero-buttons {
        display: grid;
    }

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

    .retail-promise-grid {
        grid-template-columns: 1fr;
    }

    .promise-item,
    .promise-item:first-child,
    .promise-item:nth-child(odd) {
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
        min-height: 76px;
    }

    .shop-page-hero {
        margin-top: 88px;
        padding: 76px 0 48px;
    }

    .filter-tabs {
        background: var(--soft);
        display: none;
        flex-wrap: wrap;
        max-width: 100%;
        overflow: visible;
        padding: 0;
    }

    .filter-tabs.open {
        display: grid;
        gap: 0.55rem;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .filter-btn {
        justify-content: center;
        width: 100%;
        white-space: nowrap;
    }

    .filter-toggle {
        display: flex;
    }

    .shop-sort {
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .shop-sort .form-select {
        flex: 1 1 170px;
        min-width: 0;
    }

    .search-drawer {
        padding-top: 6.4rem;
    }

    .search-panel {
        padding: 1rem;
    }

    .product-image {
        height: 250px;
    }

    .cart-item {
        align-items: flex-start;
        grid-template-columns: 64px 1fr;
    }

    .cart-item img {
        height: 64px;
        width: 64px;
    }

    .qty-control,
    .remove-item {
        grid-column: 2;
        justify-self: start;
    }

    .upi-row {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.72rem;
    }

    .top-bar-inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .top-bar span {
        justify-content: center;
        max-width: 100%;
        overflow-wrap: anywhere;
        text-align: center;
        white-space: normal;
    }

    .navbar > .container {
        gap: 0.45rem;
    }

    .navbar-brand {
        font-size: 1rem;
        min-width: 0;
        flex: 1 1 0;
    }

    .navbar-brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .navbar-brand i {
        height: 34px;
        width: 34px;
    }

    .brand-logo {
        height: 36px;
        width: 36px;
    }

    .navbar-toggler,
    .nav-icon {
        height: 38px;
        width: 38px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3.15rem);
        overflow-wrap: anywhere;
    }

    .hero-description {
        font-size: 0.94rem;
    }

    .hero-section {
        padding-top: 7.2rem;
    }

    .hero-shop-card,
    .featured-shop-band,
    .cart-card,
    .checkout-card,
    .contact-form-wrapper,
    .testimonial-card,
    .occasion-card,
    .collection-card,
    .product-card {
        max-width: 100%;
    }

    .catalogue-status-grid span {
        overflow-wrap: anywhere;
    }

    .featured-shop-actions {
        display: grid;
    }

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

    .premium-banner-content {
        padding: 1.2rem;
    }

    .premium-banner::after {
        background: linear-gradient(180deg, rgba(8, 10, 14, 0.16), rgba(8, 10, 14, 0.86));
    }
}

@media (max-width: 768px) {
    nav,
    section,
    footer,
    .search-drawer,
    .modal {
        max-width: 100%;
        overflow-x: clip;
    }

    .shop-toolbar,
    .filter-tabs,
    #productsGrid,
    .product-item,
    .cart-item,
    .retail-promise-grid,
    .catalogue-status-grid,
    .featured-shop-band {
        max-width: 100%;
        min-width: 0;
    }

    .filter-tabs {
        width: 100%;
    }
}
.whatsapp {
    position: fixed;
    bottom: 28px;
    left: 20px;
    z-index: 3;
}

/* SEO/mobile polish: keep content stable, readable, and tappable on narrow screens. */
img {
    height: auto;
}

.nav-link,
.filter-btn,
.btn,
.nav-icon,
.action-btn {
    touch-action: manipulation;
}

@media (max-width: 991px) {
    .navbar-collapse {
        max-height: calc(100vh - 112px);
        overflow-y: auto;
    }

    .nav-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .top-bar {
        min-height: 34px;
    }

    .navbar {
        top: 34px;
    }

    .hero-section {
        background-position: center;
    }

    .section-title,
    .shop-page-hero h1 {
        overflow-wrap: anywhere;
    }

    .shop-toolbar {
        gap: 0.85rem;
    }

    .shop-sort {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-page-section {
        padding-top: 126px !important;
    }

    .shop-sort .form-select,
    .filter-btn,
    .product-cta .btn {
        min-height: 44px;
    }

    .product-card,
    .collection-card,
    .cart-card,
    .checkout-card {
        border-radius: 8px;
    }

    .product-content h5,
    .cart-item-info h4 {
        line-height: 1.25;
    }

    .footer-logo {
        max-width: 64px;
    }

    .modal-dialog {
        margin: 0.75rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .product-page-section {
        padding-top: 118px !important;
    }

    .hero-section {
        padding-bottom: 3.5rem;
    }

    .shop-page-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .product-image {
        height: 230px;
    }

    .cart-item {
        gap: 0.75rem;
    }

    .whatsapp {
        bottom: 18px;
        left: 14px;
    }

    .whatsapp img {
        width: 44px;
    }
}
