/* ==========================================================================
   Storefront polish — uniform product cards and category tiles.
   Loaded after style.css / responsive.css so it wins on the few rules it
   overrides. Scoped to card internals only; no layout/grid changes.
   ========================================================================== */

/* --- category / subcategory tiles ---------------------------------------- */
.cat-img img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    background: #f4f5f8;
}
.sub___cat___name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

/* --- homepage category row: keep the feature tile in proportion ---------- */
.category___image__here img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    background: #f4f5f8;
}

/* --- brand strip: stop logos stretching ---------------------------------- */
.brand__item img,
.brand-item img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

/* --- shop mega menu: column count follows the number of categories -------- */
.mega_menu {
    grid-template-columns: repeat(auto-fit, minmax(143px, 1fr));
    max-width: min(940px, calc(100vw - 40px));
    width: auto;
    min-width: 640px;
}
.mega_menu > ul {
    padding: 14px 10px;
    margin: 0;
}
.mega_menu .cat-title {
    font-weight: 700;
}

/* ==========================================================================
   Unified product card (partials/card.blade.php)
   ========================================================================== */
:root {
    --pc-accent: var(--brand-accent, #0B4DA2);
    --pc-ink: #16203A;
    --pc-muted: #8A93A8;
    --pc-line: #E4E8F1;
}

.pcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--pc-line);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.product_item:hover {
    border-color: #CFD6E6;
    box-shadow: 0 16px 34px -20px rgba(12, 20, 64, .38);
    transform: translateY(-2px);
}

/* --- media --------------------------------------------------------------- */
.pcard-media {
    position: relative;
    background: #f4f5f8;
}
.pcard-media a { display: block; }
.pcard-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    transition: transform .4s ease;
}
.pcard:hover .pcard-media img { transform: scale(1.035); }

.pcard-save {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--pc-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 5px 9px;
    border-radius: 6px;
    line-height: 1;
}

/* --- body ---------------------------------------------------------------- */
.pcard-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 13px 13px 14px;
    gap: 9px;
}
.pcard-name {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.38;
    min-height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}
.pcard-name a { color: var(--pc-ink); text-decoration: none; }
.pcard-name a:hover { color: var(--pc-accent); }

.pcard-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.pcard-new { font-size: 17px; font-weight: 700; color: var(--pc-accent); letter-spacing: -.01em; }
.pcard-old { font-size: 13px; color: var(--pc-muted); }

/* --- actions: pinned to the bottom whatever the title length -------------- */
.pcard-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.pcard-cart {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--pc-accent);
    border-radius: 8px;
    background: #fff;
    color: var(--pc-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .16s, color .16s;
}
.pcard-cart:hover { background: var(--pc-accent); color: #fff; }

.pcard-buy {
    flex: 1 1 auto;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--pc-accent);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: filter .16s, transform .16s;
}
.pcard-buy:hover { filter: brightness(1.15); }
.pcard-buy:active { transform: translateY(1px); }

@media (max-width: 575px) {
    .pcard-body { padding: 10px 10px 11px; gap: 7px; }
    .pcard-name { font-size: 13px; min-height: 36px; }
    .pcard-new { font-size: 15px; }
    .pcard-cart { width: 38px; height: 38px; }
    .pcard-buy { height: 38px; font-size: 11.5px; letter-spacing: .04em; }
}

/* ==========================================================================
   Product grids — 5 across on desktop, stepping down with the viewport.
   .product_sliders  = full-width rows (Best Selling)
   .category-product = listing grid (sits beside the filter sidebar)
   .product_slider   = homepage category row (narrower column, so one less)
   ========================================================================== */
.product_sliders,
.category-product {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.product_slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 1399px) {
    .product_sliders { grid-template-columns: repeat(5, 1fr); }
    .category-product { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1199px) {
    .product_sliders  { grid-template-columns: repeat(4, 1fr); }
    .category-product { grid-template-columns: repeat(3, 1fr); }
    .product_slider   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .product_sliders  { grid-template-columns: repeat(3, 1fr); }
    .category-product { grid-template-columns: repeat(3, 1fr); }
    .product_slider   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .product_sliders,
    .category-product,
    .product_slider { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* subcategory strip follows the same rhythm */
@media (max-width: 1199px) { .category-slider { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .category-slider { grid-template-columns: repeat(3, 1fr); gap: 8px; } }

/* ==========================================================================
   Hero slider — banners come in mixed ratios (2.29 and 2.92), and the theme
   sizes .slider-item to a fixed 425px while the global img{height:100%}
   stretches the picture to fill it. Cover-crop instead of distorting.
   ========================================================================== */
.slider-item {
    width: 100%;
    height: clamp(190px, 34vw, 520px);
    overflow: hidden;
    background: #EDF1F8;
}
.slider-item > a { display: block; width: 100%; height: 100%; }
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* arrows should sit above the artwork, not be swallowed by it */
.main_slider .owl-prev,
.main_slider .owl-next { background: rgba(255, 255, 255, .85) !important; color: var(--pc-accent) !important; }

/* ==========================================================================
   Brand strip — wordmark logos, not circular photo crops.
   ========================================================================== */
.category-sliderss {
    display: grid;
    /* auto-fit so the row adapts to however many brands exist */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}
.brand-item {
    background: #fff;
    border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.brand-item:hover {
    border-color: #C6D2E8;
    box-shadow: 0 14px 30px -20px rgba(12, 20, 64, .4);
    transform: translateY(-2px);
}
.brand-item a { display: flex; align-items: center; justify-content: center; width: 100%; }
.brand-item img {
    opacity: 1;
    padding: 0;
    border-radius: 0;
    max-height: 54px;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1199px) { .category-sliderss { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); } }
@media (max-width: 767px)  { .category-sliderss { grid-template-columns: repeat(3, 1fr); gap: 10px; }
                             .brand-item { min-height: 70px; padding: 10px 8px; }
                             .brand-item img { max-height: 40px; } }
@media (max-width: 479px)  { .category-sliderss { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Listing page header (subcategory / category)
   ========================================================================== */
.page-head {
    background: linear-gradient(180deg, #F4F7FC 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--pc-line, #E4E8F1);
    padding: 24px 0 22px;
    margin-bottom: 22px;
}
.page-head-inner { display: flex; align-items: center; gap: 18px; }

.page-head-thumb {
    flex: 0 0 auto;
    width: 76px; height: 76px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--pc-line, #E4E8F1);
    background: #fff;
}
.page-head-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
}
.page-head-copy { min-width: 0; }

.page-head-crumb {
    display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
    font-size: 12.5px; color: #7B8499; margin-bottom: 5px;
}
.page-head-crumb a { color: #7B8499; text-decoration: none; }
.page-head-crumb a:hover { color: var(--pc-accent); text-decoration: none; }
.page-head-crumb strong { color: var(--pc-ink, #16203A); font-weight: 600; }

.page-head-title {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--pc-ink, #16203A);
    line-height: 1.2;
}
.page-head-meta { margin: 0; font-size: 13.5px; color: #7B8499; }

/* child-collection quick links */
.page-head-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.page-chip {
    display: inline-flex; align-items: center;
    padding: 8px 15px;
    border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 99px;
    background: #fff;
    font-size: 13px; font-weight: 600;
    color: #3B455F;
    text-decoration: none;
    transition: background .16s, color .16s, border-color .16s;
}
.page-chip:hover {
    background: var(--pc-accent);
    border-color: var(--pc-accent);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Filter sidebar — the theme ships solid-black accordion headers, which fight
   the rest of the palette.
   ========================================================================== */
.filter_sidebar .sidebar_item {
    background: #fff;
    border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px -24px rgba(12, 20, 64, .5);
}
.filter_sidebar .accordion-item { border: 0; background: transparent; }
.filter_sidebar .accordion-button {
    background: #fff;
    color: var(--pc-ink, #16203A);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 14px 16px;
    box-shadow: none;
}
.filter_sidebar .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--pc-accent);
    border-bottom: 1px solid var(--pc-line, #E4E8F1);
}
.filter_sidebar .accordion-button:focus { box-shadow: none; border-color: var(--pc-line, #E4E8F1); }
.filter_sidebar .accordion-button::after { filter: none; }
.filter_sidebar .accordion-body { padding: 12px 16px 16px; }

.filter_sidebar .filter-body ul { list-style: none; margin: 0; padding: 0; }
.filter_sidebar .filter-body li { margin: 0; }
.filter_sidebar .filter-body label {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0; margin: 0; cursor: pointer;
    font-size: 13.5px; font-weight: 500; color: #3B455F;
    transition: color .15s;
}
.filter_sidebar .filter-body label:hover { color: var(--pc-accent); }
.filter_sidebar .filter-body input[type="checkbox"] {
    width: 17px; height: 17px;
    accent-color: var(--pc-accent);
    cursor: pointer; margin: 0; flex: 0 0 auto;
}
.filter_sidebar .filter-body p { margin: 0; }

@media (max-width: 767px) {
    .page-head { padding: 16px 0; margin-bottom: 14px; }
    .page-head-title { font-size: 20px; }
    .page-head-thumb { width: 58px; height: 58px; border-radius: 11px; }
}

/* the breadcrumb moved into .page-head, so this row only carries count + sort */
.page-head + .product-section .sorting-section { margin-top: 0; padding-top: 0; }
.page-head + .product-section .sorting-section .showing-data { margin-top: 0; }

/* ==========================================================================
   Order tracking result
   ========================================================================== */
.track-section { padding: 30px 0 50px; background: #F5F7FC; min-height: 60vh; }
.track-heading { font-size: 24px; font-weight: 700; color: var(--pc-ink, #16203A); margin: 0 0 20px; }

.track-card {
    background: #fff;
    border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 14px 34px -26px rgba(12, 20, 64, .4);
}
.track-card-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
    padding-bottom: 14px; margin-bottom: 14px;
    border-bottom: 1px solid var(--pc-line, #E4E8F1);
}
.track-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
               text-transform: uppercase; color: #8A93A8; margin-bottom: 4px; }
.track-invoice { font-size: 18px; font-weight: 700; color: var(--pc-ink, #16203A); }
.track-date { font-size: 13px; color: #7B8499; }

.track-states { display: flex; gap: 26px; flex-wrap: wrap; margin-bottom: 14px; }

.track-pill {
    display: inline-block; padding: 6px 13px; border-radius: 99px;
    font-size: 13px; font-weight: 700; letter-spacing: .01em;
}
.track-pill--shop       { background: #EDF1F8; color: #23324F; }
.track-pill--pending    { background: #FFF4E5; color: #A35A00; }
.track-pill--processing { background: #E7F0FF; color: #0B4DA2; }
.track-pill--delivered  { background: #E8F7EE; color: #1B6B39; }
.track-pill--cancelled  { background: #FDECEC; color: #B3261E; }
.track-pill--unknown,
.track-pill--waiting    { background: #F1F3F8; color: #7B8499; }

.track-courier {
    font-size: 13px; color: #4A5470;
    background: #F7F9FC; border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 9px; padding: 9px 13px; margin-bottom: 14px;
}
.track-courier strong { color: var(--pc-ink, #16203A); }

.track-table { margin: 0; font-size: 14px; }
.track-table thead th {
    background: #F7F9FC; border-bottom: 1px solid var(--pc-line, #E4E8F1);
    font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #7B8499;
}
.track-table td, .track-table th { vertical-align: middle; }
.track-total td { font-weight: 700; color: var(--pc-accent); font-size: 15px; }

@media (max-width: 575px) {
    .track-states { gap: 16px; }
    .track-card { padding: 15px; }
    .track-heading { font-size: 20px; }
}

/* ==========================================================================
   Order confirmed page
   ========================================================================== */
.osuccess { background: #F5F7FC; padding: 34px 0 56px; }

/* --- hero ---------------------------------------------------------------- */
.osuccess-hero {
    position: relative;
    background: #fff;
    border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 16px;
    padding: 34px 28px 28px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 16px 38px -28px rgba(12, 20, 64, .45);
}
.osuccess-check {
    width: 62px; height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #E8F7EE;
    color: #1B8A4B;
    display: flex; align-items: center; justify-content: center;
}
.osuccess-title {
    margin: 0 0 6px;
    font-size: 26px; font-weight: 700; letter-spacing: -.02em;
    color: var(--pc-ink, #16203A);
}
.osuccess-sub { margin: 0 0 12px; font-size: 15px; font-weight: 600; color: var(--pc-accent); }
.osuccess-note {
    margin: 0 auto; max-width: 60ch;
    font-size: 13.5px; line-height: 1.75; color: #6B7590;
}
.osuccess-invoice {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 18px; padding: 8px 16px;
    border: 1px dashed #C9D4E8; border-radius: 99px; background: #F7F9FD;
}
.osuccess-invoice span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8A93A8; }
.osuccess-invoice strong { font-size: 14px; color: var(--pc-ink, #16203A); }

/* --- cards --------------------------------------------------------------- */
.osuccess-card {
    background: #fff;
    border: 1px solid var(--pc-line, #E4E8F1);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}
.osuccess-card-title {
    margin: 0 0 14px;
    font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    color: #8A93A8;
}

/* --- meta grid ----------------------------------------------------------- */
.osuccess-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.osuccess-meta-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.osuccess-meta-item span {
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8A93A8;
}
.osuccess-meta-item strong {
    font-size: 15px; font-weight: 700; color: var(--pc-ink, #16203A); word-break: break-word;
}
.osuccess-accent { color: var(--pc-accent) !important; }

/* --- items --------------------------------------------------------------- */
.osuccess-items { list-style: none; margin: 0; padding: 0; }
.osuccess-items li {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 11px 0; border-bottom: 1px solid var(--pc-line, #E4E8F1);
}
.osuccess-items li:last-child { border-bottom: 0; }
.osuccess-item-name { font-size: 14px; color: var(--pc-ink, #16203A); min-width: 0; }
.osuccess-qty {
    display: inline-block; margin-left: 6px;
    font-size: 12px; font-weight: 700; color: #8A93A8;
}
.osuccess-item-price { font-size: 14px; font-weight: 700; color: var(--pc-ink, #16203A); white-space: nowrap; }

.osuccess-totals { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--pc-line, #E4E8F1); }
.osuccess-totals > div { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; }
.osuccess-totals dt { margin: 0; font-size: 13.5px; font-weight: 500; color: #6B7590; }
.osuccess-totals dd { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--pc-ink, #16203A); }
.osuccess-totals .is-total { margin-top: 6px; padding-top: 11px; border-top: 2px solid var(--pc-line, #E4E8F1); }
.osuccess-totals .is-total dt { font-size: 15px; font-weight: 700; color: var(--pc-ink, #16203A); }
.osuccess-totals .is-total dd { font-size: 19px; font-weight: 700; color: var(--pc-accent); }

/* --- address ------------------------------------------------------------- */
.osuccess-address { display: flex; flex-direction: column; gap: 3px; margin: 0; font-style: normal; }
.osuccess-address strong { font-size: 15px; color: var(--pc-ink, #16203A); }
.osuccess-address span { font-size: 13.5px; color: #6B7590; }

/* --- actions ------------------------------------------------------------- */
.osuccess-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.osuccess-btn {
    flex: 1 1 200px;
    min-height: 50px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px;
    font-size: 14px; font-weight: 700; letter-spacing: .03em;
    text-decoration: none;
    transition: background .16s, color .16s, border-color .16s, transform .16s;
}
.osuccess-btn--solid { background: var(--pc-accent); color: #fff; box-shadow: 0 14px 30px -16px rgba(11,77,162,.7); }
.osuccess-btn--solid:hover { background: var(--brand-accent-dark, #093F86); color: #fff; transform: translateY(-1px); text-decoration: none; }
.osuccess-btn--ghost { background: #fff; color: var(--pc-accent); border: 1.5px solid var(--pc-line, #E4E8F1); }
.osuccess-btn--ghost:hover { border-color: var(--pc-accent); color: var(--pc-accent); text-decoration: none; }

@media (max-width: 767px) {
    .osuccess { padding: 20px 0 40px; }
    .osuccess-hero { padding: 26px 18px 22px; }
    .osuccess-title { font-size: 21px; }
    .osuccess-meta { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .osuccess-card { padding: 16px; }
}

/* ==========================================================================
   Requested refinements
   accent #0b4da2 · footer off-white · pill buttons · wider container
   ========================================================================== */

/* --- container: 2125px on very wide screens ------------------------------- */
/*@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 2125px;
    }
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 1700px;
}*/

/* --- product card buttons: pill shaped ------------------------------------ */
.pcard-cart {
    border-radius: 25px;
    background: var(--pc-accent);
    border-color: var(--pc-accent);
    color: #fff;
}
.pcard-cart:hover { background: var(--brand-accent-dark, #093F86); border-color: var(--brand-accent-dark, #093F86); color: #fff; }
.pcard-buy { border-radius: 25px; }

/* --- breathing room between cards ----------------------------------------- */
.product_sliders,
.category-product,
.product_slider { gap: 22px; }
@media (max-width: 767px) {
    .product_sliders, .category-product, .product_slider { gap: 14px; }
}

/* ==========================================================================
   Buy Now button — pill, inner hairline, sweeping shine (supplied design)
   ========================================================================== */
button.pcard-buy.variable-modal {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 999px;
    padding: 14px 12px;          /* 44px side padding overflows narrow cards */
    background: #0b4da2;
    border: 0 solid #0b4da2;
    box-shadow: 0 6px 18px rgba(11, 77, 162, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    height: auto;
    min-width: 0;
}

button.pcard-buy.variable-modal::after {
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid #c5c5c5;
    border-radius: 999px;
    pointer-events: none;
}

button.pcard-buy.variable-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 77, 162, 0.45);
    filter: none;
}

button.pcard-buy.variable-modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .65) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shine 2.2s ease-in-out infinite;
}

@keyframes shine {
    0%   { left: -75%; }
    50%  { left: 125%; }
    100% { left: 125%; }
}

/* the sweep is decorative — hold it still for people who ask for less motion */
@media (prefers-reduced-motion: reduce) {
    button.pcard-buy.variable-modal::before { animation: none; opacity: 0; }
    button.pcard-buy.variable-modal:hover { transform: none; }
}

/* matching pill for the cart icon beside it */
.pcard-cart { border-radius: 999px; }

@media (max-width: 575px) {
    button.pcard-buy.variable-modal { padding: 11px 16px; font-size: 11.5px; }
}

/* ==========================================================================
   Product Details Tabs (Modern styling matching reference)
   ========================================================================== */
.pro_details_area {
    padding: 35px 0 25px;
}

.details-tab {
    background: #fff;
    border: 1px solid #E8ECF2;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    overflow: hidden;
}

.details-tab .nav-tabs {
    border: 0;
    border-bottom: 1px solid #E8ECF2;
    background: #fff;
    padding: 12px 28px 0;
    gap: 28px;
}

.details-tab .nav-tabs .nav-item {
    margin-bottom: 0;
}

.details-tab .nav-tabs .nav-link {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0;
    color: #4B5563;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 4px 14px;
    position: relative;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.details-tab .nav-tabs .nav-link:hover {
    color: var(--brand-accent, #0B4DA2);
}

.details-tab .nav-tabs .nav-link.active {
    color: var(--brand-accent, #0B4DA2) !important;
    border-bottom: 2px solid var(--brand-accent, #0B4DA2) !important;
    font-weight: 800;
}

.details-tab .tab-content {
    border: 0;
    padding: 0;
    background: #fff;
}

.details-tab .description {
    padding: 28px 32px;
    color: #4B5563;
    line-height: 1.8;
}

/* Delivery System Tab Body */
.delivery-tab-body {
    padding: 28px 32px 32px;
    color: #4B5563;
}

.delivery-info-lines p {
    font-size: 15px;
    color: #556274;
    line-height: 1.85;
    margin-bottom: 4px;
}

.delivery-special-service {
    margin-top: 24px;
    margin-bottom: 24px;
}

.delivery-special-service .service-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

.delivery-special-service .service-desc {
    font-size: 15px;
    color: #556274;
    line-height: 1.8;
    margin: 0;
}

.delivery-special-service .service-desc strong {
    color: #1E293B;
    font-weight: 700;
}

/* Rich-text content from summernote */
.delivery-dynamic-content {
    font-size: 15px;
    color: #556274;
    line-height: 1.85;
}

.delivery-dynamic-content p {
    margin-bottom: 6px;
    line-height: 1.85;
    color: #556274;
}

.delivery-dynamic-content h4,
.delivery-dynamic-content h5,
.delivery-dynamic-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-top: 18px;
    margin-bottom: 6px;
}

.delivery-dynamic-content strong,
.delivery-dynamic-content b {
    color: #1E293B;
    font-weight: 700;
}

.delivery-dynamic-content ul,
.delivery-dynamic-content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.delivery-rates-table {
    margin-top: 24px;
}

.delivery-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #EDF2F7;
}

.delivery-rate-row .rate-label {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
}

.delivery-rate-row .rate-val {
    font-size: 15px;
    font-weight: 600;
    color: #4B5563;
}

@media (max-width: 767px) {
    .details-tab .nav-tabs {
        padding: 8px 16px 0;
        gap: 18px;
    }
    .details-tab .nav-tabs .nav-link {
        font-size: 13.5px;
        padding: 10px 2px 10px;
    }
    .delivery-tab-body {
        padding: 20px 18px 24px;
    }
    .delivery-info-lines p {
        font-size: 14px;
    }
    .delivery-special-service .service-title,
    .delivery-special-service .service-desc,
    .delivery-rate-row .rate-label,
    .delivery-rate-row .rate-val {
        font-size: 14px;
    }
}
