@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #EDE4DD;
    --card: #E8DFD8;
    --border: #D5D0CB;
    --red: #ED2132;
    --red-dark: #d11a28;
    --black: #000;
    --muted-fg: #787878;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: #000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
}

/* ── NAV ── */
.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(237, 228, 221, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 80px;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-fg);
    transition: color .15s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

/* Navigation Dropdown (Industries) */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-fg);
    transition: color .15s ease;
    font-family: inherit;
    text-decoration: none;
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-item-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
    color: var(--red);
}

.nav-dropdown-arrow {
    transition: transform .2s ease;
    flex-shrink: 0;
}

.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .07);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 1000;
    pointer-events: none;
}

/* Invisible hover bridge to prevent menu from closing when moving cursor across gap */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-item {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: #333333 !important;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease, padding-left .15s ease !important;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--red) !important;
    padding-left: 22px;
}

.nav-dropdown-item.active {
    color: var(--red) !important;
    font-weight: 600 !important;
    background-color: #fff5f5;
}

.nav-user-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: var(--muted-fg);
}

.nav-user-name {
    font-weight: 600;
    color: #000;
}

.nav-signout {
    cursor: pointer;
    transition: color .15s;
}

.nav-signout:hover {
    color: var(--red);
}

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background .15s;
}

.nav-cart:hover {
    background: rgba(213, 208, 203, .5);
}

.nav-cart svg {
    width: 20px;
    height: 20px;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-badge.show {
    display: flex;
}

.btn-enquire-nav {
    background: var(--red);
    color: #fff;
    padding: 10px 24px;
    font-size: .875rem;
    font-weight: 500;
    transition: background .15s;
}

.btn-enquire-nav:hover {
    background: var(--red-dark);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 1px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(237, 228, 221, .98);
    border-bottom: 1px solid var(--border);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 14px 24px;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

/* ── PAGE ── */
.pt-20 {
    padding-top: 80px;
}

/* ── BUTTONS ── */
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 16px 32px;
    font-size: .875rem;
    font-weight: 500;
    transition: background .15s;
}

.btn-red:hover {
    background: var(--red-dark);
}

.btn-border {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: #000;
    padding: 16px 32px;
    font-size: .875rem;
    font-weight: 500;
    transition: background .15s;
}

.btn-border:hover {
    background: rgba(213, 208, 203, .4);
}

.btn-red-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    padding: 8px 24px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .15s;
}

.btn-red-sm:hover {
    background: var(--red-dark);
}

/* ── HERO ── */
.hero {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 80px);
}

.hero-img-panel {
    position: relative;
    width: 50%;
    overflow: hidden;
    min-height: 45vw;
}

.hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity .7s;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide.hidden {
    opacity: 0;
    z-index: 0;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.hero-prev {
    left: 16px;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .2);
}

.hero-next {
    right: 16px;
    background: rgba(237, 33, 50, .9);
}

.hero-prev:hover,
.hero-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hero-dot {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .5);
    transition: all .3s;
    cursor: pointer;
    border: none;
}

.hero-dot.active {
    width: 28px;
    background: var(--red);
}

.hero-dot:not(.active) {
    width: 6px;
}

.hero-text-panel {
    width: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 64px 32px 96px;
    position: relative;
}

.hero-slide-content {
    max-width: 480px;
    width: 100%;
    animation: fadeSlideIn .55s ease both;
}

.hero-tag {
    display: inline-block;
    color: var(--red);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    color: #000;
    margin-bottom: 24px;
}

.hero-title i {
    color: var(--red);
    font-style: var(--serif);;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, .65);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .hero-btns {
        flex-direction: row;
    }
}

.hero-caption {
    font-size: .75rem;
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: .2em;
}

.hero-counter {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: .75rem;
    font-family: 'Menlo', monospace;
    color: rgba(0, 0, 0, .3);
    letter-spacing: .2em;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── PHILOSOPHY ── */
.philosophy {
    background: var(--red);
    padding: 14px 9px;
    text-align: center;
}

.philosophy h2 {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: #fff;
    margin-bottom: 8px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy p {
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .75rem;
}

/* ── CONTAINERS ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── SECTIONS ── */
.section-bg {
    padding: 96px 0;
}

.section-bg-card {
    background: var(--card);
    padding: 96px 0;
}

.section-bg-black {
    background: #000;
    padding: 64px 0;
}

.section-bg-border {
    background: var(--border);
    padding: 96px 0;
}

/* ── WHO WE ARE ── */
.who-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .who-grid {
        flex-direction: row;
    }
}

.who-text {
    width: 100%;
}

@media (min-width: 1024px) {
    .who-text {
        width: 50%;
    }

    .who-img {
        width: 50%;
    }
}

.who-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}

.who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 32px;
}

.who-h2 i {
    color: var(--red);
    font-style: var(--serif);;
}

.who-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: rgba(0, 0, 0, .65);
    line-height: 1.8;
}

/* ── WHY BAYWALK ── */
.why-section {
    padding: 96px 0;
    background: var(--bg);
    border-top: 1px solid rgba(213, 208, 203, .5);
    border-bottom: 1px solid rgba(213, 208, 203, .5);
}

.why-h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    text-align: center;
    margin-bottom: 56px;
}

.why-h2 em {
    color: var(--muted-fg);
    font-style: var(--serif);;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px;
    transition: border-color .15s;
}

.why-card:hover {
    border-color: rgba(237, 33, 50, .4);
}

.why-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: rgba(237, 33, 50, .4);
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: .875rem;
    color: var(--muted-fg);
    line-height: 1.7;
}

/* ── STATS ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 32px;
    text-align: center;
}

.stat-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--border);
    font-weight: 500;
}

/* ── PROCESS ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-line {
    display: none;
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

@media (min-width: 768px) {
    .process-line {
        display: block;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-icon span {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 600;
}

.process-step h3 {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-divider {
    width: 24px;
    height: 1px;
    background: rgba(0, 0, 0, .2);
    margin-bottom: 8px;
}

.process-step p {
    font-size: .75rem;
    color: var(--muted-fg);
    line-height: 1.6;
    max-width: 140px;
}

/* ── CATEGORIES ── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cat-tile {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.cat-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.cat-tile:hover img {
    transform: scale(1.05);
}

.cat-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .2) 50%, transparent 100%);
}

.cat-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.cat-tile-label h3 {
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    transform: translateY(4px);
    transition: transform .3s;
}

.cat-tile:hover .cat-tile-label h3 {
    transform: translateY(0);
}

.cat-tile-bar {
    height: 2px;
    width: 0;
    background: var(--red);
    margin-top: 8px;
    transition: width .3s;
}

.cat-tile:hover .cat-tile-bar {
    width: 32px;
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: .875rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(237, 33, 50, .3);
    padding-bottom: 4px;
    transition: border-color .15s;
}

.cat-link:hover {
    border-color: var(--red);
}

/* ── INDUSTRIES MARQUEE ── */
.marquee-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee 30s linear infinite;
    padding-bottom: 48px;
}

.marquee-track:hover {
    animation-play-state: paused;
}



.marquee-track.brands-track {
    padding-bottom: 8px;
    padding-top: 8px;
    animation-duration: 30s;
}

.ind-card {
    position: relative;
    width: 256px;
    height: 192px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.ind-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.ind-card:hover img {
    transform: scale(1.1);
}

.ind-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .25) 60%, transparent 100%);
}

.ind-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: border-color .15s;
}

.ind-card:hover .ind-card-border {
    border-color: rgba(237, 33, 50, .6);
}

.ind-card-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
}

/* ── BRANDS MARQUEE ── */
.brand-pill {
    padding: 12px 28px;
    border: 1px solid rgba(213, 208, 203, .6);
    background: rgba(213, 208, 203, .2);
    color: var(--muted-fg);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    white-space: nowrap;
    transition: border-color .15s;
}

.brand-pill:hover {
    border-color: rgba(237, 33, 50, .5);
}

/* ── CTA ── */
.cta-section {
    position: relative;
    padding: 128px 16px;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
}

.cta-bg-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .75) 50%, rgba(0, 0, 0, .9) 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 768px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.cta-inner h2.red {
    color: var(--red);
    margin-bottom: 32px;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.cta-inner p {
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inner small {
    display: block;
    color: rgba(255, 255, 255, .4);
    font-size: .875rem;
    margin-top: 24px;
}

/* ── FOOTER ── */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--red);
    margin-bottom: 16px;
}

.footer-brand p {
    font-family: var(--serif);
    font-style: italic;
    font-size: .875rem;
    color: rgba(0, 0, 0, .75);
}

.footer-col h4 {
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--muted-fg);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: .875rem;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-col address {
    font-style: normal;
    font-size: .875rem;
    color: rgba(0, 0, 0, .75);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    text-align: center;
    font-size: .75rem;
    color: var(--muted-fg);
}

/* ── CATALOGUE ── */
.cat-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.cat-header h1 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.cat-header p {
    font-size: .875rem;
    color: var(--muted-fg);
    margin-top: 8px;
}

.cat-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 0;
}

@media (min-width: 768px) {
    .cat-body {
        flex-direction: row;
    }
}

.filter-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .filter-sidebar {
        width: 260px;
        flex-shrink: 0;
        position: sticky;
        top: 96px;
        align-self: start;
    }
}

.filter-search {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s;
}

.filter-search:focus {
    border-color: var(--red);
}

.filter-section h3 {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 256px;
    overflow-y: auto;
    padding-right: 8px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.filter-cb {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(120, 120, 120, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, border-color .15s;
}

.filter-cb.checked {
    background: var(--red);
    border-color: var(--red);
}

.filter-cb.checked::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: cover;
}

.filter-label:hover .filter-cb:not(.checked) {
    border-color: var(--red);
}

.filter-label span {
    font-size: .875rem;
    color: rgba(0, 0, 0, .75);
}

.filter-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.filter-price-row h3 {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.filter-price-val {
    font-size: .75rem;
    font-weight: 600;
    color: var(--red);
}

.filter-range {
    width: 100%;
    accent-color: var(--red);
}

.btn-clear-filters {
    width: 100%;
    padding: 10px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--red);
    border: 1px solid var(--red);
    transition: background .15s;
}

.btn-clear-filters:hover {
    background: rgba(237, 33, 50, .05);
}

.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 256px;
    text-align: center;
    border: 1px dashed var(--border);
    padding: 32px;
    background: var(--card);
}

.no-results h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.no-results p {
    font-size: .875rem;
    color: var(--muted-fg);
}

.no-results button {
    margin-top: 16px;
    color: var(--red);
    font-size: .875rem;
    cursor: pointer;
}

.no-results button:hover {
    text-decoration: underline;
}

/* Product Card */
.prod-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}

.prod-card:hover {
    border-color: rgba(237, 33, 50, .5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.prod-card-img {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.prod-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.prod-card:hover .prod-card-img img {
    transform: scale(1.05);
}

.prod-card-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .1);
    transition: background .15s;
}

.prod-card:hover .prod-card-img-overlay {
    background: rgba(0, 0, 0, .05);
}

.prod-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 8px;
}

.prod-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--muted-fg);
    font-weight: 600;
    margin-bottom: 4px;
}

.prod-name {
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 850;
    /* margin-bottom: 12px; */
    flex: 1;
}

/* .prod-pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    margin-top: auto;
} */

.prod-pricing-item .label {
    font-size: .75rem;
    color: var(--muted-fg);
    margin-bottom: 2px;
}

.prod-pricing-item .value {
    font-weight: 600;
}

.prod-pricing-item.right {
    text-align: right;
}

.prod-pricing-item.right .value {
    font-size: .875rem;
    font-weight: 500;
}

.prod-desc {
    font-size: .75rem;
    color: var(--muted-fg);
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* .prod-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
} */

.btn-view-details {
    display: block;
    text-align: center;
    border: 1px solid var(--border);
    padding: 8px;
    font-size: .75rem;
    font-weight: 500;
    transition: border-color .15s, color .15s;
}

.btn-view-details:hover {
    border-color: #fff;
    color: var(--red);
    border-color: var(--red);
}

.btn-add-cart {
    display: block;
    text-align: center;
    background: var(--red);
    color: #fff;
    padding: 8px;
    font-size: .75rem;
    font-weight: 500;
    transition: background .15s;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--red);
    color: #fff;
}

.btn-in-cart {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 8px;
    font-size: .75rem;
    font-weight: 500;
}

/* Qty picker inline */
.qty-picker {
    display: none;
    flex-direction: column;
    gap: 8px;
}

.qty-picker.open {
    display: flex;
}

.qty-picker-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-picker-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: var(--muted-fg);
    flex-shrink: 0;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: #fff;
    flex: 1;
}

.qty-stepper-btn {
    width: 32px;
    height: 32px;
    font-size: .875rem;
    font-weight: 700;
    color: var(--muted-fg);
    flex-shrink: 0;
    transition: color .15s;
}

.qty-stepper-btn:hover {
    color: #000;
}

.qty-stepper-inp {
    flex: 1;
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    min-width: 0;
    padding: 4px;
}

.qty-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-qty-cancel {
    border: 1px solid var(--border);
    padding: 8px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--muted-fg);
    transition: color .15s;
}

.btn-qty-cancel:hover {
    color: #000;
}

.btn-qty-confirm {
    background: var(--red);
    color: #fff;
    padding: 8px;
    font-size: .75rem;
    font-weight: 600;
    transition: background .15s;
}

.btn-qty-confirm:hover {
    background: var(--red-dark);
}

/* ── PRODUCT DETAIL ── */
.breadcrumb {
    background: #ef2133 !important;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 80px 0;
    color: #fff;
}

.breadcrumb a:hover {
    color: var(--red);
}

.pd-grid {
    display: flex;
    flex-direction: column;
    gap: 48px 64px;
}

@media (min-width: 1024px) {
    .pd-grid {
        flex-direction: row;
    }
}

.pd-left {
    width: 100%;
    position: sticky;
    top: 112px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* @media (min-width: 1024px) {
    .pd-left {
        width: 45%;
        position: sticky;
        top: 112px;
        align-self: start;
    }
} */
.main-section-parent-class {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

.pd-right {
    width: 100%;
}

.container.breadcrumb-links {
    margin: 100px 0;
    display: flex;
    align-items: center !important;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
}

/* @media (min-width: 1024px) {
    .pd-right {
        width: 55%;
        padding-bottom: 96px;
    }
} */

.pd-main-img {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-main-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 50%);
}

.pd-brand-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .9);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    padding: 4px 12px;
}

.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pd-thumb {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
}

.pd-thumb-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.pd-thumb-label span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-fg);
    background: rgba(255, 255, 255, .8);
    padding: 2px 6px;
}

.pd-photo-note {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 16px;
    text-align: center;
    font-size: .75rem;
    color: var(--muted-fg);
    font-style: italic;
    font-family: var(--serif);
}

/* right col */
.pd-brand-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.pd-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.pd-cat-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 10px;
    margin-bottom: 32px;
}

.pd-pricing-box {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 640px) {
    .pd-pricing-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.pd-pricing-divider {
    height: 1px;
    background: var(--border);
}

@media (min-width: 640px) {
    .pd-pricing-divider {
        height: 48px;
        width: 1px;
    }
}

.pd-mrp-label,
.pd-moq-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-fg);
    margin-bottom: 4px;
}

.pd-mrp-val {
    font-family: var(--serif);
    font-size: 1.875rem;
}

.pd-mrp-unit {
    font-family: var(--sans);
    font-size: .875rem;
    color: var(--muted-fg);
    margin-left: 4px;
}

.pd-moq-val {
    font-size: 1.125rem;
    font-weight: 600;
}

.pd-section-lbl {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    margin-bottom: 12px;
}

.pd-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.pd-variant {
    border: 1px solid var(--border);
    background: var(--card);
    padding: 8px 16px;
    font-size: .875rem;
    color: rgba(0, 0, 0, .75);
    cursor: pointer;
    transition: border-color .15s;
}

.pd-variant:hover {
    border-color: var(--red);
}

.pd-desc {
    color: rgba(0, 0, 0, .75);
    line-height: 1.8;
    margin-bottom: 40px;
}

.pd-features-title {
    font-family: var(--serif);
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.pd-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.pd-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .875rem;
    color: rgba(0, 0, 0, .75);
}

.pd-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
}

. {
    font-family: var(--serif);
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 16px;
    margin-top: 16px;
}

.pd-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 40px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .pd-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pd-spec {
    border-bottom: 1px dashed var(--border);
    padding-bottom: 12px;
}

.pd-spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-fg);
    margin-bottom: 4px;
}

.pd-spec-val {
    font-weight: 500;
    color: rgba(0, 0, 0, .85);
    font-size: .875rem;
}

/* Customisation panel */
.pd-custom {
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 40px;
}

.pd-custom-header {
    background: #000;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-custom-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-custom-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-custom-header span.title {
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    letter-spacing: .02em;
}

.pd-custom-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: white;
    font-weight: 700;
    border: 1px solid rgba(237, 33, 50, .4);
    padding: 4px 12px;
}

.pd-custom-body {
    background: var(--card);
    padding: 20px 24px;
}

.pd-custom-body p {
    font-size: .875rem;
    color: rgba(0, 0, 0, .7);
    margin-bottom: 20px;
}

.pd-custom-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pd-custom-tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    transition: border-color .15s;
}

.pd-custom-tile:hover {
    border-color: rgba(237, 33, 50, .5);
}

.pd-custom-tile svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.pd-custom-tile-text .t {
    font-size: .75rem;
    font-weight: 600;
    transition: color .15s;
}

.pd-custom-tile:hover .pd-custom-tile-text .t {
    color: var(--red);
}

.pd-custom-tile-text .s {
    font-size: 11px;
    color: var(--muted-fg);
    margin-top: 2px;
}

/* CTA area */
.pd-in-cart-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.pd-in-cart-bar svg {
    color: var(--red);
    flex-shrink: 0;
}

.pd-in-cart-bar span {
    flex: 1;
    font-size: .875rem;
    font-weight: 500;
}

.pd-in-cart-bar a {
    font-size: .75rem;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pd-in-cart-bar a:hover {
    text-decoration: underline;
}

.pd-qty-edit {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 12px 16px;
    margin-bottom: 12px;
}

.pd-qty-edit .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: var(--muted-fg);
}

.pd-qty-edit-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: #fff;
}

.pd-qty-edit-stepper button {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted-fg);
    transition: color .15s;
}

.pd-qty-edit-stepper button:hover {
    color: #000;
}

.pd-qty-edit-stepper span {
    width: 56px;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
}

.pd-qty-edit .unit {
    font-size: .75rem;
    color: var(--muted-fg);
}

.btn-proceed-enquiry {
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 16px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    transition: background .15s;
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.btn-proceed-enquiry:hover {
    background: var(--red-dark);
}

.pd-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pd-qty-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: var(--muted-fg);
}

.pd-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: #fff;
}

.pd-qty-stepper button {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted-fg);
    transition: color .15s;
}

.pd-qty-stepper button:hover {
    color: #000;
}

.pd-qty-stepper input {
    width: 64px;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    padding: 8px 0;
}

.pd-qty-unit {
    font-size: .75rem;
    color: var(--muted-fg);
}

.pd-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .pd-btns {
        flex-direction: row;
    }
}

.btn-add-to-enquiry {
    flex: 1;
    background: var(--red);
    color: #fff;
    padding: 16px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: background .15s;
}

.btn-add-to-enquiry:hover {
    background: var(--red-dark);
}

.btn-add-to-enquiry.flash {
    background: #16a34a;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--red);
    color: var(--red);
    padding: 16px;
    font-size: .875rem;
    font-weight: 500;
    transition: background .15s;
}

@media (min-width: 640px) {
    .btn-whatsapp {
        width: 33%;
    }
}

.btn-whatsapp:hover {
    background: rgba(237, 33, 50, .05);
}

.pd-note {
    text-align: center;
    font-size: .75rem;
    color: var(--muted-fg);
}

.pd-note a {
    color: #000;
    font-weight: 600;
}

.pd-note a:hover {
    color: var(--red);
}

/* Related */
.related-section {
    border-top: 1px solid var(--border);
    background: var(--card);
    padding: 64px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── ENQUIRY ── */
.enq-wrap {
    max-width: 896px;
    margin: 0 auto;
    padding: 96px 16px 64px;
}

.stepper-bar {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.stepper-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stepper-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    transition: background .2s;
    flex-shrink: 0;
}

.stepper-num.inactive {
    background: var(--border);
    color: var(--muted-fg);
}

.stepper-num.active {
    background: #000;
    color: #fff;
}

.stepper-num.done {
    background: var(--red);
    color: #fff;
}

.stepper-label {
    font-size: .75rem;
    font-weight: 500;
    color: var(--muted-fg);
    display: none;
}

@media (min-width: 640px) {
    .stepper-label {
        display: block;
    }
}

.stepper-label.active {
    color: #000;
}

.stepper-line {
    flex: 1;
    height: 1px;
    margin: 0 12px;
    background: var(--border);
}

.stepper-line.done {
    background: var(--red);
}

/* Cart step */
.enq-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.enq-cart-header h1 {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.link-add-more {
    font-size: .75rem;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.link-add-more:hover {
    text-decoration: underline;
}

.cart-empty {
    text-align: center;
    padding: 96px 24px;
    background: var(--card);
    border: 1px solid var(--border);
}

.cart-empty-icon {
    width: 64px;
    height: 64px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cart-empty h2 {
    font-family: var(--serif);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: .875rem;
    color: var(--muted-fg);
    margin-bottom: 32px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.cart-item {
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color .15s;
}

.cart-item:hover {
    border-color: rgba(237, 33, 50, .3);
}

.cart-item-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--border);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: var(--muted-fg);
}

.cart-item-name {
    font-size: .875rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-meta {
    font-size: .75rem;
    color: var(--muted-fg);
    margin-top: 2px;
}

.btn-cart-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-fg);
    border-radius: 4px;
    flex-shrink: 0;
    transition: color .15s, background .15s;
}

.btn-cart-remove:hover {
    color: var(--red);
    background: rgba(237, 33, 50, .1);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, .4);
}

.cart-item-qty .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: var(--muted-fg);
}

.cart-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: #fff;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    font-size: .875rem;
    font-weight: 700;
    color: var(--muted-fg);
    transition: color .15s;
}

.cart-qty-btn:hover {
    color: #000;
}

.cart-qty-inp {
    width: 56px;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    padding: 4px 0;
}

.cart-item-qty .unit {
    font-size: .75rem;
    color: var(--muted-fg);
}

.cart-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 16px 24px;
}

.cart-footer-bar .info {
    font-size: .875rem;
}

.cart-footer-bar .info span {
    color: rgba(255, 255, 255, .6);
}

.btn-proceed {
    background: var(--red);
    color: #fff;
    padding: 12px 32px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .15s;
}

.btn-proceed:hover {
    background: #c81020;
}

/* Auth step */
.auth-wrap {
    max-width: 448px;
    margin: 0 auto;
}

.auth-title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2vw, 2rem);
    text-align: center;
    margin-bottom: 8px;
}

.auth-sub {
    text-align: center;
    font-size: .875rem;
    color: var(--muted-fg);
    margin-bottom: 0;
}

.auth-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-top: 24px;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-tab {
    padding: 12px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .15s, color .15s;
}

.auth-tab.active {
    background: #000;
    color: #fff;
}

.auth-tab:not(.active) {
    background: var(--border);
    color: var(--muted-fg);
}

.auth-tab:not(.active):hover {
    color: #000;
}

.auth-form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-label .req {
    color: var(--red);
}

.form-input {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s;
}

.form-input:focus {
    border-color: var(--red);
}

.form-select {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s;
    color: rgba(0, 0, 0, .75);
}

.form-select:focus {
    border-color: var(--red);
}

.form-textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-size: .875rem;
    outline: none;
    transition: border-color .15s;
    resize: none;
}

.form-textarea:focus {
    border-color: var(--red);
}

.btn-auth {
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 16px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .15s;
}

.btn-auth:hover {
    background: var(--red-dark);
}

.btn-back {
    width: 100%;
    font-size: .75rem;
    color: var(--muted-fg);
    padding: 4px;
    transition: color .15s;
}

.btn-back:hover {
    color: #000;
}

/* Brief step */
.brief-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 1024px) {
    .brief-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.brief-sidebar {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 20px;
}

.brief-sidebar h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700;
    color: var(--muted-fg);
    margin-bottom: 16px;
}

.brief-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brief-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.brief-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.brief-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.brief-item-name {
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.3;
}

.brief-item-meta {
    font-size: 10px;
    color: var(--muted-fg);
    margin-top: 2px;
}

.brief-edit {
    font-size: .75rem;
    color: var(--red);
    font-weight: 600;
    margin-top: 16px;
    cursor: pointer;
    display: inline-block;
}

.brief-edit:hover {
    text-decoration: underline;
}

.brief-form {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 16px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .15s;
}

.btn-submit:hover {
    background: var(--red-dark);
}

/* Done step */
.done-wrap {
    text-align: center;
    padding: 80px 0;
}

.done-icon {
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.done-title {
    font-family: var(--serif);
    font-size: 1.875rem;
    margin-bottom: 12px;
}

.done-sub {
    color: var(--muted-fg);
    max-width: 384px;
    margin: 0 auto 40px;
}

.done-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .done-btns {
        flex-direction: row;
    }
}

.btn-done-primary {
    background: var(--red);
    color: #fff;
    padding: 12px 32px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .15s;
    display: inline-block;
}

.btn-done-primary:hover {
    background: var(--red-dark);
}

.btn-done-border {
    border: 1px solid var(--border);
    padding: 12px 32px;
    font-size: .875rem;
    font-weight: 500;
    transition: border-color .15s;
    display: inline-block;
}

.btn-done-border:hover {
    border-color: #000;
}

/* Error box */
.err-box {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    padding: 12px 16px;
    font-size: .875rem;
    color: #b91c1c;
    display: none;
}

/* ── ABOUT ── */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(237, 228, 221, .75);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 48px;
}

.about-hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.about-hero-content h1 i {
    color: var(--red);
    font-style: italic;
}

.about-hero-content p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, .65);
    line-height: 1.7;
    max-width: 560px;
}

.about-story-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-story-grid {
        flex-direction: row;
    }
}

.about-story-text,
.about-story-img {
    width: 100%;
}

@media (min-width: 1024px) {
    .about-story-text {
        width: 50%;
    }

    .about-story-img {
        width: 50%;
    }
}

.about-story-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-item-bar {
    width: 4px;
    background: var(--red);
    flex-shrink: 0;
    border-radius: 2px;
    opacity: .7;
}

.why-item h4 {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-item p {
    font-size: .875rem;
    color: var(--muted-fg);
    line-height: 1.7;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.brand-box {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 20px;
    transition: border-color .15s;
}

.brand-box:hover {
    border-color: rgba(237, 33, 50, .4);
}

.brand-box .name {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.brand-box .cat {
    font-size: .75rem;
    color: var(--muted-fg);
}

.ind-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .ind-pills {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .ind-pills {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .ind-pills {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ind-pill {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 16px 20px;
    font-size: .875rem;
    font-weight: 500;
    text-align: center;
    transition: border-color .15s, color .15s;
}

.ind-pill:hover {
    border-color: rgba(237, 33, 50, .4);
    color: var(--red);
}

.about-cta {
    position: relative;
    padding: 112px 16px;
    overflow: hidden;
    text-align: center;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
}

.about-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.about-cta-bg-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .8) 50%, rgba(0, 0, 0, .92) 100%);
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-cta-inner h2 i {
    color: var(--red);
    font-style: italic;
}

.about-cta-inner p {
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CONTACT ── */
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(237, 228, 221, .78);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 112px 48px;
}

.contact-hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.contact-hero-content p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, .6);
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 96px 0;
}

@media (min-width: 1024px) {
    .contact-grid {
        flex-direction: row;
    }
}

.contact-info {
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-info {
        width: 38%;
    }
}

.contact-form-wrap {
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-form-wrap {
        width: 62%;
    }
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2vw, 2rem);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(237, 33, 50, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-lbl {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: var(--muted-fg);
    margin-bottom: 4px;
}

.contact-detail-val {
    font-size: .875rem;
    font-weight: 500;
}

.contact-detail-val a {
    transition: color .15s;
}

.contact-detail-val a:hover {
    color: var(--red);
}

.contact-hours {
    margin-top: 48px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 24px;
}

.contact-hours .lbl {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700;
    color: var(--muted-fg);
    margin-bottom: 8px;
}

.contact-hours .day {
    font-size: .875rem;
    font-weight: 500;
}

.contact-hours .time {
    font-size: .875rem;
    color: var(--muted-fg);
}

.contact-form-inner {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px 48px;
}

.contact-form-inner h2 {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2vw, 2rem);
    margin-bottom: 8px;
}

.contact-form-inner .sub {
    font-size: .875rem;
    color: var(--muted-fg);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 48px;
}

.contact-success.show {
    display: flex;
}

.contact-success-icon {
    width: 64px;
    height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-success h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-success p {
    color: var(--muted-fg);
    max-width: 320px;
}

/* ── UTILS ── */
.hidden {
    display: none !important;
}

.red-label {
    color: var(--red);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-img-panel {
        width: 100%;
        min-height: 60vw;
    }

    .hero-text-panel {
        width: 100%;
        padding: 32px 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        padding: 80px 24px;
    }

    .contact-hero-content {
        padding: 80px 24px;
    }

    .contact-form-inner {
        padding: 24px;
    }

    .pd-custom-tiles {
        grid-template-columns: 1fr;
    }

    .brief-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .container-wide {
        padding: 0 16px;
    }

    .nav-inner {
        padding: 0 16px;
    }

    .hero-text-panel {
        padding: 24px 16px;
    }

    .enq-wrap {
        padding: 80px 16px 48px;
    }

    .done-btns {
        flex-direction: column;
        align-items: stretch;
    }
}


@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}













/* product view page css start here */





/* .pt-20 {
    padding-top: 20px;
} */

.pd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 56px;
    align-items: start;
    position: relative;
}

.pd-left,
.pd-right {
    min-width: 0;
}

.pd-main-img {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f4eadf, #fff);
    box-shadow: var(--shadow);
    border: 1px solid rgba(232, 222, 210, 0.9);
}

.pd-main-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.pd-main-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(33, 27, 23, 0.36));
    pointer-events: none;
}

.pd-brand-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--red);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.pd-thumb {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    border-radius: 18px;
    background: var(--cream-2);
    border: 1px solid var(--border);
}

.pd-thumb img {
    width: 100%;
    height: 132px;
    object-fit: cover;
}

.pd-thumb-label {
    position: absolute;
    inset: auto 10px 10px 10px;
    display: flex;
}

.pd-thumb-label span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.pd-photo-note {
    margin-top: 14px;
    color: var(--muted-fg);
    font-size: 0.92rem;
}

.pd-brand-label {
    color: var(--red);
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 850;
    margin-bottom: 14px;
}

.pd-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1rem, 2.5vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.07em;
    color: var(--text);
}

.pd-cat-badge {
    display: inline-flex;
    margin-top: 22px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(141, 31, 31, 0.08);
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 750;
}

.pd-pricing-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 24px;
    margin: 34px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 36px rgba(33, 27, 23, 0.06);
}

.pd-pricing-divider {
    width: 1px;
    height: 52px;
    background: var(--border);
}

.pd-mrp-label,
.pd-moq-label,
.pd-section-lbl,
.pd-features-title,
.pd-specs-title {
    color: black;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pd-mrp-val,
.pd-moq-val {
    margin-top: 8px;
    color: var(--text);
    font-weight: 850;
    font-size: 1.55rem;
}

.pd-mrp-unit {
    margin-left: 6px;
    color: var(--muted-fg);
    font-size: 0.85rem;
    font-weight: 600;
}

.pd-section-lbl,
.pd-features-title,
.pd-specs-title {
    margin-top: 20px;
    margin-bottom: 14px;

}

.pd-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.pd-variant {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-dark);
    background: #fff;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.pd-variant-sel {
    border-color: var(--red);
    color: var(--red);
    background: rgba(141, 31, 31, 0.06);
}

.pd-desc {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.78;
    margin: 0px 0 -24px;
}

.pd-specs-title {
    margin-top: 55px;
}

.pd-features {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: grid;
    gap: 13px;
}

.pd-feature {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 600;
}

.pd-feature svg {
    flex: 0 0 16px;
    margin-top: 3px;
}

.pd-specs {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}

.pd-spec {
    display: grid;
    /* grid-template-columns: 170px 1fr; */
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.pd-spec-label {
    color: var(--muted-fg);
    font-size: 0.86rem;
    font-weight: 800;
}

.pd-spec-val {
    color: var(--text);
    font-weight: 650;
    line-height: 1.45;
}

.pd-custom {
    overflow: hidden;
    margin: 34px 0;
    border: 1px solid rgba(141, 31, 31, 0.22);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 16px 42px rgba(141, 31, 31, 0.08);
}

.pd-custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--red), #b34238);
    color: #fff;
}

.pd-custom-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-custom-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.pd-custom-header .title {
    font-weight: 850;
}

.pd-custom-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.pd-custom-body {
    padding: 22px;
}

.pd-custom-body p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
}

.pd-custom-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pd-custom-tile {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--cream);
}

.pd-custom-tile .t {
    color: var(--text);
    font-weight: 800;
    font-size: 0.92rem;
}

.pd-custom-tile .s {
    margin-top: 4px;
    color: var(--muted-fg);
    font-size: 0.82rem;
    line-height: 1.35;
}

.pd-qty-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 18px;
}

.pd-qty-lbl {
    color: var(--text);
    font-weight: 800;
}

.pd-qty-input {
    width: 96px;
    height: 42px;
    border: 1px solid var(--border-dark);
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-weight: 800;
    text-align: center;
    padding: 0 12px;
}

.pd-qty-unit {
    color: var(--muted-fg);
    font-size: 0.9rem;
}

.pd-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.btn-add-to-enquiry,
.btn-proceed-enquiry {
    min-height: 52px;
    padding: 0 24px;
    font-size: 0.95rem;
}

.btn-whatsapp {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: #fff;
    color: #128c7e;
    border: 1px solid #bde7de;
    font-weight: 800;
}

.pd-note {
    margin-top: 18px;
    color: var(--muted-fg);
    font-size: 0.94rem;
}

.pd-note a {
    color: var(--red);
    font-weight: 850;
}

.related-section {
    padding: 78px 0 94px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.section-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.prod-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(33, 27, 23, 0.07);
}

.prod-card-img {
    position: relative;
    min-height: 290px;
    background: var(--cream-2);
}

.prod-card-img img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.prod-cat-tag {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 850;
}

.prod-card-body {
    padding: 22px;
}

.prod-brand {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 850;
}

/* .prod-name {
    margin-top: 8px;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 850;
} */
.filter-price-styling {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted-fg);
    margin-top: 6px;
}

.prod-pricing {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.prod-pricing-item .label {
    color: var(--muted-fg);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.prod-pricing-item .value {
    margin-top: 5px;
    color: var(--text);
    font-weight: 850;
}

.prod-pricing-item.right {
    text-align: right;
}

.prod-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.btn-view-details,
.btn-add-cart {
    min-height: 42px;
    padding: -1 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff !important;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    background: #fff;
    color: var(--red);
    border: 1px solid var(--red);
}

@media (max-width: 980px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .pd-main-img,
    .pd-main-img img {
        min-height: 420px;
        height: 420px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {

    .pd-main-img,
    .pd-main-img img {
        min-height: 340px;
        height: 340px;
    }

    .pd-thumbs {
        grid-template-columns: 1fr;
    }

    .pd-spec {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pd-pricing-box {
        grid-template-columns: 1fr;
    }

    .pd-pricing-divider {
        width: 100%;
        height: 1px;
    }

    .pd-custom-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pd-custom-tiles,
    .related-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pd-btns,
    .btn-add-to-enquiry,
    .btn-whatsapp,
    .btn-proceed-enquiry {
        width: 100%;
    }
}




/* product view page css end here */


/* ===== Laravel Blade static no-JS overrides ===== */
.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#nav-toggle:checked~.nav-mobile {
    display: flex;
}

.nav-hamburger {
    cursor: pointer;
}

.hero-img-panel .hero-slide:not(.active) {
    display: none;
}

.prod-actions {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto; */
}

.static-note,
.nav-static-note {
    color: var(--muted-fg);
    font-size: .88rem;
    line-height: 1.6;
}

.static-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.static-sidebar-list a,
.static-sidebar-list span {
    color: rgba(0, 0, 0, .72);
    font-size: .86rem;
    line-height: 1.45;
}

.static-sidebar-list a:hover {
    color: var(--red);
}

.static-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: clamp(24px, 4vw, 48px);
    margin: 32px 0 80px;
}

.static-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.static-form-grid .full {
    grid-column: 1 / -1;
}

.static-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.static-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.static-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .7);
    color: var(--muted-fg);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.static-product-count {
    color: var(--muted-fg);
    font-size: .9rem;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .static-form-grid {
        grid-template-columns: 1fr;
    }

    .btn-enquire-nav {
        display: none;
    }
}



.catalogue-category-section {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.catalogue-category-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.catalogue-category-heading h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

.catalogue-category-heading span {
    font-size: 14px;
    color: #666;
}

.static-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.static-sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #222;
    text-decoration: none;
    transition: 0.3s ease;
}

.static-sidebar-list a:hover {
    color: #b28b49;
    padding-left: 5px;
}

.catalogue-empty-state {
    padding: 50px 25px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .catalogue-category-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalogue-category-heading h2 {
        font-size: 22px;
    }
}




.product-add-to-enquiry-form {
    width: 100%;
    margin: 0;
}

.product-add-to-enquiry-button {
    width: 100%;
    min-height: 64px;
    padding: 18px 24px;
    border: 0;
    background: #ed1c2e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.product-add-to-enquiry-button:hover {
    background: #cb1525;
}





.nav-cart-with-count {
    position: relative;
}

.nav-enquiry-count {
    position: absolute;
    top: -9px;
    right: -11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border: 2px solid #eee5dc;
    border-radius: 50px;
    background: #ed1c2e;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.btn-enquire-nav-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    margin-left: 8px;
    padding: 0 6px;
    border-radius: 50px;
    background: #ffffff;
    color: #ed1c2e;
    font-size: 11px;
    font-weight: 800;
}

.nav-mobile-enquiry-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: 7px;
    padding: 0 6px;
    border-radius: 50px;
    background: #ed1c2e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}




.pd-add-enquiry-form {
    width: 100%;
    margin: 0;
    margin-top: -49px;
}

.pd-add-enquiry-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border: 0;
    text-align: left;
    margin-top: 15px;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
}






.enquiry-form-heading {
    max-width: 850px;
    margin-bottom: 35px;
}

.enquiry-customer-form {
    margin-top: 35px;
}

.enquiry-customer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.enquiry-customer-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.enquiry-customer-field-full {
    grid-column: 1 / -1;
}

.enquiry-customer-field label {
    color: #171717;
    font-size: 14px;
    font-weight: 700;
}

.enquiry-customer-field label span {
    color: #ed1c2e;
}

.enquiry-customer-field input,
.enquiry-customer-field textarea {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid #d4c8be;
    border-radius: 0;
    background: #ffffff;
    color: #171717;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.enquiry-customer-field textarea {
    resize: vertical;
}

.enquiry-customer-field input:focus,
.enquiry-customer-field textarea:focus {
    border-color: #ed1c2e;
    box-shadow: 0 0 0 3px rgba(237, 28, 46, 0.08);
}

.enquiry-customer-field input::placeholder,
.enquiry-customer-field textarea::placeholder {
    color: #99918b;
}

.enquiry-customer-error {
    color: #c81424;
    font-size: 12px;
    font-weight: 600;
}

.enquiry-form-product-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #d5c9bf;
    background: #eee5dc;
}

.enquiry-form-product-summary>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 230px;
    gap: 35px;
    padding: 10px 15px;
    background: #ffffff;
}

.enquiry-form-product-summary span {
    color: #625c56;
    font-size: 13px;
    font-weight: 600;
}

.enquiry-form-product-summary strong {
    color: #ed1c2e;
    font-size: 20px;
}

.enquiry-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #d5c9bf;
}

.enquiry-form-footer p {
    max-width: 620px;
    margin: 0;
    color: #6a635d;
    font-size: 13px;
    line-height: 1.7;
}

.enquiry-customer-submit-button {
    min-width: 250px;
    padding: 18px 30px;
    border: 1px solid #ed1c2e;
    background: #ed1c2e;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.enquiry-customer-submit-button:hover {
    background: #cb1425;
}

@media (max-width: 700px) {
    .enquiry-customer-form-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-customer-field-full {
        grid-column: auto;
    }

    .enquiry-form-product-summary {
        flex-direction: column;
    }

    .enquiry-form-product-summary>div {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .enquiry-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .enquiry-customer-submit-button {
        width: 100%;
        min-width: 0;
    }
}




/*
|--------------------------------------------------------------------------
| Add to enquiry notification
|--------------------------------------------------------------------------
*/

.enquiry-product-toast {
    position: fixed;
    top: 95px;
    right: 28px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(390px, calc(100% - 30px));
    padding: 17px 18px;
    border-left: 5px solid #16843d;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    color: #171717;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(35px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.enquiry-product-toast-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.enquiry-product-toast-success {
    border-left-color: #16843d;
}

.enquiry-product-toast-error {
    border-left-color: #c21b2b;
}

.enquiry-product-toast-icon {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #16843d;
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}

.enquiry-product-toast-error .enquiry-product-toast-icon {
    background: #c21b2b;
}

.enquiry-product-toast-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.enquiry-product-toast-content strong {
    color: #171717;
    font-size: 15px;
    font-weight: 700;
}

.enquiry-product-toast-content span {
    color: #675f59;
    font-size: 13px;
    line-height: 1.5;
}

.enquiry-product-toast-close {
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #827a74;
    font-family: Arial, sans-serif;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.enquiry-product-toast-close:hover {
    color: #ed1c2e;
}

/*
|--------------------------------------------------------------------------
| Button status
|--------------------------------------------------------------------------
*/

.catalogue-add-enquiry-btn-loading {
    border-color: #ed1c2e;
    background: #ed1c2e;
    color: #ffffff;
}

.catalogue-add-enquiry-btn-added {
    border-color: #16843d;
    background: #16843d;
    color: #ffffff;
}

.catalogue-add-enquiry-btn-error {
    border-color: #c21b2b;
    background: #c21b2b;
    color: #ffffff;
}

.catalogue-add-enquiry-btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

@media (max-width: 600px) {
    .enquiry-product-toast {
        top: 80px;
        right: 15px;
        left: 15px;
        width: auto;
        padding: 15px;
    }
}





.enquiry-message-popup {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 99999;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: calc(100% - 40px);
    max-width: 420px;
    padding: 16px 45px 16px 16px;

    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.enquiry-message-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.enquiry-message-success {
    background: #198754;
}

.enquiry-message-error {
    background: #dc3545;
}

.enquiry-message-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    color: #198754;
    background: #ffffff;
    border-radius: 50%;
}

.enquiry-message-error .enquiry-message-icon {
    color: #dc3545;
}

.enquiry-message-content {
    display: flex;
    flex-direction: column;
    gap: 3px;

    min-width: 0;
}

.enquiry-message-content strong {
    display: block;
    margin: 0;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.enquiry-message-content span {
    display: block;

    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.enquiry-message-close {
    position: absolute;
    top: 8px;
    right: 10px;

    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;

    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

.enquiry-message-close:hover {
    opacity: 1;
}

.add-to-enquiry-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 575px) {
    .enquiry-message-popup {
        top: 15px;
        right: 15px;
        left: 15px;

        width: auto;
        max-width: none;
    }
}





/* =========================================================
   Product Catalogue Pagination
========================================================= */

.catalogue-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

.catalogue-pagination nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 14px;
}

.catalogue-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.catalogue-pagination .page-item {
    margin: 0;
}

.catalogue-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 8px 14px;

    border: 1px solid #dddddd;
    border-radius: 8px;

    background-color: #ffffff;
    color: var(--red);

    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;

    box-shadow: none;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.catalogue-pagination .page-link:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: #ffffff;
    transform: translateY(-2px);
}

.catalogue-pagination .page-item.active .page-link {
    background-color: var(--red);
    border-color: var(--red);
    color: #ffffff;
    cursor: default;
}

.catalogue-pagination .page-item.disabled .page-link {
    background-color: #f5f5f5;
    border-color: #e5e5e5;
    color: #999999;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.75;
}

.catalogue-pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(175, 51, 53, 0.18);
    outline: none;
}

/* Pagination arrows */
.catalogue-pagination .page-link svg {
    width: 18px;
    height: 18px;
}

/* Mobile responsive */
@media (max-width: 575px) {
    .catalogue-pagination {
        margin: 35px 0;
    }

    .catalogue-pagination .pagination {
        gap: 5px;
    }

    .catalogue-pagination .page-link {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 6px;
    }
}

.catalogue-pagination p.small.text-muted {
    display: none;
}





/* header login button */

.header-auth {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: #b32025;
    /* Baywalk red */
    color: #fff !important;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.btn-login:hover {
    background: #8f181c;
    color: #fff;
}





/* Dropdown */

.user-dropdown {
    position: relative;
}

.user-dropdown-btn {

    display: flex;
    align-items: center;
    gap: 10px;

    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.user-avatar {

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #b71c1c;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown-menu {

    position: absolute;

    top: 48px;

    right: 0;

    width: 220px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    display: none;

    overflow: hidden;

    z-index: 999;
}

.user-dropdown.active .user-dropdown-menu {

    display: block;

}

.dropdown-user {

    padding: 16px;
    font-weight: 600;
}

.user-dropdown-menu a {

    display: block;

    padding: 15px;

    color: #333;

    text-decoration: none;
}

.user-dropdown-menu a:hover {

    background: #f7f7f7;
}

/* Modal */

.logout-modal {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;
}

.logout-modal.show {

    display: flex;
}

.logout-box {

    width: 400px;

    background: #fff;

    border-radius: 15px;

    padding: 30px;

    text-align: center;
}

.logout-actions {

    margin-top: 25px;

    display: flex;

    justify-content: center;

    gap: 15px;
}

.btn-cancel {

    padding: 10px 22px;

    border: none;

    background: #ddd;

    border-radius: 8px;

    cursor: pointer;
}

.btn-confirm {

    padding: 10px 22px;

    border: none;

    background: #b71c1c;

    color: #fff;

    border-radius: 8px;

    cursor: pointer;
}

.btn-confirm:hover {

    background: #991717;
}

@media only screen and (max-width: 600px) {
    .section-bg-border{
            padding: 50px 0 !important;
    }
    .why-section {
    padding: 50px 0;
}
}




/* =========================================================
   BAYWALK RESPONSIVE CATEGORY LISTING
   MOBILE / TABLET ONLY
========================================================= */


/* Desktop: hide mobile controls */

#baywalk-responsive-category-listing-page-category-toggle,
#baywalk-responsive-category-listing-page-sidebar-overlay,
#baywalk-responsive-category-listing-page-sidebar-header {
    display: none;
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media only screen and (max-width: 991px) {

    /* -----------------------------------------
       CATEGORY TOGGLE BUTTON
    ----------------------------------------- */
    .cat-body{
        padding: 0px 0 ;
    }

       #baywalk-responsive-category-listing-page-category-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
        margin: 0;
        padding: 13px 16px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        /* background: #ffffff; */
        color: #222222;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        gap: 20px;
    }


    /* -----------------------------------------
       MAIN LAYOUT
    ----------------------------------------- */

    #baywalk-responsive-category-listing-page-main {
        display: block !important;
    }


    #baywalk-responsive-category-listing-page-products-wrapper {
        width: 100% !important;

        min-width: 0;
    }


    /* =====================================================
       MOBILE CATEGORY SIDEBAR
    ===================================================== */

    #baywalk-responsive-category-listing-page-sidebar {
        position: fixed !important;

        top: 0;
        left: 0;

        width: 320px;
        max-width: 85%;

        height: 100vh;

        margin: 0 !important;

        padding: 0;

        background: #ffffff;

        z-index: 99999;

        overflow-y: auto;

        transform: translateX(-105%);

        transition: transform 0.35s ease;

        box-shadow:
            5px 0 30px rgba(0, 0, 0, 0.15);
    }


    #baywalk-responsive-category-listing-page-sidebar.baywalk-responsive-category-listing-page-sidebar-open {
        transform: translateX(0);
    }


    /* -----------------------------------------
       SIDEBAR HEADER
    ----------------------------------------- */

    #baywalk-responsive-category-listing-page-sidebar-header {
        position: sticky;

        top: 0;

        width: 100%;

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 18px 18px;

        background: #ffffff;

        border-bottom: 1px solid #eeeeee;

        z-index: 5;
    }


    #baywalk-responsive-category-listing-page-sidebar-title {
        margin: 0;

        font-size: 18px;
        font-weight: 700;

        color: #222222;
    }


    #baywalk-responsive-category-listing-page-sidebar-close {
        width: 34px;
        height: 34px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 0;

        border: 0;

        background: #f4f4f4;

        border-radius: 50%;

        color: #222222;

        font-size: 26px;
        line-height: 1;

        cursor: pointer;
    }


    /* Hide old Categories title inside sidebar */

    #baywalk-responsive-category-listing-page-desktop-category-title {
        display: none;
    }


    #baywalk-responsive-category-listing-page-filter-section {
        padding: 10px 18px 30px;
    }


    /* -----------------------------------------
       CATEGORY LINKS
    ----------------------------------------- */

    #baywalk-responsive-category-listing-page-category-list {
        width: 100%;
    }


    #baywalk-responsive-category-listing-page-category-list > a {
        width: 100%;

        display: block;

        padding: 13px 4px;

        border-bottom: 1px solid #eeeeee;

        font-size: 13px;

        line-height: 1.4;
    }


    /* =====================================================
       OVERLAY
    ===================================================== */

    #baywalk-responsive-category-listing-page-sidebar-overlay {
        position: fixed;

        inset: 0;

        display: block;

        background: rgba(0, 0, 0, 0.48);

        z-index: 99998;

        opacity: 0;

        visibility: hidden;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }


    #baywalk-responsive-category-listing-page-sidebar-overlay.baywalk-responsive-category-listing-page-overlay-active {
        opacity: 1;

        visibility: visible;
    }


    /* =====================================================
       PRODUCT GRID - 2 PRODUCTS PER ROW
    ===================================================== */

    #baywalk-responsive-category-listing-page-product-grid {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 16px !important;

        width: 100%;
    }


    /*
       Target all product cards whose IDs start with
       baywalk-responsive-category-listing-page-product-
    */

    [id^="baywalk-responsive-category-listing-page-product-"] {
        min-width: 0;
    }


    #baywalk-responsive-category-listing-page-product-grid
    > .prod-card {
        width: 100% !important;

        min-width: 0 !important;

        margin: 0 !important;
    }


    /* -----------------------------------------
       PRODUCT IMAGE
    ----------------------------------------- */

    #baywalk-responsive-category-listing-page-product-grid
    .prod-card-img {
        width: 100%;

        aspect-ratio: 1 / 1;

        height: auto !important;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-card-img img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* -----------------------------------------
       PRODUCT BODY
    ----------------------------------------- */

    #baywalk-responsive-category-listing-page-product-grid
    .prod-card-body {
        padding: 12px !important;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-name {
        font-size: 14px;

        line-height: 1.35;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-desc {
        font-size: 12px;

        line-height: 1.5;
    }


    /* -----------------------------------------
       ACTION BUTTONS
    ----------------------------------------- */

    #baywalk-responsive-category-listing-page-product-grid
    .prod-actions {
        display: flex;

        flex-direction: column;

        gap: 8px;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .btn-view-details,

    #baywalk-responsive-category-listing-page-product-grid
    .btn-add-cart {

        width: 100%;

        min-height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 8px 10px;

        font-size: 11px;

        text-align: center;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .add-to-enquiry-form {
        width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    #baywalk-responsive-category-listing-page-container {
        padding-left: 12px;
        padding-right: 12px;
    }


    #baywalk-responsive-category-listing-page-category-toggle {
        margin: 14px;

        padding: 11px 13px;

        font-size: 18px;
    }


    #baywalk-responsive-category-listing-page-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-card-body {
        padding: 10px !important;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-name {
        font-size: 12px;

        line-height: 1.35;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-brand {
        font-size: 9px;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-desc {
        display: none;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .static-product-meta {
        gap: 4px;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .static-pill {
        padding: 4px 6px;

        font-size: 9px;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-cat-tag {
        font-size: 8px;

        padding: 4px 6px;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .btn-view-details,

    #baywalk-responsive-category-listing-page-product-grid
    .btn-add-cart {

        min-height: 34px;

        padding: 6px;

        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media only screen and (max-width: 400px) {

    #baywalk-responsive-category-listing-page-product-grid {
        gap: 8px !important;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-card-body {
        padding: 8px !important;
    }


    #baywalk-responsive-category-listing-page-product-grid
    .prod-name {
        font-size: 11px;
    }

}







/* =========================================================
   PRODUCT DETAIL RESPONSIVE IMAGE GALLERY
========================================================= */

#product-detail-resposnive-design-gallery {
    width: 100%;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

#product-detail-resposnive-design-main-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}


#product-detail-resposnive-design-main-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
}


/* Fade animation during image change */

#product-detail-resposnive-design-main-image.product-detail-resposnive-design-image-changing {
    opacity: 0;
}


/* =========================================================
   THUMBNAILS
========================================================= */

#product-detail-resposnive-design-thumbnails {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 14px;
}


.product-detail-resposnive-design-thumbnail {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    cursor: pointer;

    border: 2px solid transparent;

    border-radius: 8px;

    background: transparent;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.product-detail-resposnive-design-thumbnail:hover {
    transform: translateY(-2px);
}


.product-detail-resposnive-design-thumbnail img {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    object-position: center;
}


/* Selected thumbnail */

.product-detail-resposnive-design-thumbnail-active {
    border-color: var(--red) !important;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

    #product-detail-resposnive-design-gallery {
        width: 100%;
    }


    #product-detail-resposnive-design-main-image-wrapper {
        width: 100%;

        height: auto !important;

        aspect-ratio: 1 / 1;
    }


    #product-detail-resposnive-design-main-image {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    #product-detail-resposnive-design-thumbnails {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    #product-detail-resposnive-design-gallery {
        width: 100%;

        margin-bottom: 25px;
    }


    /* Main image */

    #product-detail-resposnive-design-main-image-wrapper {
        width: 100%;

        height: auto !important;

        aspect-ratio: 1 / 1;

        border-radius: 10px;
    }


    #product-detail-resposnive-design-main-image {
        width: 100%;
        height: 100%;

        object-fit: contain;

        object-position: center;
    }


    /* Thumbnails */

    #product-detail-resposnive-design-thumbnails {
        width: 100%;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin-top: 10px;
    }


    .product-detail-resposnive-design-thumbnail {
        border-width: 2px;

        border-radius: 7px;
    }


    .product-detail-resposnive-design-thumbnail img {
        width: 100%;

        aspect-ratio: 1 / 1;

        object-fit: cover;
    }


    /* Make label smaller */

    #product-detail-resposnive-design-thumbnails
    .pd-thumb-label {
        font-size: 9px;
    }


    #product-detail-resposnive-design-photo-note {
        margin-top: 10px;

        font-size: 11px;

        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media only screen and (max-width: 480px) {

    #product-detail-resposnive-design-main-image-wrapper {
        aspect-ratio: 1 / 1;
    }


    #product-detail-resposnive-design-thumbnails {
        gap: 6px;
    }


    #product-detail-resposnive-design-thumbnails
    .pd-thumb-label {
        font-size: 8px;
    }
    .pd-left{
    position: static;
}

}















/* =========================================================
   NEW MOBILE HEADER
========================================================= */

#new-mobile-heared-section-sidebar,
#new-mobile-heared-section-overlay,
#new-mobile-heared-section-navbar-login,
#new-mobile-heared-section-open-button {
    display: none;
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media only screen and (max-width: 991px) {

    .nav-links {
        display: none !important;
    }


    .nav-inner {
        min-height: 70px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding-left: 18px;
        padding-right: 18px;
    }


    .nav-logo img {
        display: block;

        width: auto;
        max-width: 125px;

        height: auto;
    }


    .nav-right {
        display: flex;

        align-items: center;

        gap: 12px;
    }


    /* Login */

    #new-mobile-heared-section-navbar-login {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        min-height: 36px;

        padding: 7px 15px;

        border-radius: 6px;

        background: var(--red);

        color: #ffffff;

        font-size: 12px;
        font-weight: 700;

        text-decoration: none;
    }


    /* Hamburger */

    #new-mobile-heared-section-open-button {
        width: 40px;
        height: 40px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        padding: 0;

        border: 0;

        background: transparent;

        cursor: pointer;
    }


    #new-mobile-heared-section-open-button span {
        width: 24px;
        height: 2px;

        display: block;

        border-radius: 10px;

        background: #222222;
    }


    /* Overlay */

    #new-mobile-heared-section-overlay {
        position: fixed;

        inset: 0;

        display: block;

        background: rgba(0, 0, 0, 0.5);

        z-index: 99998;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }


    #new-mobile-heared-section-overlay.new-mobile-heared-section-overlay-active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }


    /* Sidebar */

    #new-mobile-heared-section-sidebar {
        position: fixed;

        top: 0;
        left: 0;

        width: 330px;
        max-width: 88%;

        height: 100vh;
        height: 100dvh;

        display: block;

        background: #ffffff;

        z-index: 99999;

        overflow-y: auto;
        overflow-x: hidden;

        transform: translateX(-105%);

        transition:
            transform 0.35s cubic-bezier(
                0.4,
                0,
                0.2,
                1
            );

        box-shadow:
            8px 0 35px rgba(0, 0, 0, 0.17);
    }


    #new-mobile-heared-section-sidebar.new-mobile-heared-section-sidebar-open {
        transform: translateX(0);
    }


    /* Sidebar Header */

    #new-mobile-heared-section-sidebar-header {
        position: sticky;

        top: 0;

        min-height: 72px;

        display: flex;

        align-items: center;
        justify-content: end;

        padding: 16px 18px;

        border-bottom: 1px solid #eeeeee;

        background: #ffffff;

        z-index: 10;
    }


    #new-mobile-heared-section-sidebar-logo img {
        display: block;

        max-width: 135px;

        height: auto;
    }


    /* Close */

    #new-mobile-heared-section-close-button {
        width: 38px;
        height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        padding: 0 0 3px;

        border: 0;

        border-radius: 50%;

        background: #f1f1f1;

        color: #222222;

        font-size: 28px;

        cursor: pointer;
    }


    /* User Area */

    #new-mobile-heared-section-user-area {
        padding: 20px 18px;

        border-bottom: 1px solid #eeeeee;

        background: #fafafa;
    }


    #new-mobile-heared-section-sidebar-login {
        width: 100%;

        min-height: 46px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 7px;

        background: var(--red);

        color: #ffffff;

        font-size: 14px;
        font-weight: 700;

        text-decoration: none;
    }


    #new-mobile-heared-section-user-info {
        display: flex;

        align-items: center;

        gap: 12px;
    }


    #new-mobile-heared-section-user-avatar {
        width: 46px;
        height: 46px;

        flex-shrink: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: var(--red);

        color: #ffffff;

        font-size: 17px;
        font-weight: 700;
    }


    #new-mobile-heared-section-user-details {
        min-width: 0;

        display: flex;

        flex-direction: column;

        gap: 3px;
    }


    #new-mobile-heared-section-user-label {
        color: #888888;

        font-size: 11px;
    }


    #new-mobile-heared-section-user-name {
        max-width: 200px;

        overflow: hidden;

        color: #222222;

        font-size: 14px;
        font-weight: 700;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    /* Navigation */

    #new-mobile-heared-section-navigation {
        display: flex;

        flex-direction: column;

        padding: 8px 18px 28px;
    }


    #new-mobile-heared-section-navigation > a {
        width: 100%;

        min-height: 51px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 10px 5px;

        border-bottom: 1px solid #eeeeee;

        color: #222222;

        font-size: 14px;
        font-weight: 600;

        text-decoration: none;

        transition:
            padding-left 0.2s ease,
            color 0.2s ease,
            background 0.2s ease;
    }


    #new-mobile-heared-section-navigation > a:hover {
        padding-left: 9px;

        color: var(--red);

        background: #fafafa;
    }

    /* Mobile Navigation Dropdown (Industries) */
    .mobile-nav-dropdown {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-nav-dropdown-toggle {
        width: 100%;
        min-height: 51px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 5px;
        background: none;
        border: none;
        color: #222222;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        text-align: left;
        transition: padding-left 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .mobile-nav-dropdown-toggle:hover {
        padding-left: 9px;
        color: var(--red);
        background: #fafafa;
    }

    .mobile-nav-dropdown.open .mobile-nav-dropdown-toggle {
        color: var(--red);
        background: #fafafa;
    }

    .mobile-nav-dropdown-arrow {
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .mobile-nav-dropdown.open .mobile-nav-dropdown-arrow {
        transform: rotate(180deg);
        color: var(--red);
    }

    .mobile-nav-dropdown-menu {
        display: none;
        background: #fcfcfc;
        padding: 4px 0 8px 12px;
        border-top: 1px solid #f2f2f2;
    }

    .mobile-nav-dropdown.open .mobile-nav-dropdown-menu {
        display: block;
    }

    .mobile-nav-dropdown-link {
        width: 100%;
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
        color: #444444 !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        text-decoration: none;
        border-left: 2px solid transparent;
        transition: all 0.2s ease;
    }

    .mobile-nav-dropdown-link:hover {
        color: var(--red) !important;
        padding-left: 16px;
        background: #f4f4f4;
        border-left-color: var(--red);
    }

    .mobile-nav-dropdown-link.active {
        color: var(--red) !important;
        font-weight: 700 !important;
        border-left-color: var(--red);
        background: #fff5f5;
    }


    #new-mobile-heared-section-enquiry-count {
        min-width: 24px;
        height: 24px;

        display: inline-flex;

        align-items: center;
        justify-content: center;

        padding: 0 7px;

        border-radius: 20px;

        background: var(--red);

        color: #ffffff;

        font-size: 10px;
        font-weight: 700;
    }


    #new-mobile-heared-section-logout-link {
        margin-top: 9px;

        color: var(--red) !important;
    }


    .nav-mobile {
        display: none !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .nav-inner {
        min-height: 64px;

        padding-left: 14px;
        padding-right: 14px;
    }


    .nav-logo img {
        max-width: 110px;
    }


    .nav-right {
        gap: 8px;
    }


    #new-mobile-heared-section-navbar-login {
        min-height: 34px;

        padding: 7px 12px;

        font-size: 11px;
    }


    #new-mobile-heared-section-open-button {
        width: 36px;
        height: 36px;
    }


    #new-mobile-heared-section-open-button span {
        width: 21px;
    }


    .nav-cart {
        width: 36px;
        height: 36px;
    }


    #new-mobile-heared-section-sidebar {
        width: 300px;

        max-width: 88%;
    }


    #new-mobile-heared-section-sidebar-header {
        min-height: 66px;

        padding: 14px 15px;
    }


    #new-mobile-heared-section-sidebar-logo img {
        max-width: 120px;
    }


    #new-mobile-heared-section-user-area {
        padding: 16px 15px;
        display: none;
    }
    a#new-mobile-heared-section-sidebar-logo{
        display: none;
    }


    #new-mobile-heared-section-navigation {
        padding: 6px 15px 25px;
    }


    #new-mobile-heared-section-navigation > a {
        min-height: 48px;

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media only screen and (max-width: 420px) {

    .nav-inner {
        padding-left: 10px;
        padding-right: 10px;
    }


    .nav-logo img {
        max-width: 95px;
    }


    .nav-right {
        gap: 6px;
    }


    #new-mobile-heared-section-navbar-login {
        min-height: 32px;

        padding: 6px 9px;

        font-size: 10px;
    }


    #new-mobile-heared-section-open-button {
        width: 34px;
        height: 34px;
    }


    #new-mobile-heared-section-sidebar {
        width: 285px;

        max-width: 90%;
    }

}




@media (max-width: 700px) {

    .enquiry-cart-other-products-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .enquiry-cart-other-product-image {
        height: 170px;
        padding: 12px;
    }

    .enquiry-cart-other-product-content {
        padding: 12px;
    }

    .enquiry-cart-other-product-category {
        top: 10px;
        left: 10px;
        padding: 6px 8px;
        font-size: 8px;
        letter-spacing: 1px;
    }

    .enquiry-cart-other-product-sku {
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .enquiry-cart-other-product-content h3 {
        min-height: 42px;
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.35;
    }

    .enquiry-cart-other-product-price {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .enquiry-cart-other-product-price del {
        margin-left: 4px;
        font-size: 10px;
    }

    .enquiry-cart-other-product-content button {
        padding: 11px 6px;
        font-size: 9px;
        letter-spacing: 1px;
    }
}







