:root {
    --brand: #f58216;
    --brand-2: #ffad38;
    --brand-dark: #a34700;
    --brand-deep: #241109;
    --ink: #211814;
    --muted: #75645a;
    --surface: #fff8f1;
    --surface-2: #fff0e2;
    --line: #f1dbc6;
    --shadow: 0 22px 55px rgba(50, 24, 8, .12);
}

* { box-sizing: border-box; }

body {
    color: var(--ink);
    background: #fffaf5;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--brand-dark); }

/* Local layout fallback: keeps the site proper even if Bootstrap CDN is slow or blocked. */
.container1 {
    width: min(1140px, calc(100% - 32px));
    margin-inline: auto;
    
}
.process-section {
    background-color: var(--surface-2); /* અથવા તમારી પસંદગીનો કલર જેમ કે #f8f9fa */
    width: 100%;
    margin: 0;
    padding: 80px 0; /* ઉપર-નીચે સ્પેસ આપવા માટે */
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
}

.row > * {
    padding-inline: 12px;
    width: 100%;
}

.g-3 { row-gap: 1rem; }
.g-4 { row-gap: 1.5rem; }
.g-5 { row-gap: 3rem; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.ms-auto { margin-left: auto; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-decoration-none { text-decoration: none; }
.text-dark { color: var(--ink); }
.small { font-size: .875rem; }
.lead { font-size: 1.15rem; font-weight: 400; }
.display-4 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.fw-bold { font-weight: 900; }
.navbar-expand-lg .navbar-nav,
.navbar-nav {
    display: flex;
    align-items: center;
    gap: .2rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.navbar .container {
    width: 100% !important; /* 1140px ની મર્યાદા કાઢી નાખવા માટે */
    max-width: 100% !important;
    padding-inline: 5rem; /* સાવ ખૂણામાં ન ચોંટે એટલે થોડી જગ્યા */
    display: flex;
    justify-content: space-between;
}
/* .navbar-collapse {
    display: flex;
    flex: 1 1 auto;
} */

.navbar-collapse {
    flex-grow: 0; 
}

@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
}

@media (min-width: 768px) {
    .col-md-2 { width: 16.6667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.3333%; }
    .col-md-5 { width: 41.6667%; }
    .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.6667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.3333%; }
    .col-lg-5 { width: 41.6667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.3333%; }
    .col-lg-8 { width: 66.6667%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.3333%; }
}

.navbar {
    min-height: 82px;
    box-shadow: 0 10px 25px rgba(33, 24, 20, .08);
}


.site-header {
    border-bottom: 1px solid #eee7e0;
}

.navbar .nav-link {
    color: #1f1a17;
    font-weight: 800;
    font-size: 1rem;
    padding-inline: 1.05rem !important;
}

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

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: var(--ink);
    text-decoration: none;
    min-width: auto !important; /* 300px કાઢીને auto કરી દો */
}

.brand-lockup img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: .15rem;
    line-height: 1;
    
}

.brand-copy strong {
    color: #16120f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.68rem;
    font-weight: 900;
    letter-spacing: .01em;
}

.brand-copy em {
    color: var(--brand);
    font-style: normal;
}

.brand-copy small {
    color: #7d6f68;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .42em;
}

.btn-header-quote {
    border-radius: 999px;
    padding: .9rem 1.45rem;
    font-size: .98rem;
    font-weight: 900;
    box-shadow: none;
}

.btn {
    border-radius: 7px;
    font-weight: 700;
}

.btn-brand {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: #d96908;
    --bs-btn-hover-border-color: #d96908;
    --bs-btn-hover-color: #fff;
    box-shadow: 0 12px 28px rgba(245, 130, 22, .28);
}

.btn-outline-brand {
    --bs-btn-color: var(--brand-dark);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
    --bs-btn-hover-color: #fff;
}

.btn-brand-soft {
    background: #fff1e4;
    color: var(--brand-dark);
    border: 1px solid #ffd4ad;
}

.btn-brand-soft:hover { background: var(--brand); color: #fff; }
.badge-brand { background: #fff0e2; color: var(--brand-dark); }
.brand-icon { color: var(--brand); }

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--brand-deep);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.0) 60%);
    z-index: 1;
}

/* .hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border: 90px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    z-index: 1;
} */

.hero .container { position: relative; z-index: 2; }
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slider span {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1.06);
    animation: heroSlide 18s infinite;
}

.hero-bg-slider span:nth-child(2) { animation-delay: 6s; }
.hero-bg-slider span:nth-child(3) { animation-delay: 12s; }

@keyframes heroSlide {
    0% { opacity: 0; transform: scale(1.06); }
    8% { opacity: 1; }
    33% { opacity: 1; transform: scale(1); }
    41% { opacity: 0; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.06); }
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .8rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    margin-bottom: 1rem;
}

.hero-title {
    max-width: 520px;
    font-size: 55px;
    font-weight: 500;
    line-height: .94;
    letter-spacing: 0;
    margin-bottom: 1.4rem;
}

.hero-copy {
    max-width: 640px;
    font-size: 1.18rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    margin-top: 2rem;
}

.hero-metrics div {
    background: rgba(255,255,255,.09);
    padding: 1rem;
}

.hero-metrics strong {
    display: block;
    font-size: 1.55rem;
}

.hero-metrics span {
    color: rgba(255,255,255,.68);
    font-size: .85rem;
}

.hero-showcase {
    position: relative;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    max-width: 540px;
    margin-left: auto;
}

.hero-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    border-radius: 12px;
    margin-bottom: 14px;
}

.hero-card-head span { display: block; color: var(--muted); font-size: .9rem; }
.hero-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.hero-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-product-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
    max-height: 150px;
}

.hero-note {
    color: rgba(255,255,255,.78);
    font-size: .9rem;
    padding-top: 14px;
}

.section-soft { 
    background: #f37f0c14; 
}
.intro-band { padding: 70px 0; background: #fff; }
.eyebrow {
    color: var(--brand);
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-size: .78rem;
}

/* .test img {
   justify-content: center;
   width: 100%;
    
    object-fit: cover; 
} */

.text-muted-green { color: var(--muted); }
.section-title {
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    font-weight: 950;
    line-height: 1.04;
    margin: .35rem 0 1rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.category-card,
.product-card,
.brand-card,
.service-card,
.stat-card,
.filter-panel,
.export-help,
.product-toolbar {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover,
.product-card:hover,
.brand-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 130, 22, .55);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.25rem;
    min-height: 145px;
}

.stat-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--surface-2);
    color: var(--brand);
    font-size: 1.3rem;
    margin-bottom: .8rem;
}

.stat-card h3 { font-size: 2rem; font-weight: 950; margin: 0; }
.stat-card p { color: var(--muted); margin: 0; }

.category-card {
    padding: 1.45rem;
    min-height: 250px;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff4e8, #ffd7ad);
    color: var(--brand-dark);
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.category-card h4,
.category-card h5 {
    font-weight: 900;
    margin-bottom: .65rem;
}

.category-card span {
    color: var(--brand-dark);
    font-weight: 800;
}

.product-card {
    height: 100%;
    overflow: hidden;
}

.product-thumb,
.placeholder-img {
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: 0;
    background: #fff4ea;
}

.product-thumb {
    object-fit: contain;
    padding: 10px;
}

.placeholder-img {
    display: grid;
    place-items: center;
    color: var(--brand-dark);
    font-size: 2.5rem;
}

.product-card h5 {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
}

.product-brand {
    color: var(--brand-dark);
    font-size: .82rem;
    font-weight: 800;
    margin-bottom: .45rem;
}

.brand-card {
    padding: 1.1rem;
    min-height: 150px;
}

.brand-card i {
    color: var(--brand);
    font-size: 1.6rem;
}

.brand-card strong { display: block; margin: .45rem 0; }
.brand-card p { color: var(--muted); font-size: .86rem; margin: 0; }

.page-hero {
    background:
        radial-gradient(circle at 92% 8%, rgba(255,255,255,.22), transparent 22%),
        linear-gradient(105deg, #241109, #7b3506 58%, #f58216);
    color: #fff;
    padding: 88px 0;
}

.product-browser { padding: 56px 0; }
.filter-panel {
    padding: 1.25rem;
    position: sticky;
    top: 100px;
}

.filter-panel h5 { font-weight: 950; margin-bottom: 1rem; }
.filter-panel .form-control,
.filter-panel .form-select,
.form-control,
.form-select {
    border-color: var(--line);
    border-radius: 7px;
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(245, 130, 22, .16);
}

.export-help {
    padding: 1.2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #fff, #fff1e4);
}

.export-help i {
    color: #25d366;
    font-size: 2rem;
}

.export-help h6 { font-weight: 900; margin-top: .55rem; }
.export-help p { color: var(--muted); font-size: .9rem; }
.export-help a { font-weight: 800; text-decoration: none; }

.product-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.product-toolbar strong {
    color: var(--brand-dark);
    font-size: 1.35rem;
}

.product-toolbar span { color: var(--muted); font-size: .9rem; }

.service-card {
    padding: 1.5rem;
    min-height: 240px;
}

.service-card span {
    display: inline-block;
    color: var(--brand-dark);
    background: var(--surface-2);
    border-radius: 999px;
    padding: .25rem .65rem;
    font-weight: 900;
    font-size: .78rem;
    margin-bottom: 1rem;
}

.service-card i {
    display: block;
    color: var(--brand);
    font-size: 2rem;
    margin-bottom: .8rem;
}

.service-card h4,
.service-card h5 { font-weight: 900; }
.service-card p { color: var(--muted); margin: 0; }

.form-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1.6rem;
}

.form-title {
    font-weight: 950;
    margin-bottom: .25rem;
}

.contact-card {
    background:
        linear-gradient(180deg, rgba(255, 241, 228, .9), #fff),
        #fff;
}

.contact-card > img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-weight: 950;
}

.contact-card p {
    color: var(--muted);
}

.contact-card div {
    display: grid;
    grid-template-columns: 42px 88px 1fr;
    gap: .8rem;
    align-items: center;
    padding: .85rem 0;
    border-top: 1px solid var(--line);
}

.contact-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--surface-2);
    color: var(--brand);
    border-radius: 8px;
}

.contact-card strong { font-weight: 900; }
.contact-card span { color: var(--muted); }

/* .site-cta {
    padding: 54px 0 0;
    background: #fffaf5;
} */

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(115deg, #241109, #8a3d08 58%, #f58216);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    font-weight: 950;
    margin: .3rem 0;
}

.cta-panel p {
    color: rgba(255,255,255,.78);
    margin: 0;
}

.footer {
    background: var(--brand-deep);
}

.footer a {
    color: rgba(255, 255, 255, .72);
    display: block;
    text-decoration: none;
    margin-bottom: .45rem;
}
.footer a:hover { color: #fff; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: .8rem;
}
.footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
    z-index: 20;
}

.admin-body {
    background:
        radial-gradient(circle at 92% 8%, rgba(245, 130, 22, .14), transparent 24%),
        linear-gradient(180deg, #fff8f1, #fff);
}

.admin-shell {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 18px;
    background:
        radial-gradient(circle at 30% 0%, rgba(255, 173, 56, .38), transparent 34%),
        linear-gradient(180deg, #241109, #6d3008);
    color: #fff;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 78px;
    padding: .8rem;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
}

.admin-logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.admin-logo strong,
.admin-logo small {
    display: block;
}

.admin-logo strong {
    font-weight: 950;
    text-transform: uppercase;
    line-height: 1;
}

.admin-logo small {
    color: rgba(255,255,255,.68);
    font-weight: 700;
    margin-top: .25rem;
}

.admin-nav {
    display: grid;
    gap: .45rem;
    margin-top: 1.4rem;
}

.admin-nav a,
.admin-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: rgba(255,255,255,.78);
    padding: .88rem .95rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
}

.admin-nav a i,
.admin-sidebar-footer a i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.09);
}

.admin-nav a:hover,
.admin-nav a.active,
.admin-sidebar-footer a:hover {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.admin-nav a.active {
    box-shadow: inset 4px 0 0 var(--brand-2);
}

.admin-sidebar-footer {
    display: grid;
    gap: .45rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
}

.admin-main {
    min-width: 0;
    padding: 24px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 45px rgba(50, 24, 8, .08);
    backdrop-filter: blur(10px);
}

.admin-kicker {
    display: inline-block;
    color: var(--brand);
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .76rem;
}

.admin-topbar h1 {
    font-weight: 950;
    margin: .12rem 0 0;
    line-height: 1;
}

.admin-user-pill {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem .9rem;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--brand-dark);
    font-weight: 850;
}

.admin-content {
    display: grid;
    gap: 1.25rem;
}

.admin-alert {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(50, 24, 8, .08);
}

.admin-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.6rem;
    color: #fff;
    border-radius: 16px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,.2), transparent 22%),
        linear-gradient(115deg, #241109, #8a3d08 62%, #f58216);
    box-shadow: var(--shadow);
}

.admin-hero-card span {
    color: rgba(255,255,255,.68);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.admin-hero-card h2 {
    max-width: 720px;
    font-weight: 950;
    margin: .35rem 0;
}

.admin-hero-card p {
    color: rgba(255,255,255,.76);
    margin: 0;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-stat-card {
    position: relative;
    display: block;
    min-height: 155px;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(50, 24, 8, .07);
}

.admin-stat-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -35px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--surface-2);
}

.admin-stat-card i {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff4e8, #ffd6aa);
    color: var(--brand-dark);
    font-size: 1.45rem;
}

.admin-stat-card span,
.admin-stat-card strong {
    position: relative;
    z-index: 1;
    display: block;
}

.admin-stat-card span {
    margin-top: 1.1rem;
    color: var(--muted);
    font-weight: 800;
}

.admin-stat-card strong {
    font-size: 2.25rem;
    font-weight: 950;
    line-height: 1;
}

.admin-panel,
.admin-form-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(50, 24, 8, .07);
}

.admin-panel {
    padding: 1rem;
}

.admin-form-card {
    padding: 1.2rem;
}

.sticky-admin-card {
    position: sticky;
    top: 24px;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-panel-head h3 {
    font-weight: 950;
    margin: .12rem 0 0;
}

.admin-table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0 .55rem;
}

.admin-table thead th {
    color: var(--muted);
    border: 0;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-table tbody tr {
    box-shadow: 0 10px 28px rgba(50, 24, 8, .06);
}

.admin-table tbody td {
    border: 0;
    background: #fffaf5;
    padding: .9rem;
}

.admin-table tbody td:first-child {
    border-radius: 12px 0 0 12px;
}

.admin-table tbody td:last-child {
    border-radius: 0 12px 12px 0;
}

.admin-table small {
    display: block;
    color: var(--muted);
    margin-top: .15rem;
}

.btn-soft,
.btn-danger-soft {
    border: 1px solid transparent;
    font-weight: 900;
}

.btn-soft {
    background: var(--surface-2);
    color: var(--brand-dark);
}

.btn-soft:hover {
    background: var(--brand);
    color: #fff;
}

.btn-danger-soft {
    background: #fff0f0;
    color: #b42318;
}

.btn-danger-soft:hover {
    background: #d92d20;
    color: #fff;
}

.admin-product-cell {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 280px;
}

.admin-product-cell img,
.admin-product-cell > span {
    width: 70px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
}

.admin-product-cell img {
    object-fit: contain;
    padding: 5px;
}

.admin-product-cell > span {
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 1.5rem;
}

.admin-product-cell strong {
    display: block;
    line-height: 1.2;
}

.admin-chip,
.asset-dot {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .55rem;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--brand-dark);
    font-weight: 850;
    font-size: .8rem;
    text-decoration: none;
    margin: .1rem;
}

.asset-dot {
    background: #fff;
    border: 1px solid var(--line);
}

.admin-edit-preview {
    width: 100%;
    max-height: 210px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fffaf5;
    padding: 10px;
    margin-bottom: 1rem;
}

.admin-brand-tile {
    display: flex;
    gap: 1rem;
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fffaf5;
}

.admin-brand-tile > i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--brand);
    font-size: 1.35rem;
}

.admin-brand-tile strong {
    display: block;
    font-weight: 950;
}

.admin-brand-tile p {
    color: var(--muted);
    margin: .25rem 0 .75rem;
    font-size: .9rem;
}

.inquiry-table td:first-child {
    min-width: 190px;
}

.message-cell {
    min-width: 280px;
    color: var(--muted);
}

.security-card {
    text-align: left;
}

.security-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    color: var(--brand-dark);
    background: linear-gradient(135deg, #fff4e8, #ffd6aa);
    font-size: 1.9rem;
}

.login-logo {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.admin-login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 78% 18%, rgba(245, 130, 22, .34), transparent 24%),
        linear-gradient(135deg, #241109, #733105 62%, #f58216);
}

.admin-login-wrap {
    width: min(1050px, 100%);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 35px 100px rgba(0,0,0,.28);
}

.admin-login-brand {
    padding: 3rem;
    color: #fff;
    background:
        linear-gradient(rgba(36,17,9,.3), rgba(36,17,9,.72)),
        url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.admin-login-brand img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0,0,0,.2));
}

.admin-login-brand span {
    display: block;
    color: rgba(255,255,255,.72);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    margin: 2.5rem 0 .7rem;
}

.admin-login-brand h1 {
    font-weight: 950;
    line-height: 1.02;
    max-width: 560px;
}

.admin-login-brand p {
    color: rgba(255,255,255,.76);
    max-width: 460px;
}

.admin-login-card {
    padding: 3rem;
    background: rgba(255,255,255,.96);
}

.admin-login-card h2 {
    font-weight: 950;
    margin: .5rem 0 .2rem;
}

.admin-login-card p {
    color: var(--muted);
}

.admin-input-icon {
    position: relative;
}

.admin-input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    z-index: 1;
}

.admin-input-icon .form-control {
    padding-left: 42px;
}
.login-logo {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.card {
    border-color: var(--line);
    border-radius: 8px;
}

.table {
    vertical-align: middle;
}

.admin-page-title {
    margin-bottom: 1.4rem;
}

.admin-page-title span {
    color: var(--brand);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.admin-page-title h1 {
    font-weight: 950;
    margin: .2rem 0 0;
}

@media (max-width: 991px) {
    .hero { min-height: auto; padding: 80px 0; }
    .filter-panel { position: static; }
    .cta-panel { align-items: flex-start; flex-direction: column; }
    .brand-lockup { min-width: auto; }
    .navbar-collapse {
        padding: 1rem 0;
    }
    .navbar-nav {
        align-items: flex-start;
    }
    .admin-shell {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: static;
        height: auto;
    }
    .admin-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-sidebar-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sticky-admin-card {
        position: static;
    }
    .admin-login-wrap {
        grid-template-columns: 1fr;
    }
    .admin-login-brand {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-strip { display: none; }
    .brand-lockup img { width: 48px; height: 48px; }
    .brand-copy strong { font-size: 1.18rem; }
    .brand-copy small { font-size: .58rem; letter-spacing: .25em; }
    .hero-title { font-size: 2.5rem; }
    .hero-metrics { grid-template-columns: 1fr; }
    .hero-product-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading,
    .product-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-main {
        padding: 14px;
    }
    .admin-topbar,
    .admin-hero-card {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-stats-grid,
    .admin-nav,
    .admin-sidebar-footer {
        grid-template-columns: 1fr;
    }
    .admin-login-card {
        padding: 1.5rem;
    }
}

/* ══════════════════════════════════════
   OUR PRODUCT CATEGORIES SECTION
══════════════════════════════════════ */
.pcat-section {
    background: #faebdf;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}
/* .pcat-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(232,101,26,0.06);
    pointer-events: none;
}
.pcat-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(232,101,26,0.04);
    pointer-events: none;
} */

/* Header */
.pcat-header { text-align: center; margin-bottom: 48px; }
.pcat-header-line {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.pcat-header-line::before,
.pcat-header-line::after {
    content: '';
    display: block;
    width: 52px; height: 2px;
    background: linear-gradient(to right, #E8651A, #FF8C42);
    border-radius: 2px;
}
.pcat-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #E8651A;
    display: none;
}
.pcat-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    font-weight: 900;
    color: #1A0A00;
    letter-spacing: -0.3px;
}

/* Grid */
.pcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

/* Card */
.pcat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid #FFE0CC;
    box-shadow: 0 4px 18px rgba(232,101,26,0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    cursor: pointer;
}
.pcat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(232,101,26,0.18);
    border-color: #E8651A;
    text-decoration: none;
}

/* Image Area */
.pcat-img-wrap {
    position: relative;
    background: linear-gradient(135deg, #FFF8F2 0%, #FFF0E0 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pcat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    transition: transform .35s;
}
.pcat-card:hover .pcat-img-wrap img {
    transform: scale(1.07);
}
.pcat-placeholder {
    font-size: 48px;
    color: #E8651A;
    opacity: 0.5;
}

/* Badge */
.pcat-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(233, 99, 10, 0.12);
    color: #0a0502;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(248, 110, 31, 0.25);
    letter-spacing: 0.04em;
}

/* Orange Label Bottom */
.pcat-label {
    background: linear-gradient(105deg, #E8651A 0%, #FF8C42 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex: 1;
}
.pcat-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.pcat-arrow {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: transform .22s;
    flex-shrink: 0;
}
.pcat-card:hover .pcat-arrow {
    transform: translateX(4px);
    color: #fff;
}

/* View All Button */
.pcat-viewall { text-align: center; }
.pcat-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #E8651A;
    border: 2px solid #E8651A;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .22s, color .22s, transform .22s;
}
.pcat-viewall-btn:hover {
    background: linear-gradient(105deg, #E8651A, #FF8C42);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .pcat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .pcat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pcat-title { font-size: 26px; }
    .pcat-img-wrap { height: 160px; }
}
@media (max-width: 480px) {
    .pcat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pcat-section { padding: 48px 0 56px; }
    .pcat-title { font-size: 22px; }
    .pcat-img-wrap { height: 130px; }
    .pcat-name { font-size: 13px; }
}