:root {
    --premium-bg: var(--theme-bg, var(--app-color-bg, #eefcf5));
    --premium-surface: color-mix(in srgb, var(--theme-card, #ffffff) 78%, transparent);
    --premium-surface-strong: color-mix(in srgb, var(--theme-card, #ffffff) 92%, white);
    --premium-card: var(--theme-card, #ffffff);
    --premium-text: var(--theme-text, var(--app-color-text, #173c3a));
    --premium-muted: var(--theme-muted, var(--app-color-muted, #67847d));
    --premium-border: var(--theme-border, color-mix(in srgb, var(--app-color-border, #cfeee1) 82%, white));
    --premium-primary: var(--theme-primary, var(--app-color-primary, #48d597));
    --premium-primary-dark: var(--theme-primary-deep, var(--app-color-primary-hover, #2fbd7c));
    --premium-accent: var(--theme-accent, color-mix(in srgb, var(--app-color-secondary, #173c3a) 72%, var(--app-color-primary, #48d597) 28%));
    --premium-accent-soft: color-mix(in srgb, var(--premium-accent) 12%, white);
    --premium-success: color-mix(in srgb, var(--premium-primary-dark) 72%, #1d7f5f 28%);
    --premium-shadow: 0 18px 60px color-mix(in srgb, var(--premium-primary) 14%, transparent);
    --premium-radius: 24px;
    --premium-radius-sm: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hind Siliguri", sans-serif;
    color: var(--premium-text);
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--premium-primary) 12%, transparent), transparent 26%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--premium-accent) 10%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--premium-bg) 86%, white) 0%, var(--premium-bg) 54%, color-mix(in srgb, var(--premium-bg) 74%, white) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title-name,
.cat_head,
.premium-inline-link,
.hero-primary-btn,
.hero-secondary-btn {
    font-family: "Manrope", "Hind Siliguri", sans-serif;
}

a,
button {
    transition: all 0.28s ease;
}

#content {
    padding-top: 0;
}

header {
    box-shadow: 0 14px 40px rgba(38, 22, 9, 0.10);
    backdrop-filter: blur(14px);
}

.premium-topbar {
    background: linear-gradient(90deg, #17313e, #204658 52%, #b76e3b 115%);
    color: #fff;
    padding: 10px 0;
}

.premium-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.premium-topbar-copy {
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-topbar-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.premium-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-topbar-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-topbar-links a {
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.premium-topbar-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.main-header {
    background: rgba(248, 241, 232, 0.86);
}

.logo-area {
    padding: 16px 0;
}

.logo-header {
    align-items: center;
    gap: 20px;
}

.main-logo img,
.menu-logo img,
.logo-image img,
.footer-about img {
    object-fit: contain;
}

.main-search {
    width: 100%;
}

.header-search-box {
    position: relative;
    max-width: 420px;
}

.header-center-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-center-nav > ul {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-center-nav > ul > li {
    position: relative;
}

.header-center-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(58, 42, 27, 0.08);
    background: rgba(255, 255, 255, 0.8);
    color: var(--premium-text);
    font-family: "Manrope", "Hind Siliguri", sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(42, 26, 12, 0.05);
}

.header-center-nav > ul > li > a:hover {
    background: var(--theme-primary-soft);
    color: var(--theme-accent);
}

.header-category-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 240px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border-radius: 20px;
    border: 1px solid var(--theme-border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(177, 59, 72, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.24s ease;
    z-index: 20;
}

.header-category-dropdown:hover .header-category-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-category-menu li a {
    display: block;
    padding: 10px 14px;
    border-radius: 14px;
    color: var(--theme-text);
    font-weight: 600;
}

.header-category-menu li a:hover {
    background: var(--theme-primary-soft);
}

.main-search form,
.mobile-search form {
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid var(--premium-border);
    border-radius: 999px;
    padding: 8px 10px 8px 18px;
    box-shadow: 0 10px 30px rgba(43, 26, 12, 0.06);
}

.main-search form input,
.mobile-search form input {
    background: transparent;
    color: var(--premium-text);
    font-size: 15px;
    width: 100%;
    border: 0;
    outline: 0;
}

.main-search form button,
.mobile-search form button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
    color: #fff;
}

.main-search form button:hover,
.mobile-search form button:hover {
    transform: scale(1.04);
}

.header-search-box .search_result,
.mobile-search .search_result {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 25;
}

.header-list-items ul {
    gap: 10px;
}

.header-list-items ul li > a,
.header-list-items ul li > p > a {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--premium-border);
    border-radius: 999px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(42, 26, 12, 0.05);
}

.track_btn a {
    color: var(--premium-accent);
}

.cart-dialog > a {
    background: linear-gradient(135deg, #fff, #fff8f0);
}

.cshort-summary {
    border-radius: 22px;
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
    background: rgba(255, 250, 243, 0.98);
}

.go_cart {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
    color: #fff !important;
}

.menu-area {
    background: transparent;
    border-top: 1px solid rgba(58, 42, 27, 0.08);
}

.catagory_menu {
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(58, 42, 27, 0.08);
    border-radius: 999px;
    padding: 8px 18px;
    box-shadow: 0 10px 30px rgba(42, 26, 12, 0.05);
}

.catagory_menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.catagory_menu ul li a {
    color: var(--premium-text);
    font-weight: 600;
    font-size: 14px;
}

.catagory_menu ul li a:hover,
.premium-inline-link:hover {
    color: var(--premium-primary-dark);
}

.menu-area .Cat_menu,
.child_menu {
    border-radius: 20px;
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
    overflow: hidden;
}

.hero-premium-section {
    padding: 28px 0 12px;
}

.hero-product-showcase-shell {
    padding: 24px 0 8px;
}

.hero-product-showcase-head {
    max-width: 620px;
    margin: 0 auto 28px;
    text-align: center;
}

.hero-product-showcase-head h1 {
    margin: 16px 0 10px;
    font-size: 54px;
    line-height: 1.06;
    font-weight: 800;
}

.hero-product-showcase-head p {
    margin: 0;
    color: var(--premium-muted);
    font-size: 18px;
}

.hero-product-showcase-wrap {
    position: relative;
    padding: 16px 0 28px;
}

.hero-product-showcase .owl-stage {
    display: flex;
    align-items: center;
}

.hero-product-showcase .owl-stage-outer {
    overflow: visible;
}

.hero-product-showcase .owl-nav {
    margin: 0;
}

.hero-product-showcase .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero-product-showcase .owl-nav .owl-prev {
    left: -18px;
}

.hero-product-showcase .owl-nav .owl-next {
    right: -18px;
}

.hero-showcase-item {
    padding: 34px 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.hero-showcase-link {
    position: relative;
    display: block;
}

.hero-showcase-image {
    height: 420px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(33, 20, 11, 0.12);
}

.hero-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.hero-showcase-plus {
    position: absolute;
    left: 20px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    color: var(--theme-text);
    box-shadow: 0 14px 30px rgba(33, 20, 11, 0.14);
    font-size: 22px;
}

.hero-product-showcase .owl-item {
    opacity: 0.62;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero-product-showcase .owl-item.center {
    opacity: 1;
    z-index: 2;
}

.hero-product-showcase .owl-item.center .hero-showcase-item {
    transform: scale(1.03);
}

.hero-product-showcase .owl-item:not(.center) .hero-showcase-image {
    height: 350px;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr 0.75fr;
    gap: 22px;
    align-items: stretch;
}

.hero-premium-copy,
.hero-premium-visual,
.hero-premium-sidepanel,
.premium-category-card,
.footer-feature-card,
.hero-sidepanel-card,
.premium-marquee-item {
    border-radius: var(--premium-radius);
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
}

.hero-premium-copy {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(247, 236, 222, 0.88));
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.hero-premium-copy::before {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(183, 110, 59, 0.18), transparent 70%);
}

.hero-eyebrow,
.section-kicker,
.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(23, 49, 62, 0.08);
    color: var(--premium-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-premium-copy h1 {
    margin-top: 18px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
}

.hero-premium-copy p {
    margin-top: 18px;
    color: var(--premium-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 560px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-primary-btn,
.hero-secondary-btn,
.premium-view-more,
.premium-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 52px;
    padding: 0 24px;
    font-weight: 700;
}

.hero-primary-btn,
.premium-view-more {
    color: #fff !important;
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
    box-shadow: 0 14px 28px rgba(122, 67, 32, 0.22);
}

.hero-primary-btn:hover,
.premium-view-more:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.hero-secondary-btn {
    color: var(--premium-accent) !important;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--premium-border);
}

.hero-secondary-btn:hover {
    transform: translateY(-2px);
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.hero-stat-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(58, 42, 27, 0.08);
    padding: 18px;
}

.hero-stat-card strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-stat-card span {
    display: block;
    margin-top: 6px;
    color: var(--premium-muted);
    font-size: 13px;
}

.hero-premium-visual {
    padding: 18px;
    background: linear-gradient(180deg, rgba(23, 49, 62, 0.92), rgba(41, 70, 82, 0.92));
    position: relative;
}

.hero-premium-slider,
.premium-slider-item,
.premium-slider-item img {
    height: 100%;
    min-height: 540px;
    border-radius: calc(var(--premium-radius) - 8px);
}

.premium-slider-item img {
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    width: 250px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 18px;
}

.hero-floating-card span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.84;
    margin-bottom: 8px;
}

.hero-floating-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.6;
}

.hero-floating-card-top {
    top: 32px;
    right: 30px;
}

.hero-floating-card-bottom {
    left: 30px;
    bottom: 28px;
}

.hero-premium-sidepanel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-sidepanel-card {
    background: rgba(255, 250, 243, 0.92);
    padding: 28px;
}

.hero-sidepanel-card h3 {
    margin: 18px 0 16px;
    font-size: 28px;
    line-height: 1.3;
}

.hero-sidepanel-card ul {
    display: grid;
    gap: 12px;
}

.hero-sidepanel-card ul li {
    display: block;
    position: relative;
    color: var(--premium-muted);
    padding-left: 18px;
}

.hero-sidepanel-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--premium-primary);
}

.hero-category-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    margin-top: 12px;
    border: 1px solid rgba(58, 42, 27, 0.08);
}

.hero-category-chip:hover {
    transform: translateX(4px);
}

.hero-category-chip img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
}

.hero-category-chip span {
    font-weight: 600;
}

.homeproduct {
    padding: 42px 0;
}

.premium-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.premium-section-heading h2 {
    margin: 14px 0 10px;
    font-size: 40px;
    line-height: 1.12;
}

.premium-section-heading p {
    color: var(--premium-muted);
    font-size: 16px;
    max-width: 680px;
}

.premium-topcategory-grid {
    gap: 18px;
}

.premium-category-carousel .owl-stage {
    display: flex;
}

.premium-category-carousel .owl-stage-outer {
    padding: 8px 0;
}

.premium-category-carousel .owl-item {
    display: flex;
    height: auto;
}

.premium-category-carousel .owl-item .premium-category-card {
    width: 100%;
}

.premium-category-card {
    background: rgba(255, 255, 255, 0.74);
    padding: 18px;
    display: block;
    overflow: hidden;
    height: 100%;
}

.premium-category-card .cat_img {
    height: 170px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(183, 110, 59, 0.14), rgba(23, 49, 62, 0.08));
}

.premium-category-card .cat_img img {
    width: 100%;
    object-fit: cover;
}

.premium-category-card .cat_name {
    padding-top: 16px;
}

.premium-category-card .cat_name span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.premium-category-card .cat_name small {
    color: var(--premium-muted);
    font-size: 13px;
}

.premium-category-card:hover,
.product_item:hover,
.footer-feature-card:hover,
.premium-marquee-item:hover {
    transform: translateY(-6px);
}

.premium-deal-section {
    position: relative;
}

.deal-heading {
    background: linear-gradient(135deg, rgba(23, 49, 62, 0.96), rgba(31, 60, 75, 0.94));
    border-radius: var(--premium-radius);
    padding: 28px 32px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.deal-heading .section-kicker,
.deal-heading h2,
.deal-heading p,
.deal-timer-wrap span,
.deal-timer-wrap {
    color: #fff;
}

.deal-heading .section-kicker {
    background: rgba(255, 255, 255, 0.10);
}

.deal-timer-wrap {
    min-width: 260px;
    text-align: right;
}

.deal-timer-wrap span {
    display: block;
    margin-bottom: 10px;
    opacity: 0.78;
}

.offer_timer {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.offer_timer .syotimer-cell {
    min-width: 64px;
    padding: 10px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.offer_timer .syotimer-cell__value {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.offer_timer .syotimer-cell__unit {
    color: rgba(255, 255, 255, 0.80);
    font-size: 12px;
    text-transform: uppercase;
}

.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.premium-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.premium-pagination-wrap nav {
    width: 100%;
}

.premium-pagination-wrap .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 16px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(58, 42, 27, 0.08);
    box-shadow: 0 18px 38px rgba(177, 59, 72, 0.08);
}

.premium-pagination-wrap .page-item .page-link {
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--theme-border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--theme-text);
    box-shadow: 0 10px 24px rgba(177, 59, 72, 0.08);
    padding: 0 16px;
    font-weight: 700;
}

.premium-pagination-wrap .page-item.active .page-link {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep));
    border-color: transparent;
    color: #fff;
}

.premium-pagination-wrap .page-item:first-child .page-link,
.premium-pagination-wrap .page-item:last-child .page-link {
    min-width: auto;
}

.premium-pagination-wrap .page-item.disabled .page-link {
    opacity: 0.55;
}

.premium-product-item {
    margin-bottom: 0;
    border-radius: 24px;
    border: 1px solid rgba(58, 42, 27, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(33, 20, 11, 0.08);
    overflow: hidden;
}

.product_item_inner {
    background: transparent;
    border: 0;
    padding: 16px 16px 10px;
}

.pro_img {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(183, 110, 59, 0.12), rgba(23, 49, 62, 0.07));
}

.pro_img img {
    width: 100%;
    object-fit: cover;
}

.pro_des {
    padding-top: 16px;
}

.pro_name a {
    color: var(--premium-text);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 46px;
}

.pro_price p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--premium-primary-dark);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.pro_price del {
    color: #8d7e70;
    font-size: 14px;
    font-weight: 600;
}

.sale-badge-box {
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
    box-shadow: 0 14px 30px rgba(122, 67, 32, 0.22);
}

.product_item_inner span.sale-badge-text,
.product_item_inner span.sale-badge-text p {
    color: #fff;
}

.pro_btn {
    padding: 0 16px 18px;
}

.pro_btn form,
.pro_btn .cart_btn {
    width: 100%;
}

.pro_btn button,
.pro_btn .cart_btn a {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--premium-accent), #254758);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.pro_btn button:hover,
.pro_btn .cart_btn a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.premium-section-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.premium-listing-page {
    padding: 26px 0 46px;
}

.premium-listing-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    padding: 28px 30px;
    margin-bottom: 24px;
    border-radius: 30px;
    border: 1px solid rgba(58, 42, 27, 0.08);
    background: linear-gradient(145deg, rgba(255, 250, 244, 0.94), rgba(255, 239, 233, 0.84));
    box-shadow: 0 22px 50px rgba(177, 59, 72, 0.08);
}

.premium-listing-copy h1 {
    margin: 14px 0 10px;
    font-size: 46px;
    line-height: 1.08;
}

.premium-listing-copy p {
    margin: 0;
    max-width: 620px;
    color: var(--theme-muted);
    font-size: 16px;
}

.premium-listing-meta {
    min-width: 280px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(58, 42, 27, 0.08);
}

.premium-sorting-shell {
    padding: 18px 22px;
    border-radius: 24px;
    border: 1px solid rgba(58, 42, 27, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 34px rgba(177, 59, 72, 0.06);
}

.premium-listing-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.premium-page-sort {
    margin-left: auto;
}

.premium-page-sort .sort {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(58, 42, 27, 0.08);
    padding: 0 18px;
    box-shadow: none;
}

.premium-listing-grid {
    margin-top: 26px;
}

.premium-listing-pagination {
    margin-top: 30px;
}

.premium-details-shell {
    padding: 24px !important;
    border-radius: 32px !important;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 239, 233, 0.84)) !important;
}

.premium-details-gallery {
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(58, 42, 27, 0.08);
    box-shadow: 0 18px 46px rgba(177, 59, 72, 0.08);
    margin-right: auto;
}

.premium-details-gallery .dimage_item {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff7f4, #fff1eb);
}

.premium-zoom-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: zoom-in;
}

.premium-details-gallery .dimage_item img {
    width: 100%;
    height: 560px;
    object-fit: contain;
    transition: transform 0.16s ease;
}

.premium-image-preview-trigger {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--theme-text);
    box-shadow: 0 14px 28px rgba(33, 20, 11, 0.14);
}

.premium-image-preview-modal .modal-content {
    background: rgba(20, 18, 18, 0.96);
    border: 0;
    border-radius: 28px;
    overflow: hidden;
}

.premium-preview-body {
    padding: 20px;
}

.premium-preview-body img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 20px;
}

.premium-preview-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    filter: invert(1);
}

.premium-indicator-thumb {
    margin-top: 18px;
}

.premium-indicator-thumb .indicator-item {
    padding: 6px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(58, 42, 27, 0.08);
}

.premium-indicator-thumb .indicator-item img {
    border-radius: 14px;
    height: 88px;
    object-fit: cover;
}

.premium-details-card {
    border-radius: 28px !important;
    padding: 26px !important;
}

.premium-details-breadcrumb {
    margin-bottom: 18px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.premium-product-summary .name {
    font-size: 32px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}

.premium-details-shortcopy {
    margin: 18px 0 10px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 247, 244, 0.9);
    border: 1px solid rgba(58, 42, 27, 0.08);
}

.premium-details-shortcopy p {
    margin: 0;
    color: var(--theme-muted);
    line-height: 1.75;
}

.pro-color,
.pro-size {
    margin-top: 14px;
}

.color_inner,
.size_inner {
    display: block;
}

.color_inner p,
.size_inner p {
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--theme-text);
}

.color_inner .selector,
.size_inner .selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color_inner .selector-item {
    min-width: 34px;
}

.size_inner .selector-item {
    min-width: 54px;
}

.size_inner .selector-item label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #fff5ef) !important;
    border: 1px solid rgba(177, 59, 72, 0.18) !important;
    box-shadow: 0 6px 16px rgba(58, 42, 27, 0.08);
    color: var(--theme-text) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.color_inner .selector-item label {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--swatch-color) !important;
    border: 2px solid rgba(58, 42, 27, 0.14);
    box-shadow: 0 3px 10px rgba(58, 42, 27, 0.10);
    overflow: visible;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.color_inner .selector-item label span {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.14);
}

.color_inner .selector-item label span img {
    display: block;
    width: 9px !important;
    height: 9px !important;
    opacity: 0;
}

.color_inner .selector-item input[type="radio"]:checked + label {
    background: var(--swatch-color) !important;
    border-color: var(--theme-primary);
    box-shadow: 0 4px 12px rgba(58, 42, 27, 0.14);
    transform: scale(1.14);
}

.color_inner .selector-item input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dotted rgba(117, 35, 35, 0.95);
    pointer-events: none;
}

.color_inner .selector-item_radio:checked + .selector-item_label,
.color_inner .selector-item_label:hover {
    background: var(--swatch-color) !important;
    border-color: rgba(207, 77, 77, 0.32) !important;
    cursor: pointer;
}

.size_inner .selector-item_label:hover {
    transform: translateY(-1px);
    border-color: rgba(177, 59, 72, 0.34) !important;
    box-shadow: 0 10px 20px rgba(177, 59, 72, 0.12) !important;
    color: var(--theme-primary-deep) !important;
    cursor: pointer;
}

.size_inner .selector-item_radio:checked + .selector-item_label {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep)) !important;
    border-color: transparent !important;
    box-shadow: 0 12px 24px rgba(177, 59, 72, 0.24) !important;
    color: #fff !important;
    transform: translateY(-1px) scale(1.04);
}

.size_inner .selector-item_radio:checked + .selector-item_label::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 999px;
    border: 1px dashed rgba(117, 35, 35, 0.42);
    pointer-events: none;
}

.premium-buy-row {
    row-gap: 16px;
    margin-top: 10px;
}

.premium-buy-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.premium-buy-bottomline {
    display: block;
}

.premium-cta-row {
    gap: 12px;
    margin-top: 6px;
}

.premium-cta-row .btn {
    min-height: 54px;
    border-radius: 999px !important;
    font-weight: 700;
}

.premium-buy-topline .quantity {
    position: relative;
    display: block;
    margin-top: 0 !important;
    flex: 0 0 130px;
    width: 130px;
    min-width: 130px;
    height: 46px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(58, 42, 27, 0.18);
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(58, 42, 27, 0.08);
}

.premium-buy-topline .quantity input {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    padding: 0 40px;
    border: 0 !important;
    background: transparent !important;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: none !important;
}

.premium-buy-topline .quantity .minus,
.premium-buy-topline .quantity .plus {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 38px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7f4 !important;
    color: var(--theme-primary-deep) !important;
    box-shadow: none !important;
    border: 0 !important;
    cursor: pointer;
    user-select: none;
}

.premium-buy-topline .quantity .minus {
    left: 0;
    border-right: 1px solid rgba(58, 42, 27, 0.12) !important;
    font-size: 28px;
    line-height: 1;
}

.premium-buy-topline .quantity .plus {
    right: 0;
    border-left: 1px solid rgba(58, 42, 27, 0.12) !important;
    font-size: 24px;
    line-height: 1;
}

.premium-buy-topline .add_cart_btn {
    width: calc(100% - 142px) !important;
    flex: 1 1 auto;
    margin-top: 0 !important;
    margin-left: 0 !important;
    min-height: 46px;
    height: 46px;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 18px !important;
    white-space: nowrap;
}

.premium-buy-bottomline .premium-buy-now-btn {
    width: 100% !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    min-height: 48px;
    height: 48px;
    border-radius: 999px !important;
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    animation: premiumBuyNowGlow 2.8s ease-in-out infinite !important;
}

.premium-buy-bottomline .premium-buy-now-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -36%;
    width: 32%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    transform: skewX(-18deg);
    animation: premiumBuyNowShine 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes premiumBuyNowGlow {
    0%, 100% {
        box-shadow: 0 10px 22px rgba(237, 20, 91, 0.18) !important;
        filter: brightness(1);
    }
    45% {
        box-shadow: 0 12px 26px rgba(237, 20, 91, 0.28) !important;
        filter: brightness(1.06);
    }
    55% {
        box-shadow: 0 13px 28px rgba(237, 20, 91, 0.30) !important;
        filter: brightness(1.08);
    }
}

@keyframes premiumBuyNowShine {
    0%, 55%, 100% {
        left: -36%;
        opacity: 0;
    }
    20% {
        opacity: 0.95;
    }
    38% {
        left: 112%;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-buy-bottomline .premium-buy-now-btn {
        animation: none !important;
    }

    .premium-buy-bottomline .premium-buy-now-btn::after {
        animation: none !important;
    }
}

.premium-callout-block {
    margin-top: 14px !important;
}

.premium-delivery-box .alert {
    border-radius: 20px;
    border: 1px solid rgba(58, 42, 27, 0.08);
    background: linear-gradient(180deg, #fff7f4, #fff1eb);
}

.premium-desc-nav-wrapper {
    margin-top: 10px;
}

.premium-desc-nav {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(58, 42, 27, 0.08);
    box-shadow: 0 16px 38px rgba(177, 59, 72, 0.06);
}

.premium-content-card {
    border-radius: 28px !important;
    padding: 26px !important;
}

.premium-content-card h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.premium-content-card p,
.premium-content-card li {
    color: var(--theme-muted);
    line-height: 1.8;
}

.premium-video-card iframe {
    border-radius: 22px;
}

.premium-details-accordion {
    display: grid;
    gap: 16px;
}

.premium-accordion-item {
    border: 1px solid rgba(58, 42, 27, 0.08) !important;
    border-radius: 24px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px rgba(177, 59, 72, 0.06);
}

.premium-accordion-button {
    min-height: 72px;
    font-family: "Manrope", "Hind Siliguri", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-text) !important;
    background: linear-gradient(180deg, #fffaf7, #fff2ee) !important;
    box-shadow: none !important;
}

.premium-accordion-button:not(.collapsed) {
    color: var(--theme-primary-deep) !important;
}

.premium-accordion-button::after {
    background-size: 16px;
}

.premium-accordion-body {
    padding: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.premium-spec-grid {
    display: grid;
    gap: 12px;
}

.premium-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf7, #fff2ee);
    border: 1px solid rgba(58, 42, 27, 0.08);
}

.premium-spec-row span {
    color: var(--theme-muted);
    font-weight: 600;
}

.premium-spec-row strong {
    color: var(--theme-text);
    text-align: right;
}

.premium-sizechart-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0;
}

.premium-sizechart-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--theme-primary-soft);
    color: var(--theme-primary-deep);
    font-weight: 700;
}

.premium-related-section {
    padding: 10px 0 26px;
}

.premium-related-title {
    margin-bottom: 18px;
}

.premium-related-title h5 {
    font-size: 30px;
    margin-bottom: 8px;
    color: var(--theme-text);
}

.premium-related-title p {
    margin: 0;
    color: var(--theme-muted);
}

.premium-inline-link {
    color: var(--premium-accent);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--premium-border);
}

.owl-theme .owl-nav [class*=owl-] {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.84) !important;
    color: var(--premium-accent) !important;
    box-shadow: 0 10px 20px rgba(31, 20, 11, 0.12);
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.34);
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 24px;
    border-radius: 999px;
    background: #fff;
}

footer {
    margin-top: 28px;
}

.footer-top {
    background: linear-gradient(180deg, #132733 0%, #10212b 100%);
    padding: 54px 0 28px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer-shell-brand,
.footer-shell-links,
.footer-shell-connect {
    min-width: 0;
}

.footer-shell-links h4,
.footer-shell-connect h4,
.footer-brand-copy span,
.footer-shell-links li a,
.footer-shell-brand p,
.footer-hotlint,
.copyright p {
    color: #fff;
}

.footer-shell-brand p,
.footer-shell-links li a,
.copyright p {
    opacity: 0.80;
}

.footer-brand-logo {
    display: inline-flex;
    margin-bottom: 12px;
}

.footer-brand-logo img {
    max-height: 64px;
    width: auto;
}

.footer-brand-copy {
    margin: 12px 0;
}

.footer-brand-copy span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    font-size: 13px;
}

.footer-shell-links h4,
.footer-shell-connect h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 14px;
}

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

.footer-shell-links li {
    display: block;
    margin-bottom: 10px;
}

.footer-shell-links li a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
}

.social_link {
    display: flex;
    gap: 10px;
}

.social_list a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.social_list a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
    background: #0b1720;
    padding: 18px 0;
}

.footer_nav {
    background: rgba(255, 249, 243, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(58, 42, 27, 0.08);
    box-shadow: 0 -12px 30px rgba(42, 26, 12, 0.08);
}

.footer_nav ul li a {
    color: var(--premium-text);
}

.mobile-header,
.mobile-search {
    background: rgba(248, 241, 232, 0.95);
}

.menu-bag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-search-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(177, 59, 72, 0.12);
    box-shadow: 0 10px 24px rgba(177, 59, 72, 0.08);
    color: var(--theme-primary-deep) !important;
}

.mobile-search-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.22s ease, opacity 0.18s ease, padding 0.22s ease;
    padding: 0;
}

.mobile-search-panel.active {
    max-height: 120px;
    opacity: 1;
    padding: 0 0 12px;
}

.mobile-search-panel .container {
    padding-top: 4px;
}

.scrolltop .scroll {
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
    box-shadow: 0 16px 34px rgba(122, 67, 32, 0.22);
}

@media only screen and (max-width: 1199px) {
    .premium-details-gallery .dimage_item img {
        height: 420px;
    }

    .premium-product-summary .name {
        font-size: 32px !important;
    }

    .premium-listing-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-listing-copy h1 {
        font-size: 38px;
    }

    .premium-listing-meta {
        min-width: 100%;
        width: 100%;
    }

    .hero-product-showcase-head h1 {
        font-size: 42px;
    }

    .hero-showcase-image {
        height: 340px;
    }

    .hero-product-showcase .owl-item:not(.center) .hero-showcase-image {
        height: 300px;
    }

    .hero-product-showcase .owl-nav .owl-prev {
        left: -6px;
    }

    .hero-product-showcase .owl-nav .owl-next {
        right: -6px;
    }

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

    .premium-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .premium-image-preview-trigger {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }

    .premium-accordion-button {
        min-height: 60px;
        font-size: 17px;
    }

    .premium-accordion-body {
        padding: 12px;
    }

    .premium-spec-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-spec-row strong {
        text-align: left;
    }

    .premium-details-shell {
        padding: 14px !important;
        border-radius: 24px !important;
    }

    .premium-details-gallery {
        padding: 12px;
        border-radius: 22px;
    }

    .premium-details-gallery .dimage_item img {
        height: 280px;
    }

    .premium-indicator-thumb .indicator-item img {
        height: 64px;
    }

    .premium-details-card {
        padding: 18px !important;
        margin-top: 14px;
    }

    .premium-product-summary .name {
        font-size: 26px !important;
    }

    .premium-cta-row {
        flex-direction: column;
    }

    .premium-content-card,
    .premium-video-card {
        border-radius: 22px !important;
        padding: 18px !important;
    }

    .premium-related-title h5 {
        font-size: 24px;
    }

    .premium-listing-page {
        padding: 18px 0 34px;
    }

    .premium-listing-hero {
        padding: 20px 18px;
        border-radius: 24px;
        margin-bottom: 18px;
    }

    .premium-listing-copy h1 {
        font-size: 28px;
    }

    .premium-listing-copy p {
        font-size: 14px;
    }

    .premium-listing-meta {
        padding: 16px;
        border-radius: 20px;
    }

    .premium-sorting-shell {
        padding: 16px;
        border-radius: 20px;
    }

    .premium-listing-shortcuts {
        gap: 10px;
    }

    .premium-page-sort .sort {
        min-height: 46px;
    }

    .premium-topbar {
        display: none;
    }

    .hero-premium-section {
        padding-top: 16px;
    }

    .hero-product-showcase-shell {
        padding-top: 8px;
    }

    .hero-product-showcase-head {
        margin-bottom: 18px;
        padding: 0 8px;
    }

    .hero-product-showcase-head h1 {
        font-size: 28px;
        line-height: 1.18;
    }

    .hero-product-showcase-head p {
        font-size: 14px;
    }

    .hero-showcase-item {
        padding: 14px 0 22px;
    }

    .hero-showcase-image {
        height: 300px;
        border-radius: 24px;
    }

    .hero-showcase-image img {
        border-radius: 24px;
    }

    .hero-product-showcase .owl-item.center .hero-showcase-item {
        transform: scale(1.01);
    }

    .hero-product-showcase .owl-item:not(.center) .hero-showcase-image {
        height: 260px;
    }

    .hero-showcase-plus {
        width: 46px;
        height: 46px;
        left: 14px;
        bottom: 10px;
        font-size: 18px;
    }

    .hero-premium-copy,
    .hero-premium-visual,
    .hero-sidepanel-card,
    .premium-category-card {
        border-radius: 20px;
    }

    .hero-premium-copy {
        padding: 24px 20px;
    }

    .hero-premium-copy h1 {
        font-size: 36px;
    }

    .hero-premium-copy p,
    .premium-section-heading p {
        font-size: 15px;
    }

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

    .hero-premium-slider,
    .premium-slider-item,
    .premium-slider-item img {
        min-height: 300px;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .premium-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-section-heading h2 {
        font-size: 30px;
    }

    .deal-heading {
        padding: 22px 18px;
    }

    .deal-timer-wrap {
        min-width: auto;
        text-align: left;
        width: 100%;
    }

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

    .pro_img {
        height: 170px;
    }

    .pro_name a {
        font-size: 14px;
        min-height: 40px;
    }

    .pro_price p {
        font-size: 18px;
    }

    .premium-category-card {
        padding: 14px;
    }

    .premium-category-card .cat_img {
        height: 120px;
        border-radius: 22px;
    }

    .premium-category-card .cat_name {
        padding-top: 12px;
    }

    .premium-category-card .cat_name span {
        font-size: 16px;
        min-height: 42px;
    }

    .premium-category-card .cat_name small {
        font-size: 12px;
    }

    .premium-pagination-wrap .pagination {
        gap: 8px;
        padding: 12px;
        border-radius: 24px;
    }

    .premium-pagination-wrap .page-item .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
    }
}

/* Final full-project theme overrides */
:root {
    --theme-bg: var(--app-color-bg, #eefcf5);
    --theme-bg-soft: color-mix(in srgb, var(--app-color-primary, #48d597) 7%, white);
    --theme-card: var(--app-color-surface, #ffffff);
    --theme-card-alt: color-mix(in srgb, var(--app-color-primary, #48d597) 8%, white);
    --theme-text: var(--app-color-text, #173c3a);
    --theme-muted: var(--app-color-muted, #67847d);
    --theme-border: color-mix(in srgb, var(--app-color-border, #cfeee1) 82%, white);
    --theme-primary: var(--app-color-primary, #48d597);
    --theme-primary-deep: var(--app-color-primary-hover, #2fbd7c);
    --theme-primary-soft: color-mix(in srgb, var(--app-color-primary, #48d597) 12%, white);
    --theme-accent: color-mix(in srgb, var(--app-color-secondary, #173c3a) 72%, var(--app-color-primary, #48d597) 28%);
    --theme-shadow: 0 16px 46px color-mix(in srgb, var(--app-color-primary, #48d597) 12%, transparent);
}

body {
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--theme-primary) 10%, transparent), transparent 28%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--theme-accent) 12%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--theme-bg) 86%, white) 0%, color-mix(in srgb, var(--theme-bg) 95%, var(--theme-primary-soft) 5%) 42%, var(--theme-bg) 100%) !important;
    color: var(--theme-text) !important;
}

p,
a,
span,
li,
label,
input,
select,
textarea {
    color: inherit;
}

    #content {
        padding-top: 0 !important;
    }

header#navbar_top,
.main-header,
.logo-area,
.mobile-header,
.mobile-search {
    background: color-mix(in srgb, var(--theme-card) 92%, white) !important;
}

header#navbar_top {
    box-shadow: 0 14px 40px color-mix(in srgb, var(--theme-primary) 9%, transparent) !important;
}

.main-logo,
.menu-logo {
    height: 62px !important;
}

.main-search form,
.mobile-search form {
    background: var(--theme-card) !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: 0 14px 36px color-mix(in srgb, var(--theme-primary) 8%, transparent) !important;
}

.main-search form input,
.mobile-search form input {
    color: var(--theme-text) !important;
}

.main-search form input::placeholder,
.mobile-search form input::placeholder {
    color: var(--theme-muted) !important;
}

.main-search form button,
.mobile-search form button,
.scrolltop .scroll {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep)) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(177, 59, 72, 0.18) !important;
}

.header-list-items ul,
.premium-topbar-links,
.footer_nav ul {
    gap: 12px !important;
}

.header-list-items ul li > a,
.header-list-items ul li > p > a,
.track_btn a,
.cart-dialog > a {
    background: #fff !important;
    border: 1px solid var(--theme-border) !important;
    color: var(--theme-text) !important;
    box-shadow: 0 10px 24px rgba(177, 59, 72, 0.06) !important;
}

.header-list-items ul li i,
.track_btn a i {
    color: var(--theme-primary) !important;
}

.logo-header {
    grid-template-columns: 180px auto minmax(280px, 420px) auto !important;
    gap: 14px !important;
}

.header-center-nav > ul {
    gap: 6px !important;
}

.header-center-nav > ul > li > a {
    min-height: 42px;
    padding: 0 14px;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--theme-text) !important;
}

.header-center-nav > ul > li > a:hover {
    background: transparent !important;
    color: var(--theme-primary-deep) !important;
}

.header-center-nav > ul > li.header-category-dropdown > a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(177, 59, 72, 0.14) !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(177, 59, 72, 0.08) !important;
}

.header-center-nav > ul > li.header-category-dropdown > a:hover {
    background: var(--theme-primary-soft) !important;
    color: var(--theme-primary-deep) !important;
}

.header-search-box {
    max-width: 470px;
}

.header-search-box form {
    padding: 6px 6px 6px 18px !important;
    min-height: 56px;
}

.header-search-box form input {
    font-size: 15px;
}

.header-search-box form button,
.mobile-search form button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    border: 0 !important;
    line-height: 1;
}

.header-search-box form button i,
.mobile-search form button i {
    font-size: 17px;
    line-height: 1;
    display: block;
    color: #fff !important;
}

.header-list-items {
    min-width: 0;
}

.header-list-items ul {
    gap: 8px !important;
    margin-top: 0 !important;
}

.header-list-items ul li {
    margin-left: 0 !important;
}

.header-list-items ul li > a,
.header-list-items ul li > p > a,
.track_btn a {
    min-height: 44px;
    padding: 0 16px !important;
    white-space: nowrap;
}

.cart-dialog > a {
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 0 !important;
    justify-content: center;
}

.cart-dialog > a .margin-shopping {
    margin-right: 0 !important;
}

.cart-dialog > a .fa-cart-shopping {
    font-size: 22px;
}

.header-list-items ul li span {
    top: -6px;
    right: -6px;
}

.cshort-summary {
    background: #fff !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: var(--theme-shadow) !important;
}

.cshort-summary p,
.cshort-summary li,
.cshort-summary a {
    color: var(--theme-text) !important;
}

.go_cart,
a.view_more_btn,
.premium-view-more,
.hero-primary-btn,
.pro_btn button,
.cart_btn a,
.add_cart_btn,
.order_now_btn,
.filter_btn {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 14px 28px rgba(177, 59, 72, 0.18) !important;
}

.hero-secondary-btn,
.premium-inline-link {
    background: #fff !important;
    color: var(--theme-accent) !important;
    border: 1px solid var(--theme-border) !important;
}

.go_cart:hover,
a.view_more_btn:hover,
.premium-view-more:hover,
.hero-primary-btn:hover,
.hero-secondary-btn:hover,
.premium-inline-link:hover,
.pro_btn button:hover,
.cart_btn a:hover,
.add_cart_btn:hover,
.order_now_btn:hover {
    transform: translateY(-2px);
}

.menu-area {
    background: transparent !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    padding-bottom: 8px;
}

.catagory_menu {
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: 999px !important;
    padding: 8px 14px !important;
    box-shadow: 0 12px 28px rgba(177, 59, 72, 0.06) !important;
}

.catagory_menu ul {
    justify-content: flex-start !important;
}

.catagory_menu ul li,
li.cat_bar {
    margin: 0 !important;
}

.catagory_menu ul li a,
li.cat_bar > a,
li.cat_bar > a:hover {
    background: transparent !important;
    color: var(--theme-text) !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
}

li.cat_bar > a {
    padding: 12px 18px !important;
    margin: 0 !important;
}

li.cat_bar:hover > a,
li.cat_bar.active > a {
    background: var(--theme-primary-soft) !important;
    color: var(--theme-primary-deep) !important;
}

.cat_bar i,
li.cat_bar span {
    color: inherit !important;
}

.menu-area .Cat_menu,
.child_menu {
    background: #fff !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: var(--theme-shadow) !important;
}

ul.Cat_menu li,
ul.child_menu li {
    border-bottom: 1px solid rgba(177, 59, 72, 0.10) !important;
}

ul.Cat_menu li a span,
ul.child_menu li a,
.child_main > a {
    color: var(--theme-text) !important;
}

.hero-premium-grid {
    grid-template-columns: 1.08fr 1fr !important;
    align-items: stretch !important;
}

.hero-premium-sidepanel {
    grid-column: 1 / -1;
    display: grid !important;
    grid-template-columns: 1.2fr 1fr;
}

.hero-premium-copy,
.hero-premium-visual,
.hero-sidepanel-card,
.premium-marquee-item,
.premium-category-card,
.premium-product-item,
.footer-feature-card,
.product-section,
.sorting-section,
.filter_sidebar,
.customer-sidebar,
.details_right,
.sidebar_item,
.accordion-item,
.campaign-content,
.cartitem,
.card,
.review_list,
.contact-section .card {
    background: #fff !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: var(--theme-shadow) !important;
}

.hero-premium-copy,
.hero-sidepanel-card {
    background: linear-gradient(180deg, #fff9f7, #fff1ed) !important;
}

.hero-premium-visual {
    background: linear-gradient(180deg, #fff7f4, #ffece6) !important;
}

.hero-floating-card {
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--theme-text) !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: 0 12px 28px rgba(177, 59, 72, 0.10);
}

.hero-floating-card span,
.hero-floating-card strong {
    color: inherit !important;
}

.hero-eyebrow,
.section-kicker,
.hero-card-tag {
    background: var(--theme-primary-soft) !important;
    color: var(--theme-primary-deep) !important;
}

.hero-premium-copy h1,
.hero-sidepanel-card h3,
.premium-section-heading h2,
.section-title-header .section-title-name,
.sec_title h2,
.pro_name a,
.breadcrumb a,
.category-breadcrumb a,
.category-breadcrumb strong {
    color: var(--theme-text) !important;
}

.hero-premium-copy p,
.hero-stat-card span,
.premium-section-heading p,
.premium-marquee-item span,
.footer-feature-card p,
.footer-about p,
.footer-menu li a,
.showing-data span,
.cust_according_body,
.product-code p,
.pro_brand p,
.details_short_description,
.meta_description,
.breadcrumb li,
.category-breadcrumb,
.selector-item_label,
.all-reviews-button {
    color: var(--theme-muted) !important;
}

.hero-stat-card,
.hero-category-chip,
.premium-marquee-item,
.premium-category-card,
.hero-sidepanel-card.compact .hero-category-chip {
    background: linear-gradient(180deg, #fff, #fff7f4) !important;
    border: 1px solid var(--theme-border) !important;
}

.homeproduct,
.product-section,
.sorting-section,
.main-details-page,
.category-section,
.customer-sidebar,
.footer_nav {
    background: transparent !important;
}

.sec_title,
.premium-section-heading,
.sorting-section {
    margin-bottom: 18px !important;
}

.product_item,
.premium-product-item {
    border-radius: 26px !important;
    background: #fff !important;
    border: 1px solid rgba(177, 59, 72, 0.12) !important;
    box-shadow: 0 16px 32px rgba(177, 59, 72, 0.08) !important;
    padding: 8px !important;
}

.product_item:hover,
.premium-product-item:hover {
    border-color: rgba(207, 77, 77, 0.28) !important;
    box-shadow: 0 18px 38px rgba(177, 59, 72, 0.12) !important;
}

.product_item_inner {
    padding: 16px 16px 10px !important;
}

.pro_img {
    background: linear-gradient(180deg, #fff7f4, #fff1eb) !important;
    border-radius: 20px !important;
}

.pro_img img {
    object-fit: contain !important;
}

.pro_des {
    text-align: center !important;
}

.pro_name {
    height: 58px !important;
}

.pro_name a {
    font-size: 16px !important;
    line-height: 1.55 !important;
}

.pro_price p {
    color: var(--theme-primary-deep) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    justify-content: center;
}

.pro_price del {
    color: #ab8b88 !important;
}

.sale-badge-box {
    background: linear-gradient(135deg, #ff7b7b, var(--theme-primary-deep)) !important;
}

.details-price,
.details-price del,
.product-cart .name,
.details-ratting-wrapper span {
    color: var(--theme-text) !important;
}

.details-price {
    font-size: 32px !important;
    font-weight: 800 !important;
}

.details-price del {
    font-size: 18px !important;
    color: #a98b87 !important;
}

.breadcrumb,
.category-breadcrumb,
.sorting-section,
.details_right,
.filter_sidebar,
.customer-sidebar {
    border-radius: 22px !important;
}

.details_right,
.filter_sidebar,
.customer-sidebar {
    padding: 22px !important;
}

.accordion-button,
.accordion-button:not(.collapsed),
.form-control,
.form-select,
.selector-item_label,
.quantity input,
.quantity span,
.checkout textarea,
.checkout input,
.contact-section input,
.contact-section textarea,
.profile-edit input,
.profile-edit textarea {
    background: #fff !important;
    color: var(--theme-text) !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: none !important;
}

.accordion-button {
    font-weight: 700 !important;
}

.quantity span {
    color: var(--theme-primary-deep) !important;
}

.selector-item_radio:checked + .selector-item_label,
.selector-item_label:hover {
    background: var(--theme-primary-soft) !important;
    border-color: rgba(207, 77, 77, 0.28) !important;
    color: var(--theme-primary-deep) !important;
}

.page-link,
.pagination li a {
    color: var(--theme-primary-deep) !important;
    border-color: var(--theme-border) !important;
}

.page-item.active .page-link,
.pagination .active a {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep)) !important;
    color: #fff !important;
    border-color: transparent !important;
}

footer,
.footer-top,
.footer-bottom {
    background: transparent !important;
}

.footer-top {
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--app-color-primary) 10%, transparent), transparent 26%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--app-color-accent) 11%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--app-color-footer-bg) 92%, white), var(--app-color-footer-bg)) !important;
}

.footer-shell {
    background: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid color-mix(in srgb, var(--app-color-primary) 12%, white) !important;
    box-shadow: 0 24px 60px color-mix(in srgb, var(--app-color-primary) 10%, transparent) !important;
}

.footer-feature-card,
.footer-about,
.footer-menu,
.d_app {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid var(--theme-border);
}

.footer-feature-card span {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep)) !important;
}

.footer-feature-card h4,
.footer-feature-card p,
.footer-shell-links h4,
.footer-shell-connect h4,
.footer-brand-copy span,
.footer-shell-links li a,
.footer-shell-brand p,
.footer-shell-connect .d_app h2,
.footer-menu .title a,
.footer-menu li a,
.footer-about p,
.footer-hotlint,
.copyright p,
.social_list a,
.social_link li a {
    color: var(--app-color-footer-text) !important;
    opacity: 1 !important;
}

.footer-brand-copy span,
.social_list a {
    background: var(--theme-primary-soft) !important;
    border: 1px solid var(--theme-border);
}

.footer-bottom {
    background: color-mix(in srgb, var(--app-color-footer-bg) 82%, white) !important;
    border-top: 1px solid color-mix(in srgb, var(--app-color-primary) 12%, white);
}

.footer_nav {
    background: rgba(255, 255, 255, 0.96) !important;
    border-top: 1px solid color-mix(in srgb, var(--app-color-primary) 14%, white) !important;
    box-shadow: 0 -14px 30px color-mix(in srgb, var(--app-color-primary) 10%, transparent) !important;
}

.footer_nav ul li a span,
.footer_nav ul li a i,
.mobile_home a {
    color: var(--app-color-text) !important;
}

li.mobile_home {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-deep)) !important;
    border-color: transparent !important;
}

li.mobile_home a span,
li.mobile_home a i {
    color: #fff !important;
}

@media only screen and (max-width: 1199px) {
    .hero-premium-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-premium-sidepanel {
        grid-template-columns: 1fr !important;
    }
}

@media only screen and (max-width: 767px) {
    .catagory_menu {
        border-radius: 24px !important;
    }

    li.cat_bar > a {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }

    .product_item,
    .premium-product-item {
        border-radius: 22px !important;
    }

    .details_right,
    .filter_sidebar,
    .customer-sidebar,
    .footer-shell,
    .footer-shell-brand,
    .footer-shell-links,
    .footer-shell-connect {
        padding: 16px !important;
    }
}

/* Header, nav, banner targeted cleanup */
header#navbar_top {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    transition: box-shadow 0.28s ease;
}

.logo-area {
    padding: 12px 0 !important;
    transition: padding 0.28s ease, opacity 0.28s ease;
}

.logo-header {
    display: grid !important;
    grid-template-columns: 220px auto minmax(280px, 420px) auto;
    gap: 18px;
}

.main-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 68px !important;
}

.main-logo img {
    max-height: 64px !important;
    width: auto !important;
}

.main-search {
    display: flex;
    align-items: center;
}

.header-list-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-list-items ul {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
    justify-content: flex-end;
}

.header-list-items ul li {
    flex: 0 0 auto;
}

.menu-area {
    display: none !important;
}

.catagory_menu {
    border-radius: 30px !important;
    padding: 12px 18px !important;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
}

.catagory_menu::-webkit-scrollbar {
    display: none;
}

.catagory_menu > ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 8px !important;
    min-width: max-content;
}

.catagory_menu > ul > li,
.catagory_menu > ul > li.cat_bar {
    flex: 0 0 auto;
}

.catagory_menu > ul > li > a,
.catagory_menu > ul > li.cat_bar > a {
    min-height: 46px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 18px !important;
    border-radius: 999px !important;
}

.catagory_menu > ul > li:hover > a,
.catagory_menu > ul > li.cat_bar.active > a {
    background: var(--theme-primary-soft) !important;
}

@media only screen and (min-width: 768px) {
    .hero-premium-section {
        padding: 0 0 18px !important;
    }

    .hero-premium-grid {
        grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr) !important;
        gap: 18px !important;
    }

    .hero-premium-sidepanel {
        display: none !important;
    }

    .hero-premium-copy {
        padding: 26px 24px !important;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-premium-copy h1 {
        font-size: 42px !important;
        line-height: 1.14 !important;
        margin-top: 14px !important;
    }

    .hero-premium-copy p {
        font-size: 16px !important;
        line-height: 1.7 !important;
        margin-top: 14px !important;
    }

    .hero-cta-group {
        margin-top: 20px !important;
    }

    .hero-mini-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        margin-top: 22px !important;
    }

    .hero-stat-card {
        padding: 14px 16px !important;
    }

    .hero-stat-card strong {
        font-size: 22px !important;
    }

    .hero-premium-visual {
        padding: 12px !important;
        min-height: 420px;
    }

    .hero-premium-slider,
    .premium-slider-item,
    .premium-slider-item img {
        min-height: 396px !important;
        height: 396px !important;
        border-radius: 24px !important;
    }

    .premium-slider-item img {
        width: 100%;
        object-fit: cover !important;
    }
}

.hero-floating-card {
    width: 220px !important;
    padding: 14px 16px !important;
}

.hero-floating-card-top {
    top: 20px !important;
    right: 20px !important;
}

.hero-floating-card-bottom {
    left: 20px !important;
    bottom: 20px !important;
}

@media only screen and (max-width: 1199px) {
    .logo-header {
        grid-template-columns: 180px 1fr auto;
    }

    .header-center-nav {
        display: none;
    }

    .header-search-box {
        max-width: none;
    }

    .header-list-items {
        justify-content: flex-end;
    }

    .hero-premium-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-premium-copy {
        min-height: auto;
    }

    .hero-premium-visual,
    .hero-premium-slider,
    .premium-slider-item,
    .premium-slider-item img {
        min-height: 340px !important;
        height: 340px !important;
    }
}

@media only screen and (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .mobile-search-toggle {
        width: 40px;
        height: 40px;
    }

    .premium-buy-topline {
        align-items: stretch;
    }

    .premium-buy-topline .quantity {
        flex-basis: 116px;
        width: 116px;
        min-width: 116px;
        height: 44px;
    }

    .premium-buy-topline .add_cart_btn {
        width: calc(100% - 128px) !important;
        font-size: 14px;
        padding: 0 14px !important;
    }

    .premium-buy-topline .quantity .minus,
    .premium-buy-topline .quantity .plus {
        width: 34px;
    }

    .color_inner .selector-item {
        min-width: 30px;
    }

    .color_inner .selector-item label {
        width: 30px;
        height: 30px;
    }

    .size_inner .selector-item {
        min-width: 48px;
    }

    .size_inner .selector-item label {
        min-width: 48px;
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .logo-header {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .header-search-box {
        display: none;
    }

    .main-logo {
        justify-content: center;
        height: 60px !important;
    }

    .header-list-items {
        max-width: 100%;
        overflow-x: auto;
    }

    .header-list-items ul {
        width: max-content;
        max-width: 100%;
    }

    .header-center-nav {
        display: none !important;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .footer-shell-links li a {
        min-height: 34px;
    }

    .footer_nav ul {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
    }

    .footer_nav ul li {
        width: 100%;
    }

    .footer_nav ul li a {
        min-height: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        font-size: 11px;
        text-align: center;
    }

    .hero-premium-copy {
        padding: 20px 18px !important;
    }

    .hero-premium-copy h1 {
        font-size: 32px !important;
    }

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

    .hero-premium-visual,
    .hero-premium-slider,
    .premium-slider-item,
    .premium-slider-item img {
        min-height: 250px !important;
        height: 250px !important;
    }

    .hero-floating-card {
        display: none !important;
    }
}

/* Header layout stability fix */
header#navbar_top {
    width: 100%;
    overflow: visible;
}

.main-header {
    width: 100%;
}

.logo-area {
    overflow: visible;
}

.logo-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    min-width: 0;
}

.logo-header > * {
    min-width: 0;
}

.main-logo {
    flex: 0 0 auto;
    min-width: 150px;
}

.main-logo a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.main-logo img {
    max-width: 100%;
    height: auto;
}

.header-center-nav {
    flex: 0 1 auto;
    min-width: 0;
}

.header-center-nav > ul {
    flex-wrap: nowrap;
    overflow: hidden;
}

.header-center-nav > ul > li > a {
    white-space: nowrap;
}

.header-search-box {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 460px;
}

.header-search-box form {
    width: 100%;
}

.header-list-items {
    flex: 0 0 auto;
    min-width: 0;
}

.header-list-items ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: 0;
}

.header-list-items ul li {
    flex: 0 0 auto;
}

.header-list-items ul li > a,
.header-list-items ul li > p > a {
    white-space: nowrap;
}

.cart-dialog,
.cart-dialog > a {
    flex: 0 0 auto;
}

@media only screen and (max-width: 1399px) {
    .logo-header {
        gap: 12px;
    }

    .header-center-nav > ul {
        gap: 8px;
    }

    .header-center-nav > ul > li > a {
        padding: 0 14px;
        font-size: 13px;
    }

    .header-search-box {
        flex-basis: 260px;
        max-width: 360px;
    }

    .header-list-items ul li > a,
    .header-list-items ul li > p > a {
        padding: 0 12px !important;
        font-size: 13px;
    }
}

@media only screen and (max-width: 1199px) {
    .logo-header {
        display: grid !important;
        grid-template-columns: 180px minmax(0, 1fr) auto;
        align-items: center;
    }

    .header-center-nav {
        display: none !important;
    }

    .header-search-box {
        max-width: 100%;
        min-width: 0;
    }

    .header-list-items {
        overflow: visible;
    }
}

@media only screen and (max-width: 991px) {
    .logo-header {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .main-logo {
        justify-content: center;
        min-width: 0;
    }

    .main-logo a {
        justify-content: center;
    }

    .header-search-box {
        order: 2;
        width: 100%;
    }

    .header-list-items {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .header-list-items ul {
        width: max-content;
        min-width: 100%;
    }
}

/* Header compact polish fix */
header#navbar_top {
    box-shadow: 0 10px 26px rgba(38, 22, 9, 0.08) !important;
}

.logo-area {
    padding: 8px 0 !important;
}

.logo-header {
    display: grid !important;
    grid-template-columns: 160px minmax(220px, auto) minmax(220px, 1fr) auto !important;
    align-items: center;
    gap: 12px !important;
}

.main-logo {
    height: 56px !important;
    min-width: 130px;
}

.main-logo img {
    max-height: 52px !important;
    width: auto !important;
}

.header-center-nav {
    min-width: 0;
    overflow: visible;
}

.header-center-nav > ul {
    gap: 2px !important;
    justify-content: flex-start;
    overflow: visible;
}

.header-center-nav > ul > li {
    flex: 0 0 auto;
}

.header-center-nav > ul > li > a,
.header-center-nav > ul > li.header-category-dropdown > a {
    min-height: 38px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
}

.header-center-nav > ul > li.header-category-dropdown > a i {
    font-size: 11px;
}

.header-search-box {
    flex: 1 1 auto;
    min-width: 0 !important;
    max-width: 100% !important;
}

.header-search-box form {
    min-height: 46px !important;
    padding: 4px 4px 4px 14px !important;
}

.header-search-box form input {
    font-size: 14px !important;
}

.header-search-box form button {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
}

.header-search-box form button i {
    font-size: 15px !important;
}

.header-list-items ul {
    gap: 6px !important;
}

.header-list-items ul li > a,
.header-list-items ul li > p > a,
.track_btn a {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    gap: 6px !important;
}

.header-list-items ul li i {
    font-size: 14px !important;
}

.cart-dialog > a {
    width: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
}

.cart-dialog > a .fa-cart-shopping {
    font-size: 18px !important;
}

.cart-dialog > a span {
    top: -4px !important;
    right: -4px !important;
}

@media only screen and (max-width: 1365px) {
    .logo-header {
        grid-template-columns: 145px auto minmax(180px, 1fr) auto !important;
        gap: 10px !important;
    }

    .header-center-nav > ul > li > a,
    .header-center-nav > ul > li.header-category-dropdown > a {
        padding: 0 8px !important;
        font-size: 11px !important;
    }

    .header-search-box form input {
        font-size: 13px !important;
    }

    .header-list-items ul li > a,
    .header-list-items ul li > p > a,
    .track_btn a {
        padding: 0 10px !important;
        font-size: 11px !important;
    }
}

@media only screen and (max-width: 1199px) {
    .logo-area {
        padding: 8px 0 10px !important;
    }

    .logo-header {
        grid-template-columns: 150px minmax(0, 1fr) auto !important;
        gap: 10px !important;
    }

    .header-center-nav {
        display: none !important;
    }

    .header-search-box {
        min-width: 0 !important;
    }

    .header-list-items ul li > a,
    .header-list-items ul li > p > a,
    .track_btn a {
        font-size: 11px !important;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-header {
        display: block !important;
        padding: 0 !important;
        min-height: 60px !important;
        box-shadow: 0 8px 18px rgba(38, 22, 9, 0.06) !important;
    }

    .mobile-logo {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        min-height: 60px !important;
        height: 60px !important;
        padding: 0 12px !important;
    }

    .menu-bar,
    .menu-bag {
        flex: 0 0 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .menu-bar {
        justify-content: flex-start !important;
    }

    .menu-logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        min-height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 6px !important;
    }

    .menu-logo a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 60px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu-logo img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 38px !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        transform: none !important;
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        vertical-align: middle !important;
    }

    .menu-bar i,
    .mobile-search-toggle i,
    .menu-bag .margin-shopping i {
        font-size: 18px !important;
    }

    .mobile-search-toggle {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .menu-bag {
        display: inline-flex !important;
        gap: 8px;
        margin: 0 !important;
        align-items: center;
        justify-content: flex-end !important;
    }

    .menu-bag .margin-shopping {
        width: 26px !important;
        margin: 0 !important;
        min-height: auto !important;
    }

    .menu-bag .margin-shopping span {
        top: -8px !important;
        right: -10px !important;
        height: 18px !important;
        min-width: 18px;
        padding: 1px 5px !important;
        font-size: 10px !important;
        line-height: 16px !important;
    }

    .mobile-search {
        padding: 10px 12px 12px !important;
    }

    .mobile-search form {
        height: 42px !important;
        border-radius: 999px !important;
    }

    .mobile-search form input {
        font-size: 13px !important;
    }

    .mobile-search form button {
        flex: 0 0 46px !important;
    }
}

/* Final frontend palette cleanup */
:root {
    --site-primary: var(--app-color-primary);
    --site-primary-deep: var(--app-color-primary-hover);
    --site-accent: var(--app-color-accent);
    --site-text: var(--app-color-text);
    --site-muted: var(--app-color-muted);
    --site-border: color-mix(in srgb, var(--app-color-border) 84%, white);
    --site-soft: color-mix(in srgb, var(--app-color-primary) 6%, white);
    --site-soft-strong: color-mix(in srgb, var(--app-color-primary) 10%, white);
}

html,
body,
button,
input,
select,
textarea,
label,
small,
span,
div,
p,
a,
li,
td,
th,
.btn,
.form-control,
.form-select,
.dropdown-menu,
.modal-content,
.table,
.card,
.nice-select,
.select2-selection__rendered {
    font-family: var(--app-font-sans, "Noto Sans Bengali"), sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-premium-copy h1,
.section-title-name,
.premium-section-heading h2,
.sec_title h2 {
    font-family: var(--app-font-heading-family, "Noto Sans Bengali"), sans-serif !important;
}

body {
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--site-primary) 10%, transparent), transparent 24%),
        radial-gradient(circle at top right, color-mix(in srgb, var(--site-accent) 11%, transparent), transparent 20%),
        radial-gradient(circle at 30% 22%, color-mix(in srgb, var(--site-primary) 8%, transparent), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--app-color-bg) 88%, white) 48%, var(--app-color-bg) 100%) !important;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05));
    z-index: 0;
}

#navbar_top,
.main-header,
.logo-area,
.mobile-header,
.mobile-search,
.hero-premium-copy,
.hero-premium-visual,
.hero-stat-card,
.premium-category-card,
.premium-product-item,
.product_item,
.details_right,
.filter_sidebar,
.customer-sidebar,
.sorting-section,
.breadcrumb,
.category-breadcrumb,
.footer-feature-card,
.footer-about,
.footer-menu,
.d_app,
.accordion-item,
.cartlist,
.checkout-shipping,
.review-card,
.contact-section .card {
    border-color: var(--site-border) !important;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--site-primary) 7%, transparent) !important;
}

.hero-premium-copy,
.hero-premium-visual,
.hero-sidepanel-card,
.hero-stat-card,
.premium-category-card,
.footer-feature-card {
    background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--site-primary) 4%, white)) !important;
}

.hero-eyebrow,
.section-kicker,
.hero-card-tag,
.hero-category-chip,
.premium-pill,
.theme-soft-primary,
.badge.bg-primary,
.bg-soft-primary {
    background: var(--site-soft-strong) !important;
    color: var(--site-primary) !important;
    border-color: var(--site-border) !important;
}

.main-search form,
.mobile-search form,
.header-list-items ul li > a,
.header-list-items ul li > p > a,
.track_btn a,
.cart-dialog > a,
.catagory_menu,
.cshort-summary,
.footer-feature-card,
.footer-about,
.footer-menu,
.d_app {
    border-color: var(--site-border) !important;
}

.main-search form button,
.mobile-search form button,
.scrolltop .scroll,
.go_cart,
a.view_more_btn,
.premium-view-more,
.hero-primary-btn,
.pro_btn button,
.cart_btn a,
.add_cart_btn,
.order_now_btn,
.filter_btn,
.page-item.active .page-link,
.pagination .active a,
li.mobile_home {
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-deep)) !important;
    box-shadow: 0 14px 28px color-mix(in srgb, var(--site-primary) 18%, transparent) !important;
}

.hero-secondary-btn,
.premium-inline-link,
.btn-outline-primary,
.btn-outline-secondary {
    background: #fff !important;
    border-color: var(--site-border) !important;
    color: var(--site-text) !important;
}

.sale-badge-box {
    background: linear-gradient(135deg, var(--site-accent), var(--site-primary)) !important;
}

.pro_price p,
.details-price,
.footer_nav ul li a.active,
.header-center-nav > ul > li > a:hover,
.header-center-nav > ul > li.header-category-dropdown > a:hover {
    color: var(--site-primary-deep) !important;
}

.selector-item_radio:checked + .selector-item_label,
.selector-item_label:hover,
.catagory_menu > ul > li:hover > a,
.catagory_menu > ul > li.cat_bar.active > a,
li.cat_bar:hover > a,
li.cat_bar.active > a {
    background: var(--site-soft-strong) !important;
    color: var(--site-primary) !important;
    border-color: color-mix(in srgb, var(--site-primary) 26%, white) !important;
}

.fa,
.fas,
.far,
.fab,
.fal,
.fat,
.fad,
.fa-solid,
.fa-regular,
.fa-brands,
[class^="fa-"],
[class*=" fa-"],
.sidebar_item .accordion-header .accordion-button::after {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
}

.feather,
[data-feather],
.remove-cart .feather,
.footer-about ul li a .feather,
.resend_otp .feather {
    font-family: inherit !important;
}

.customer-section .customer-sidebar,
.customer-section .customer-content,
.customer-section .checkout-shipping,
.customer-section .customer-auth {
    border: 1px solid var(--site-border) !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), color-mix(in srgb, var(--site-primary) 4%, white)) !important;
    box-shadow: 0 16px 34px color-mix(in srgb, var(--site-primary) 8%, transparent) !important;
}

.customer-section .customer-sidebar,
.customer-section .customer-content,
.customer-section .checkout-shipping {
    padding: 22px !important;
}

.customer-section .customer-auth {
    padding: 16px !important;
    margin-top: 18px !important;
}

.customer-section .sidebar-menu ul,
.customer-section > .container > .row > .col-sm-3 > ul {
    display: grid;
    gap: 10px;
}

.customer-section .sidebar-menu a,
.customer-section > .container > .row > .col-sm-3 > ul li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px !important;
    border-radius: 16px !important;
    border: 1px solid var(--site-border) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: var(--site-text) !important;
    box-shadow: none !important;
}

.customer-section .sidebar-menu a.active,
.customer-section .sidebar-menu a:hover,
.customer-section > .container > .row > .col-sm-3 > ul li a.active,
.customer-section > .container > .row > .col-sm-3 > ul li a:hover {
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-deep)) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.customer-section .account-title {
    color: var(--site-text) !important;
    font-weight: 800 !important;
    margin-bottom: 18px !important;
}

.customer-section .table td,
.customer-section .table th {
    border-color: var(--site-border) !important;
    color: var(--site-text);
}

.customer-section .submit-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-deep)) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px color-mix(in srgb, var(--site-primary) 18%, transparent);
}

@media only screen and (max-width: 767px) {
    header#navbar_top {
        min-height: 60px !important;
        overflow: visible !important;
    }

    .main-header {
        display: none !important;
    }

    .mobile-header,
    .mobile-search-panel {
        width: 100% !important;
        margin: 0 !important;
    }

    .mobile-search-panel {
        position: relative !important;
        top: 0 !important;
    }
}
