

/* ===== Phase 6 bundled source: phase1-design-system.css ===== */
/* ============================================================
   Care Ur Baby — Storefront Phase 1
   Global Design System + Homepage
   Scope: Theme 2 frontend presentation only.
   No cart, checkout, stock, offer, auth or backend logic changes.
   ============================================================ */

.phase1-storefront {
    --p1-primary: var(--primary-color, #046a58);
    --p1-primary-dark: #035448;
    --p1-primary-soft: #edf8f5;
    --p1-accent: var(--qbit-purple, #4a2a85);
    --p1-accent-soft: #f4f0fb;
    --p1-heading: #102a26;
    --p1-text: #52625f;
    --p1-muted: #788783;
    --p1-border: #e5ecea;
    --p1-surface: #ffffff;
    --p1-surface-soft: #f7faf9;
    --p1-danger: #dc3545;
    --p1-radius-sm: 10px;
    --p1-radius-md: 14px;
    --p1-radius-lg: 20px;
    --p1-shadow-sm: 0 6px 18px rgba(16, 42, 38, 0.07);
    --p1-shadow-md: 0 14px 38px rgba(16, 42, 38, 0.10);
    --p1-section-space: clamp(54px, 5.3vw, 86px);
    --p1-container: 1320px;
    --p1-container-wide: 1440px;
    --p1-gutter: clamp(14px, 2.3vw, 28px);

    color: var(--p1-text);
    background: #fff;
    font-family: "Nunito Sans", "Nunito", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.phase1-storefront *,
.phase1-storefront *::before,
.phase1-storefront *::after {
    box-sizing: border-box;
}

.phase1-storefront img,
.phase1-storefront svg,
.phase1-storefront video {
    max-width: 100%;
}

.phase1-storefront h1,
.phase1-storefront h2,
.phase1-storefront h3,
.phase1-storefront h4,
.phase1-storefront h5,
.phase1-storefront h6 {
    color: var(--p1-heading);
    font-family: "Outfit", "Nunito Sans", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.phase1-storefront p {
    color: var(--p1-text);
}

.phase1-storefront a,
.phase1-storefront button,
.phase1-storefront input,
.phase1-storefront select,
.phase1-storefront textarea {
    font-family: inherit;
}

.phase1-storefront a,
.phase1-storefront button {
    -webkit-tap-highlight-color: transparent;
}

.phase1-storefront a:focus-visible,
.phase1-storefront button:focus-visible,
.phase1-storefront input:focus-visible,
.phase1-storefront select:focus-visible,
.phase1-storefront textarea:focus-visible {
    outline: 3px solid rgba(4, 106, 88, 0.24);
    outline-offset: 2px;
}

/* ---------- Shared containers ---------- */
.phase1-storefront .container {
    width: calc(100% - (var(--p1-gutter) * 2));
    max-width: var(--p1-container);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

.phase1-storefront .container-fluid {
    width: 100%;
    max-width: var(--p1-container-wide);
    padding-left: var(--p1-gutter);
    padding-right: var(--p1-gutter);
    margin-left: auto;
    margin-right: auto;
}

.phase1-storefront .row {
    --bs-gutter-x: clamp(14px, 1.8vw, 24px);
}

/* ---------- Shared titles ---------- */
.phase1-storefront .title-animation,
.phase1-storefront .section-eight-title,
.phase1-storefront .section-six-title {
    margin: 0;
    color: var(--p1-heading);
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.13;
    font-weight: 750;
}

.phase1-storefront .title-animation span,
.phase1-storefront .section-eight-title span,
.phase1-storefront .section-six-title span {
    color: var(--p1-primary);
}

.phase1-storefront .sub-title-main {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 9px;
    color: var(--p1-primary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.phase1-storefront .section-eight-wrapper,
.phase1-storefront .section-six-wrapper {
    margin-bottom: 30px;
}

/* ---------- Shared buttons ---------- */
.phase1-storefront .create-btn-primary,
.phase1-storefront .create-btn-info,
.phase1-storefront .create-btn-base,
.phase1-storefront .btn--primary,
.phase1-storefront .action-btn-primary,
.phase1-storefront .action-btn-info,
.phase1-storefront .action-btn-danger,
.phase1-storefront .action-btn-warning {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.phase1-storefront .create-btn-primary,
.phase1-storefront .create-btn-info,
.phase1-storefront .btn--primary {
    border: 1px solid var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(4, 106, 88, 0.14);
}

.phase1-storefront .create-btn-base {
    border: 1px solid var(--p1-accent);
    background: var(--p1-accent);
    color: #fff;
}

.phase1-storefront .create-btn-primary:hover,
.phase1-storefront .create-btn-info:hover,
.phase1-storefront .btn--primary:hover {
    border-color: var(--p1-primary-dark);
    background: var(--p1-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(4, 106, 88, 0.18);
}

.phase1-storefront .create-btn-base:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(.93);
}

.phase1-storefront .disabled,
.phase1-storefront [aria-disabled="true"] {
    box-shadow: none !important;
    transform: none !important;
}

/* ============================================================
   Header / navigation / search
   ============================================================ */
.phase1-storefront .topbar-six-area {
    position: relative;
    z-index: 1035;
    min-height: 36px;
    padding: 6px 0;
    background: #0d4c42;
    border: 0;
}

.phase1-storefront .topbar-six-area .container-fluid {
    max-width: var(--p1-container-wide);
}

.phase1-storefront .topbar-six__wrapper {
    min-height: 24px;
    gap: 20px;
}

.phase1-storefront .topbar-six-list,
.phase1-storefront .topbar-six-right ul {
    gap: 18px !important;
    margin: 0;
    padding: 0;
}

.phase1-storefront .topbar-six-area a {
    color: rgba(255,255,255,.93) !important;
    font-size: 13px !important;
    line-height: 1.25;
    font-weight: 600 !important;
}

.phase1-storefront .topbar-six-area a:hover {
    color: #fff !important;
}

.phase1-storefront .header-six-area {
    position: relative;
    z-index: 1030;
    top: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255,255,255,.98);
    border: 0;
    border-bottom: 1px solid var(--p1-border);
    box-shadow: 0 5px 18px rgba(16, 42, 38, .035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.phase1-storefront .header-six-area > .container-fluid {
    max-width: var(--p1-container-wide);
}

.phase1-storefront .header-six-area .main-header__menu-box {
    width: 100%;
    min-height: 74px;
    padding: 10px 0;
}

.phase1-storefront .header-six-area .navbar {
    width: 100%;
    min-height: 54px;
    gap: 16px;
}

.phase1-storefront .header-six-area .navbar-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.phase1-storefront .header-six-area .navbar-logo a {
    display: inline-flex;
    align-items: center;
}

.phase1-storefront .header-six-area .navbar-logo img,
.phase1-storefront .header .navbar-logo img {
    width: auto;
    max-width: 185px;
    height: 50px;
    object-fit: contain;
}

.phase1-storefront .header-six-area .navbar__options {
    gap: 9px;
    min-width: 0;
}

.phase1-storefront .header-six-area .header-six-navbar-space {
    margin: 0 !important;
}

.phase1-storefront .header-six-area .navbar__list {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.phase1-storefront .header-six-area .navbar__item {
    margin: 0 !important;
    padding: 0 !important;
}

.phase1-storefront .header-six-area .navbar__item > a,
.phase1-storefront .header-six-area .navbar__item.nav-fade > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px !important;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--p1-heading);
    background: transparent;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 700;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.phase1-storefront .header-six-area .navbar__item > a:hover,
.phase1-storefront .header-six-area .navbar__item > a:focus-visible {
    color: var(--p1-primary);
    background: var(--p1-primary-soft);
    border-color: #dceee9;
}

.phase1-storefront .header-six-area .navbar__item.select-btn-base > a,
.phase1-storefront .header-six-area .navbar__item--has-children.select-btn-base > a {
    color: #fff;
    background: var(--p1-primary);
    border-color: var(--p1-primary);
}

.phase1-storefront .header-six-area .navbar__sub-menu {
    min-width: 230px;
    padding: 8px;
    border: 1px solid var(--p1-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--p1-shadow-md);
}

.phase1-storefront .header-six-area .navbar__sub-menu li,
.phase1-storefront .header-six-area .navbar__sub-menu li a {
    width: 100%;
}

.phase1-storefront .header-six-area .navbar__sub-menu li a {
    display: flex;
    min-height: 38px;
    padding: 9px 11px !important;
    border-radius: 8px;
    color: var(--p1-heading);
    font-size: 13px;
    font-weight: 650;
}

.phase1-storefront .header-six-area .navbar__sub-menu li a:hover {
    color: var(--p1-primary);
    background: var(--p1-primary-soft);
}

.phase1-storefront .header-cart-btn,
.phase1-storefront .header-wishlist-btn,
.phase1-storefront .header-category-btn {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 13px !important;
    border-radius: 11px !important;
    white-space: nowrap;
    box-shadow: none !important;
}

.phase1-storefront .header-cart-btn,
.phase1-storefront .header-category-btn {
    border-color: #dce8e5 !important;
    background: #f7faf9 !important;
    color: var(--p1-heading) !important;
}

.phase1-storefront .header-wishlist-btn {
    border-color: #f1dce2 !important;
    background: #fff6f8 !important;
    color: #b32448 !important;
}

.phase1-storefront .header-cart-btn:hover,
.phase1-storefront .header-category-btn:hover {
    border-color: #c8dfd9 !important;
    background: var(--p1-primary-soft) !important;
    color: var(--p1-primary) !important;
}

.phase1-storefront .header-six-area .badge {
    min-width: 19px;
    height: 19px;
    padding: 3px 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

/* Search */
.phase1-storefront .storefront-search-row {
    width: 100%;
    padding: 0 0 12px;
    background: #fff;
    border-top: 0;
}

.phase1-storefront .storefront-search-row .container-fluid {
    max-width: var(--p1-container-wide);
}

.phase1-storefront .storefront-search-form {
    position: relative;
    width: min(100%, 920px);
    margin: 0 auto;
}

.phase1-storefront .storefront-search-box {
    min-height: 48px;
    padding: 4px 5px 4px 44px;
    border: 1px solid #dce6e3;
    border-radius: 14px;
    background: #f8faf9;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.phase1-storefront .storefront-search-box:focus-within {
    border-color: rgba(4, 106, 88, .55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(4,106,88,.08);
}

.phase1-storefront .storefront-search-icon {
    left: 16px;
    color: #657773;
    font-size: 20px;
}

.phase1-storefront .storefront-search-box input[type="search"] {
    min-width: 0;
    height: 38px;
    padding: 0 12px 0 0;
    color: var(--p1-heading);
    background: transparent;
    font-size: 14px;
    font-weight: 550;
}

.phase1-storefront .storefront-search-box input[type="search"]::placeholder {
    color: #8b9895;
    opacity: 1;
}

.phase1-storefront .storefront-search-submit {
    min-width: 92px;
    height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--p1-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.phase1-storefront .storefront-search-submit:hover {
    background: var(--p1-primary-dark);
}

.phase1-storefront .storefront-search-results {
    top: calc(100% + 7px);
    overflow: hidden;
    border: 1px solid var(--p1-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--p1-shadow-md);
}

.phase1-storefront .storefront-search-result {
    min-height: 62px;
    padding: 8px 10px;
}

.phase1-storefront .storefront-search-result img {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    object-fit: cover;
}

/* Mobile category dropdown */
.phase1-storefront .mobile-category-dropdown .mobile-category-item {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 8px 9px !important;
    border: 0;
    border-bottom: 1px solid #edf1f0;
    border-radius: 8px;
    color: var(--p1-heading);
    font-size: 13px;
    font-weight: 650;
    text-align: left;
}

.phase1-storefront #mobileAllCategoryDropdown + .dropdown-menu {
    width: min(88vw, 340px);
    padding: 8px !important;
    border: 1px solid var(--p1-border);
    border-radius: 14px;
    box-shadow: var(--p1-shadow-md);
}

/* Offcanvas */
.phase1-storefront .vl-offcanvas {
    width: min(88vw, 360px);
    left: min(-88vw, -360px);
    background: #fff;
    box-shadow: 18px 0 45px rgba(16,42,38,.14);
}

.phase1-storefront .vl-offcanvas.vl-offcanvas-open {
    left: 0;
}

.phase1-storefront .vl-offcanvas-wrapper {
    padding: 18px;
}

.phase1-storefront .vl-offcanvas-header {
    min-height: 58px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--p1-border);
}

.phase1-storefront .vl-offcanvas-logo img {
    width: auto;
    max-width: 160px;
    max-height: 45px;
}

.phase1-storefront .vl-offcanvas-close-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f8f7;
    color: var(--p1-heading);
    font-size: 18px;
}

.phase1-storefront .vl-offcanvas-menu nav ul,
.phase1-storefront .vl-offcanvas-menu nav ul li,
.phase1-storefront .vl-offcanvas-menu nav ul li a {
    float: none;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    line-height: 1.35;
}

.phase1-storefront .vl-offcanvas-menu nav ul li {
    border-bottom: 1px solid #eef2f1;
}

.phase1-storefront .vl-offcanvas-menu nav ul li a,
.phase1-storefront .vl-offcanvas-menu nav a[class*="select-btn-"],
.phase1-storefront .vl-offcanvas-menu nav a.nav-fade {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 11px 42px 11px 10px !important;
    border-radius: 8px;
    color: var(--p1-heading);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
}

.phase1-storefront .vl-offcanvas-menu nav ul li a:hover {
    color: var(--p1-primary);
    background: var(--p1-primary-soft);
}

.phase1-storefront .vl-offcanvas-menu nav li button.vl-menu-close {
    top: 3px;
    right: 2px;
    width: 40px;
    height: 40px;
    color: #73817e;
}

.phase1-storefront .vl-offcanvas-menu nav .navbar__sub-menu,
.phase1-storefront .vl-offcanvas-menu nav .navbar__sub-menu__nested {
    padding: 4px 0 8px 10px;
    border-top: 0;
    background: #fbfcfc;
}

.phase1-storefront .vl-offcanvas-menu nav .navbar__sub-menu li a {
    min-height: 40px;
    padding-left: 13px !important;
    font-size: 13px;
    font-weight: 600;
}

.phase1-storefront .vl-offcanvas-toggle {
    width: 42px;
    height: 42px;
    padding: 8px !important;
    border: 1px solid #dce6e3;
    border-radius: 11px;
    background: #f7faf9;
    gap: 4px;
}

.phase1-storefront .vl-offcanvas-toggle .icon-bar {
    width: 22px;
    height: 2px;
    background: var(--p1-heading);
}

.phase1-storefront .vl-offcanvas-overlay {
    background: rgba(13, 33, 30, .52);
    backdrop-filter: blur(2px);
}

/* ============================================================
   Homepage system
   ============================================================ */
.phase1-home .banner-six-area {
    margin: 0 !important;
    padding: 18px var(--p1-gutter) 0 !important;
    background: #fff;
}

.phase1-home .banner-six-slide {
    width: 100%;
    max-width: var(--p1-container-wide);
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: var(--p1-shadow-sm);
}

.phase1-home .banner-six-slide-wrapper,
.phase1-home .banner-six-slide-bg {
    min-height: clamp(430px, 39vw, 590px);
    height: clamp(430px, 39vw, 590px) !important;
    border-radius: 22px !important;
}

.phase1-home .banner-six-slide-bg {
    overflow: hidden;
    background-position: center center;
}

.phase1-home .banner-six-slide-bg::after {
    border-radius: 22px !important;
    background: linear-gradient(90deg, rgba(5,28,24,.58) 0%, rgba(5,28,24,.25) 42%, rgba(5,28,24,.04) 70%, rgba(5,28,24,0) 100%);
}

.phase1-home .banner-six-content {
    position: absolute !important;
    top: 50% !important;
    left: max(var(--p1-gutter), calc((100vw - var(--p1-container)) / 2)) !important;
    width: min(560px, 46vw) !important;
    max-width: 560px !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
    text-align: left !important;
}

.phase1-home .banner-six-card {
    padding: clamp(22px, 2.3vw, 34px) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    border-radius: 18px !important;
    background: rgba(10, 35, 31, .34) !important;
    box-shadow: 0 20px 55px rgba(0,0,0,.14) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.phase1-home .banner-six-subtitle {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.phase1-home .banner-six-title {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 52px) !important;
    line-height: 1.08 !important;
    font-weight: 750;
    text-shadow: 0 3px 16px rgba(0,0,0,.16);
}

.phase1-home .banner-six-card .create-btn-base {
    min-height: 46px;
    padding: 0 18px;
    border-color: #fff;
    background: #fff;
    color: var(--p1-heading);
    box-shadow: none;
}

.phase1-home .banner-six-card .create-btn-base:hover {
    background: var(--p1-primary);
    border-color: var(--p1-primary);
    color: #fff;
}

.phase1-home .banner-six-slide-dot {
    bottom: 18px !important;
}

/* Partner/promotional strip below hero */
.phase1-home .phase5-hero-partners {
    width: 100%;
    max-width: var(--p1-container-wide);
    margin: 0 auto;
    padding: 0 var(--p1-gutter);
}

.phase1-home .phase5-hero-partners .container-fluid {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.phase1-home .phase5-hero-partners .ads-partner-slider {
    padding-top: 18px !important;
    padding-bottom: 2px;
}

.phase1-home .ads-partner-slider .swiper-slide {
    height: auto;
}

.phase1-home .ads-partner-slider .card {
    overflow: hidden;
    min-height: 92px;
    border: 1px solid var(--p1-border) !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 5px 16px rgba(16,42,38,.055) !important;
}

.phase1-home .ads-partner-slider img {
    width: 100%;
    height: 100%;
    min-height: 88px;
    max-height: 125px;
    object-fit: contain !important;
    background: #fff;
}

/* Consistent home spacing */
.phase1-home .category-section,
.phase1-home .new-arrival-section,
.phase1-home .top-selling-section,
.phase1-home .trending-section,
.phase1-home .testimonial-six-area,
.phase1-home .faqs-section,
.phase1-home .client-partners-section,
.phase1-home .homepage-ads-section,
.phase1-home .cta-section-two:not(.homepage-ads-section) {
    margin: 0 !important;
    padding-top: var(--p1-section-space) !important;
    padding-bottom: var(--p1-section-space) !important;
    border-radius: 0 !important;
}

.phase1-home .category-section + .new-arrival-section,
.phase1-home .new-arrival-section + .homepage-ads-section,
.phase1-home .top-selling-section + .faqs-section,
.phase1-home .faqs-section + .testimonial-six-area {
    border-top: 1px solid #f0f4f3;
}

.phase1-home .category-section .container,
.phase1-home .new-arrival-section .container,
.phase1-home .testimonial-six-area .container,
.phase1-home .faqs-section .container {
    max-width: var(--p1-container);
}

.phase1-home .top-selling-section > .container-fluid,
.phase1-home .trending-section > .container-fluid {
    max-width: var(--p1-container);
}

.phase1-home .category-section > .container > .sub-title-main,
.phase1-home .category-section > .container > .title-animation,
.phase1-home .top-selling-section > .container-fluid > .section-eight-wrapper,
.phase1-home .trending-section > .container-fluid > .section-eight-wrapper {
    text-align: center;
}

.phase1-home .category-section > .container > .sub-title-main {
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.phase1-home .category-section > .container > .title-animation {
    margin-bottom: 28px;
}

.phase1-home .top-selling-section .section-eight-wrapper,
.phase1-home .trending-section .section-eight-wrapper {
    margin-bottom: 30px;
}

.phase1-home .top-selling-section .sub-title-main,
.phase1-home .trending-section .sub-title-main {
    justify-content: center;
}

/* Categories */
.phase1-home .ministrie-eight-slide {
    overflow: hidden;
    padding: 4px 2px 8px;
}

.phase1-home .ministrie-eight-wrapper.category-image-box {
    height: auto !important;
    min-width: 0;
}

.phase1-home .ministrie-eight-thumb {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--p1-border);
    border-radius: 18px;
    background: #eef4f2;
    box-shadow: 0 5px 16px rgba(16,42,38,.05);
}

.phase1-home .ministrie-eight-thumb > img,
.phase1-home .ministrie-eight-thumb > picture,
.phase1-home .ministrie-eight-thumb > picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.phase1-home .ministrie-eight-wrapper:hover .ministrie-eight-thumb > img,
.phase1-home .ministrie-eight-wrapper:hover .ministrie-eight-thumb > picture img {
    transform: scale(1.035);
}

.phase1-home .ministrie-eight-wrap {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    margin: 0;
    padding: 9px 10px !important;
    border-radius: 11px;
    background: rgba(10,35,31,.76);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.phase1-home .ministrie-eight-title {
    overflow: hidden;
    margin: 0 0 4px !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phase1-home .ministrie-eight-wrap .title-lg,
.phase1-home .ministrie-eight-wrap p {
    color: rgba(255,255,255,.82) !important;
    font-size: 10px !important;
    line-height: 1.2;
}

/* Product cards */
.phase1-storefront .property-single-boxarea.difference-two {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--p1-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(16,42,38,.055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.phase1-storefront .property-single-boxarea.difference-two:hover {
    border-color: #d6e3e0;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16,42,38,.10);
}

.phase1-storefront .property-list-img-area-static {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: #f5f8f7;
}

.phase1-storefront .property-list-img-area-static > a,
.phase1-storefront .property-list-img-area-static .img1,
.phase1-storefront .property-list-img-area-static picture {
    display: block;
    width: 100%;
    height: 100%;
}

.phase1-storefront .property-list-img-area-static .img1 img,
.phase1-storefront .property-list-img-area-static picture img,
.phase1-storefront .property-list-img-area-static > a > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .28s ease;
}

.phase1-storefront .property-single-boxarea:hover .property-list-img-area-static .img1 img,
.phase1-storefront .property-single-boxarea:hover .property-list-img-area-static picture img {
    transform: scale(1.025);
}

.phase1-storefront .property-single-content {
    flex: 0 0 auto;
    min-height: 72px;
    padding: 12px 13px 6px !important;
}

.phase1-storefront .property-single-content h4,
.phase1-storefront .property-single-content h4.title-animation {
    display: -webkit-box !important;
    overflow: hidden !important;
    min-height: 42px;
    margin: 0 !important;
    color: var(--p1-heading);
    font-size: 15px !important;
    line-height: 1.38 !important;
    font-weight: 750 !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.phase1-storefront .property-single-content h4 a {
    color: inherit;
}

.phase1-storefront .property-single-content p {
    overflow: hidden;
    margin-top: 4px !important;
    color: var(--p1-muted);
    font-size: 11px !important;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phase1-storefront .property-details.difference-two__tab-content {
    margin: 0 !important;
    padding: 0 13px 8px;
}

.phase1-storefront .property-details.difference-two__tab-content ul {
    gap: 8px;
    min-height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
}

.phase1-storefront .property-details.difference-two__tab-content li {
    color: var(--p1-heading);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
}

.phase1-storefront .property-details.difference-two__tab-content li:last-child {
    color: var(--p1-muted);
    font-size: 10px;
    font-weight: 650;
    white-space: nowrap;
}

.phase1-storefront .property-details del {
    margin-left: 3px;
    color: #9ba7a4;
    font-size: 10px;
    font-weight: 600;
}

.phase1-storefront .property-single-boxarea .btn-area1 {
    gap: 7px;
    margin-top: auto !important;
    padding: 0 12px 12px !important;
}

.phase1-storefront .property-single-boxarea .btn-area1 > a {
    min-width: 0;
    min-height: 38px !important;
    height: 38px !important;
    margin-left: 0 !important;
    padding: 0 10px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

.phase1-storefront .property-single-boxarea .btn-area1 .action-btn-primary {
    border: 1px solid #dce7e4;
    background: #f5f8f7;
    color: var(--p1-heading);
}

.phase1-storefront .property-single-boxarea .btn-area1 .action-btn-danger {
    flex: 0 0 38px;
    width: 38px !important;
    border: 1px solid #f0dce1;
    background: #fff5f7;
    color: #be3155;
}

.phase1-storefront .property-single-boxarea .btn-area1 .create-btn-primary {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .theme2-offer-badge,
.phase1-storefront .qbit-badge-new,
.phase1-storefront .qbi-badge-warning,
.phase1-storefront .qbi-badge-success,
.phase1-storefront .qbit-badge-primary,
.phase1-storefront .qbit-badge-danger {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin: 0 3px 3px 0;
    padding: 4px 7px;
    border-radius: 7px;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* Product rows and sliders */
.phase1-home .new-arrival-section .row > [class*="col-"],
.phase1-home .top-selling-section .row > .row > [class*="col-"] {
    display: flex;
}

.phase1-home .product-slider-common {
    overflow: hidden;
    padding: 4px 3px 14px;
}

.phase1-home .product-slider-common .swiper-slide {
    height: auto;
}

.phase1-home .product-slider-common .swiper-slide > .col-12 {
    height: 100%;
}

.phase1-home .product-slider-common .swiper-button-next,
.phase1-home .product-slider-common .swiper-button-prev {
    width: 38px;
    height: 38px;
    border: 1px solid var(--p1-border);
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: var(--p1-heading);
    box-shadow: 0 5px 14px rgba(16,42,38,.10);
}

.phase1-home .product-slider-common .swiper-button-next::after,
.phase1-home .product-slider-common .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 800;
}

/* CTA / promotional banners */
.phase1-home .cta-section-two {
    position: relative;
    overflow: hidden;
}

.phase1-home .cta-section-two > .container {
    position: relative;
    z-index: 2;
}

.phase1-home .cta-section-two .section__header {
    width: min(100%, 780px);
    margin: 0 auto;
}

.phase1-home .cta-section-two .title-animation {
    color: #fff !important;
    font-size: clamp(30px, 3.4vw, 50px) !important;
}

.phase1-home .cta-section-two .section__header p,
.phase1-home .cta-section-two p {
    color: rgba(255,255,255,.88);
}

.phase1-home .countdown-timer .timer-box {
    min-width: 82px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
}

/* FAQ */
.phase1-home .faqs-section {
    background: #f7faf9;
}

.phase1-home .faq-eight-wrapper,
.phase1-home .faq-eight-right {
    margin: 0;
}

.phase1-home .faq-eight-right .section-eight-wrapper {
    padding-left: clamp(0px, 2vw, 22px);
}

.phase1-home .faq-eight-accordion-item {
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid var(--p1-border) !important;
    border-radius: 13px !important;
    background: #fff;
    box-shadow: none;
}

.phase1-home .faq-eight-accordion-button {
    min-height: 58px;
    padding: 15px 18px;
    color: var(--p1-heading);
    background: #fff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 750;
}

.phase1-home .faq-eight-accordion-button:not(.collapsed) {
    color: var(--p1-primary);
    background: var(--p1-primary-soft);
    box-shadow: none;
}

.phase1-home .faq-eight-accordion-body {
    padding: 0 18px 17px;
    background: #fff;
}

.phase1-home .faq-eight-accordion-body p {
    margin: 0;
    color: var(--p1-text);
    font-size: 14px;
    line-height: 1.65;
}

.phase1-home .faqs-btn {
    min-height: 44px;
    padding: 0 17px;
}

/* Testimonials */
.phase1-home .testimonial-six-area {
    background: #fff;
}

.phase1-home .testimonial-six-frist-row {
    gap: 0;
}

.phase1-home .testimonial-six-slide {
    border: 1px solid var(--p1-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--p1-shadow-sm);
}

.phase1-home .testimonial-six-wrapper {
    padding: clamp(24px, 3vw, 38px);
}

.phase1-home .testimonial-six-paragraph {
    color: var(--p1-text);
    font-size: 16px;
    line-height: 1.7;
}

.phase1-home .testimonial-six-author-img img {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50%;
    object-fit: cover;
}

.phase1-home .testimonial-six-author-content h6 {
    margin-bottom: 2px;
    font-size: 15px;
}

/* Trusted partners / brands */
.phase1-home .client-partners-section {
    background: #fff;
}

.phase1-home .client-partners-section .section-title {
    margin-bottom: 28px !important;
}

.phase1-home .client-partners {
    height: auto;
}

.phase1-home .client-partners .brand-six-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
    padding: 14px;
    border: 1px solid var(--p1-border);
    border-radius: 13px;
    background: #fff;
}

.phase1-home .client-partners img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   Footer
   ============================================================ */
.phase1-storefront .footer-six-area,
.phase1-storefront .footer-eight-area {
    overflow: hidden;
    margin: 0 !important;
    padding-top: 0;
    border-radius: 0 !important;
    background: #0f2f2a !important;
}

.phase1-storefront .footer-six-area > .container {
    padding-top: 0;
}

.phase1-storefront .footer-eight-top {
    margin: 0 0 42px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.phase1-storefront .footer-eight-top .row {
    align-items: center;
}

.phase1-storefront .footer-eight-top-wrap h4 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 750;
}

.phase1-storefront .subscribe-six-input {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 13px;
    background: rgba(255,255,255,.08);
}

.phase1-storefront .subscribe-six-input input {
    min-width: 0;
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
}

.phase1-storefront .subscribe-six-input input::placeholder {
    color: rgba(255,255,255,.63);
}

.phase1-storefront .subscribe-six-button {
    position: static;
    flex: 0 0 auto;
}

.phase1-storefront .subscribe-six-button button {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    background: var(--p1-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.phase1-storefront .footer-eight-top-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
}

.phase1-storefront .footer-eight-top-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: 15px;
}

.phase1-storefront .footer-eight-top-info-con p {
    margin: 0 0 2px;
    color: rgba(255,255,255,.60) !important;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.phase1-storefront .footer-eight-top-info-con a {
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 650;
}

.phase1-storefront .footer-two__widget {
    height: 100%;
}

.phase1-storefront .footer-two__widget-logo img {
    width: auto;
    max-width: 180px;
    height: 45px !important;
    object-fit: contain;
}

.phase1-storefront .footer-two .footer-two__widget h5,
.phase1-storefront .footer-two__widget h5 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 750;
}

.phase1-storefront .footer-two__widget .line {
    margin-bottom: 16px;
}

.phase1-storefront .footer-two .footer-two__widget p,
.phase1-storefront .footer-two__widget p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.68) !important;
    font-size: 13px;
    line-height: 1.65;
    text-align: left;
}

.phase1-storefront .footer-two__widget-content ul {
    margin: 0;
    padding: 0;
}

.phase1-storefront .footer-two__widget-content ul li {
    margin: 0 0 9px !important;
}

.phase1-storefront .footer-two__widget-content ul li a,
.phase1-storefront .footer-six-area .footer-two__widget .footer-two__widget-content--contact a {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
    color: rgba(255,255,255,.76) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 550;
    transition: color .18s ease, transform .18s ease;
}

.phase1-storefront .footer-two__widget-content ul li a:hover {
    color: #fff !important;
    transform: translateX(2px);
}

.phase1-storefront .footer-two__widget .social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.phase1-storefront .footer-two__widget .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: #fff;
}

.phase1-storefront .footer-two__widget .social a:hover {
    border-color: rgba(255,255,255,.30);
    background: rgba(255,255,255,.15);
}

.phase1-storefront .footer-two__copyright {
    margin-top: 42px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.phase1-storefront .footer-six-copyright-border {
    min-height: 62px;
    border: 0 !important;
}

.phase1-storefront .footer-six-area .footer-two__copyright-inner p,
.phase1-storefront .footer__bottom-list a {
    color: rgba(255,255,255,.65) !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}

.phase1-storefront .footer__bottom-list {
    gap: 18px;
}

/* Floating actions */
.phase1-storefront .whatsapp-float,
.phase1-storefront .progress-wrap {
    right: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(16,42,38,.17);
}

.phase1-storefront .whatsapp-float {
    bottom: 78px;
    font-size: 23px;
}

.phase1-storefront .progress-wrap {
    bottom: 20px;
}

.phase1-storefront .whatsapp-float:hover {
    transform: translateY(-2px);
}

/* ============================================================
   Responsive system
   ============================================================ */
@media (min-width: 1600px) {
    .phase1-storefront {
        --p1-container: 1380px;
        --p1-container-wide: 1520px;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 620px !important;
        min-height: 620px;
    }
}

@media (min-width: 1920px) {
    .phase1-storefront {
        --p1-container: 1440px;
        --p1-container-wide: 1600px;
    }

    .phase1-home .banner-six-area {
        padding-top: 20px !important;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 650px !important;
        min-height: 650px;
    }
}

@media (max-width: 1199.98px) {
    .phase1-storefront {
        --p1-section-space: 68px;
    }

    .phase1-storefront .header-six-area .main-header__menu-box {
        min-height: 68px;
    }

    .phase1-storefront .header-six-area .navbar-logo img,
    .phase1-storefront .header .navbar-logo img {
        max-width: 165px;
        height: 46px;
    }

    .phase1-home .banner-six-content {
        left: clamp(28px, 5vw, 62px) !important;
        width: min(560px, 58vw) !important;
    }
}

@media (max-width: 991.98px) {
    .phase1-storefront {
        --p1-section-space: 60px;
    }

    .phase1-storefront .topbar-six__wrapper {
        align-items: center !important;
    }

    .phase1-storefront .topbar__list-wrapper {
        max-width: 54%;
    }

    .phase1-storefront .topbar-six-list {
        gap: 10px !important;
    }

    .phase1-storefront .topbar-six-area a {
        font-size: 12px !important;
    }

    .phase1-storefront .header-cart-btn,
    .phase1-storefront .header-wishlist-btn,
    .phase1-storefront .header-category-btn {
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 11px !important;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 500px !important;
        min-height: 500px;
    }

    .phase1-home .banner-six-content {
        width: min(520px, 66vw) !important;
    }

    .phase1-home .faq-eight-right .section-eight-wrapper {
        padding-left: 0;
        text-align: center;
    }

    .phase1-home .faq-eight-right .sub-title-main {
        justify-content: center;
    }

    .phase1-home .faq-eight-wrapper {
        margin-top: 26px;
    }

    .phase1-home .testimonial-six-right {
        margin-bottom: 24px;
        text-align: center;
    }

    .phase1-home .testimonial-six-right .sub-title-main {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .phase1-storefront {
        --p1-gutter: 14px;
        --p1-section-space: 48px;
        font-size: 15px;
    }

    .phase1-storefront .container {
        width: calc(100% - 28px);
    }

    .phase1-storefront .title-animation,
    .phase1-storefront .section-eight-title,
    .phase1-storefront .section-six-title {
        font-size: clamp(25px, 7.5vw, 34px);
        line-height: 1.15;
    }

    .phase1-storefront .sub-title-main {
        margin-bottom: 7px;
        font-size: 11px;
        letter-spacing: .06em;
    }

    /* Compact topbar: prevent 320–430px overflow */
    .phase1-storefront .topbar-six-area {
        min-height: 34px;
        padding: 5px 0;
    }

    .phase1-storefront .topbar-six__wrapper {
        justify-content: center !important;
        min-height: 24px;
    }

    .phase1-storefront .topbar__list-wrapper {
        display: none;
    }

    .phase1-storefront .topbar-six-right {
        width: 100%;
    }

    .phase1-storefront .topbar-six-right ul {
        width: 100%;
        gap: 14px !important;
        justify-content: center !important;
    }

    .phase1-storefront .topbar-six-area a {
        font-size: 11px !important;
    }

    .phase1-storefront .header-six-area .main-header__menu-box {
        min-height: 60px;
        padding: 7px 0;
    }

    .phase1-storefront .header-six-area .navbar {
        min-height: 46px;
        gap: 7px !important;
    }

    .phase1-storefront .header-six-area .navbar-logo {
        flex: 1 1 auto;
    }

    .phase1-storefront .header-six-area .navbar-logo img,
    .phase1-storefront .header .navbar-logo img {
        max-width: 130px;
        height: 36px !important;
    }

    .phase1-storefront .header-six-area .navbar__options {
        flex: 0 0 auto;
        gap: 6px !important;
    }

    .phase1-storefront .header-category-btn,
    .phase1-storefront .header-cart-btn,
    .phase1-storefront .vl-offcanvas-toggle {
        min-height: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }

    .phase1-storefront .header-category-btn {
        padding: 0 9px !important;
        font-size: 11px !important;
    }

    .phase1-storefront .header-cart-btn {
        width: 38px;
        padding: 0 !important;
    }

    .phase1-storefront .header-cart-btn i,
    .phase1-storefront .header-category-btn i {
        font-size: 14px;
    }

    .phase1-storefront .vl-offcanvas-toggle {
        width: 38px;
        padding: 7px !important;
    }

    .phase1-storefront .vl-offcanvas-toggle .icon-bar {
        width: 20px;
    }

    .phase1-storefront .storefront-search-row {
        padding-bottom: 9px;
    }

    .phase1-storefront .storefront-search-box {
        min-height: 44px;
        padding: 3px 4px 3px 39px;
        border-radius: 12px;
    }

    .phase1-storefront .storefront-search-icon {
        left: 13px;
        font-size: 18px;
    }

    .phase1-storefront .storefront-search-box input[type="search"] {
        height: 36px;
        font-size: 13px;
    }

    .phase1-storefront .storefront-search-submit {
        min-width: 58px;
        width: 58px;
        height: 36px;
        padding: 0;
        border-radius: 9px;
        font-size: 0;
    }

    .phase1-storefront .storefront-search-submit::after {
        content: "Go";
        font-size: 12px;
        font-weight: 800;
    }

    .phase1-storefront .storefront-search-results {
        max-height: min(60vh, 420px);
        overflow-y: auto;
        border-radius: 12px;
    }

    /* Hero */
    .phase1-home .banner-six-area {
        padding: 10px 10px 0 !important;
    }

    .phase1-home .banner-six-slide {
        border-radius: 16px;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 430px !important;
        min-height: 430px;
        border-radius: 16px !important;
    }

    .phase1-home .banner-six-slide-bg::after {
        border-radius: 16px !important;
        background: linear-gradient(0deg, rgba(6,31,27,.72) 0%, rgba(6,31,27,.35) 48%, rgba(6,31,27,.08) 78%, rgba(6,31,27,0) 100%);
    }

    .phase1-home .banner-six-content {
        top: auto !important;
        left: 14px !important;
        right: 14px !important;
        bottom: 34px !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
        text-align: left !important;
    }

    .phase1-home .banner-six-card {
        padding: 16px !important;
        border-radius: 14px !important;
        background: rgba(8,36,31,.46) !important;
    }

    .phase1-home .banner-six-subtitle {
        margin-bottom: 8px;
        padding: 5px 9px;
        font-size: 9px;
    }

    .phase1-home .banner-six-title {
        font-size: clamp(26px, 8vw, 34px) !important;
        line-height: 1.12 !important;
    }

    .phase1-home .banner-six-card .mt-4 {
        margin-top: 12px !important;
    }

    .phase1-home .banner-six-card .create-btn-base {
        min-height: 40px;
        padding: 0 13px;
        border-radius: 10px;
        font-size: 12px;
    }

    .phase1-home .banner-six-slide-dot {
        bottom: 12px !important;
    }

    .phase1-home .phase5-hero-partners {
        padding-left: 10px;
        padding-right: 10px;
    }

    .phase1-home .phase5-hero-partners .ads-partner-slider {
        padding-top: 10px !important;
    }

    .phase1-home .ads-partner-slider .card,
    .phase1-home .ads-partner-slider img {
        min-height: 72px;
    }

    .phase1-home .ads-partner-slider img {
        max-height: 92px;
    }

    /* Sections */
    .phase1-home .category-section > .container > .title-animation {
        margin-bottom: 20px;
    }

    .phase1-home .section-eight-wrapper,
    .phase1-home .section-six-wrapper {
        margin-bottom: 20px;
    }

    .phase1-home .ministrie-eight-thumb {
        border-radius: 14px;
    }

    .phase1-home .ministrie-eight-wrap {
        left: 6px;
        right: 6px;
        bottom: 6px;
        padding: 7px 7px !important;
        border-radius: 9px;
    }

    .phase1-home .ministrie-eight-title {
        font-size: 12px !important;
    }

    /* Cards: deliberately compact for 2-column mobile grid */
    .phase1-storefront .property-single-boxarea.difference-two {
        border-radius: 13px;
    }

    .phase1-storefront .property-single-boxarea.difference-two:hover {
        transform: none;
    }

    .phase1-storefront .property-single-content {
        min-height: 61px;
        padding: 9px 9px 4px !important;
    }

    .phase1-storefront .property-single-content h4,
    .phase1-storefront .property-single-content h4.title-animation {
        min-height: 35px;
        font-size: 12px !important;
        line-height: 1.42 !important;
    }

    .phase1-storefront .property-single-content p {
        margin-top: 2px !important;
        font-size: 9px !important;
    }

    .phase1-storefront .property-details.difference-two__tab-content {
        padding: 0 9px 6px;
    }

    .phase1-storefront .property-details.difference-two__tab-content ul {
        gap: 4px;
        min-height: 23px;
    }

    .phase1-storefront .property-details.difference-two__tab-content li {
        font-size: 11px;
    }

    .phase1-storefront .property-details.difference-two__tab-content li:last-child {
        font-size: 8px;
    }

    .phase1-storefront .property-details.difference-two__tab-content li:last-child i {
        display: none;
    }

    .phase1-storefront .property-details del {
        font-size: 8px;
    }

    .phase1-storefront .property-single-boxarea .btn-area1 {
        gap: 5px;
        padding: 0 8px 9px !important;
    }

    .phase1-storefront .property-single-boxarea .btn-area1 > a {
        min-height: 34px !important;
        height: 34px !important;
        padding: 0 7px !important;
        border-radius: 9px !important;
        font-size: 10px !important;
    }

    .phase1-storefront .property-single-boxarea .btn-area1 .action-btn-danger {
        flex-basis: 34px;
        width: 34px !important;
    }

    .phase1-storefront .property-single-boxarea .btn-area1 .action-btn-danger i {
        font-size: 15px !important;
    }

    .phase1-storefront .theme2-offer-badge,
    .phase1-storefront .qbit-badge-new,
    .phase1-storefront .qbi-badge-warning,
    .phase1-storefront .qbi-badge-success,
    .phase1-storefront .qbit-badge-primary,
    .phase1-storefront .qbit-badge-danger {
        min-height: 19px;
        padding: 3px 5px;
        border-radius: 6px;
        font-size: 7px;
    }

    .phase1-home .product-slider-common .swiper-button-next,
    .phase1-home .product-slider-common .swiper-button-prev {
        display: none;
    }

    .phase1-home .cta-section-two .title-animation {
        font-size: clamp(26px, 8vw, 36px) !important;
    }

    .phase1-home .countdown-timer {
        gap: 7px !important;
    }

    .phase1-home .countdown-timer .timer-box {
        min-width: 65px;
        padding: 8px 9px;
    }

    .phase1-home .faq-eight-accordion-button {
        min-height: 52px;
        padding: 13px 14px;
        font-size: 13px;
    }

    .phase1-home .faq-eight-accordion-body {
        padding: 0 14px 14px;
    }

    .phase1-home .faq-eight-accordion-body p {
        font-size: 13px;
    }

    .phase1-home .testimonial-six-wrapper {
        padding: 20px;
    }

    .phase1-home .testimonial-six-paragraph {
        font-size: 14px;
    }

    /* Footer */
    .phase1-storefront .footer-eight-top {
        margin-bottom: 30px;
        padding: 24px 0 18px;
    }

    .phase1-storefront .footer-eight-top-wrap {
        margin-bottom: 10px !important;
        text-align: center;
    }

    .phase1-storefront .footer-eight-top-wrap h4 {
        font-size: 19px;
    }

    .phase1-storefront .subscribe-six-input {
        min-height: 46px;
    }

    .phase1-storefront .footer-eight-top-info {
        align-items: center;
        justify-content: center !important;
        flex-direction: row;
        gap: 8px;
        margin: 10px 0 !important;
        text-align: left;
    }

    .phase1-storefront .footer-eight-top-info-con {
        min-width: 0;
        text-align: left;
    }

    .phase1-storefront .footer-eight-top-info-con a {
        display: block;
        overflow: hidden;
        max-width: 100%;
        font-size: 11px !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: normal;
    }

    .phase1-storefront .footer-two__widget,
    .phase1-storefront .footer-two__widget-intro,
    .phase1-storefront .footer-two__widget-content,
    .phase1-storefront .footer-two__widget h5,
    .phase1-storefront .footer-two__widget p {
        text-align: left !important;
    }

    .phase1-storefront .footer-two__widget-logo,
    .phase1-storefront .footer-two__widget .social,
    .phase1-storefront .footer-two__widget-intro {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .phase1-storefront .footer-two__widget-logo img {
        max-width: 155px;
        height: 40px !important;
    }

    .phase1-storefront .footer-two .footer-two__widget h5,
    .phase1-storefront .footer-two__widget h5 {
        font-size: 14px;
    }

    .phase1-storefront .footer-two .footer-two__widget p,
    .phase1-storefront .footer-two__widget p,
    .phase1-storefront .footer-two__widget-content ul li a,
    .phase1-storefront .footer-six-area .footer-two__widget .footer-two__widget-content--contact a {
        font-size: 12px !important;
    }

    .phase1-storefront .footer-two__copyright {
        margin-top: 26px;
        padding: 14px 0;
    }

    .phase1-storefront .footer-six-copyright-border {
        min-height: 0;
        gap: 8px;
    }

    .phase1-storefront .footer__bottom-list {
        gap: 12px;
    }

    .phase1-storefront .whatsapp-float,
    .phase1-storefront .progress-wrap {
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .phase1-storefront .whatsapp-float {
        bottom: 70px;
        font-size: 21px;
    }

    .phase1-storefront .progress-wrap {
        bottom: 14px;
    }
}

@media (max-width: 430px) {
    .phase1-storefront .header-six-area .navbar-logo img,
    .phase1-storefront .header .navbar-logo img {
        max-width: 118px;
        height: 34px !important;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 410px !important;
        min-height: 410px;
    }
}

@media (max-width: 389.98px) {
    .phase1-storefront .header-six-area .navbar-logo img,
    .phase1-storefront .header .navbar-logo img {
        max-width: 104px;
        height: 32px !important;
    }

    .phase1-storefront .header-category-btn {
        width: 38px;
        padding: 0 !important;
        font-size: 0 !important;
    }

    .phase1-storefront .header-category-btn i {
        margin: 0 !important;
        font-size: 14px;
    }

    .phase1-storefront .header-category-btn span {
        display: none !important;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 390px !important;
        min-height: 390px;
    }

    .phase1-home .banner-six-content {
        left: 10px !important;
        right: 10px !important;
        bottom: 27px !important;
    }

    .phase1-home .banner-six-card {
        padding: 13px !important;
    }

    .phase1-home .banner-six-title {
        font-size: 25px !important;
    }

    .phase1-storefront .property-single-content h4,
    .phase1-storefront .property-single-content h4.title-animation {
        font-size: 11px !important;
    }

    .phase1-storefront .property-details.difference-two__tab-content li {
        font-size: 10px;
    }

    .phase1-storefront .property-single-boxarea .btn-area1 > a {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

@media (max-width: 339.98px) {
    .phase1-storefront {
        --p1-gutter: 10px;
    }

    .phase1-storefront .container {
        width: calc(100% - 20px);
    }

    .phase1-storefront .header-six-area .navbar-logo img,
    .phase1-storefront .header .navbar-logo img {
        max-width: 94px;
    }

    .phase1-storefront .header-six-area .navbar__options {
        gap: 4px !important;
    }

    .phase1-storefront .header-category-btn,
    .phase1-storefront .header-cart-btn,
    .phase1-storefront .vl-offcanvas-toggle {
        width: 36px;
        min-height: 36px !important;
        height: 36px !important;
    }

    .phase1-home .banner-six-slide-wrapper,
    .phase1-home .banner-six-slide-bg {
        height: 370px !important;
        min-height: 370px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phase1-storefront *,
    .phase1-storefront *::before,
    .phase1-storefront *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ========================================================================== 
   Product card action row hotfix
   Fixes legacy .action-btn-* width:22px causing "View" to wrap vertically.
   Scoped to Theme 2 storefront product cards only.
   ========================================================================== */
.phase1-storefront .property-single-boxarea .btn-area1 {
    width: 100%;
    flex-wrap: nowrap !important;
}

.phase1-storefront .property-single-boxarea .btn-area1 > a {
    box-sizing: border-box;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

.phase1-storefront .property-single-boxarea .btn-area1 .action-btn-primary,
.phase1-storefront .property-single-boxarea .btn-area1 .create-btn-primary {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
}

.phase1-storefront .property-single-boxarea .btn-area1 .action-btn-danger {
    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
}

.phase1-storefront .property-single-boxarea .btn-area1 > a > i,
.phase1-storefront .property-single-boxarea .btn-area1 > a > span {
    flex: 0 0 auto;
}

.phase1-storefront .property-single-boxarea .btn-area1 > a > span {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

@media (max-width: 575.98px) {
    .phase1-storefront .property-single-boxarea .btn-area1 .action-btn-danger {
        flex-basis: 34px !important;
        width: 34px !important;
        min-width: 34px !important;
    }
}

/* ========================================================================== 
   New Arrivals heading alignment hotfix
   Keeps the section heading centered over the product grid on all widths.
   ========================================================================== */
.phase1-home .new-arrival-section > .container > .row:first-child {
    justify-content: center !important;
    text-align: center !important;
}

.phase1-home .new-arrival-section > .container > .row:first-child > [class*="col-"] {
    margin-left: auto !important;
    margin-right: auto !important;
}

.phase1-home .new-arrival-section > .container > .row:first-child .text-center,
.phase1-home .new-arrival-section .title-animation {
    width: 100% !important;
    text-align: center !important;
}

.phase1-home .new-arrival-section .sub-title-main {
    display: flex !important;
    width: max-content;
    max-width: 100%;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}


/* ========================================================================== 
   Final Category -> New Arrivals vertical rhythm correction
   Root cause: both adjacent sections had full section padding, creating a
   large empty band. Keep the title centered, collapse the boundary spacing,
   and control title-to-product spacing independently.
   ========================================================================== */
.phase1-home .category-section {
    padding-bottom: clamp(18px, 1.8vw, 26px) !important;
}

.phase1-home .new-arrival-section {
    padding-top: clamp(28px, 2.6vw, 38px) !important;
}

.phase1-home .new-arrival-section > .container > .row:first-child {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}

.phase1-home .new-arrival-section > .container > .row:first-child > [class*="col-"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.phase1-home .new-arrival-section > .container > .row:first-child .text-center {
    margin: 0 !important;
    padding: 0 !important;
}

.phase1-home .new-arrival-section .sub-title-main {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.phase1-home .new-arrival-section .title-animation {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.12 !important;
}

/* Keep the first product row anchored directly after the controlled title gap. */
.phase1-home .new-arrival-section > .container > .row:first-child + .row {
    margin-top: 0 !important;
}

@media (max-width: 767.98px) {
    .phase1-home .category-section {
        padding-bottom: 14px !important;
    }

    .phase1-home .new-arrival-section {
        padding-top: 22px !important;
    }

    .phase1-home .new-arrival-section > .container > .row:first-child {
        margin-bottom: 22px !important;
    }
}

/* ========================================================================== 
   Best Sellers / Top Selling final mobile grid correction
   The view now has one valid Bootstrap row instead of row > row. These rules
   let the two-column product grid use the phone width consistently without
   changing the shared product-card design used by Shop/Category pages.
   ========================================================================== */
.phase1-home .top-selling-section .top-selling-grid > [class*="col-"] {
    display: flex;
}

@media (max-width: 767.98px) {
    .phase1-home .top-selling-section {
        padding-top: 34px !important;
        padding-bottom: 38px !important;
    }

    .phase1-home .top-selling-section > .container-fluid {
        width: calc(100% - 20px);
        max-width: none !important;
        margin-left: auto;
        margin-right: auto;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .phase1-home .top-selling-section .section-eight-wrapper {
        width: 100%;
        margin: 0 auto 22px !important;
        text-align: center !important;
    }

    .phase1-home .top-selling-section .sub-title-main {
        display: flex;
        width: max-content;
        max-width: 100%;
        justify-content: center !important;
        margin: 0 auto 7px !important;
        font-size: 10px !important;
        line-height: 1.2;
        text-align: center;
    }

    .phase1-home .top-selling-section .title-animation {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        font-size: clamp(27px, 8.5vw, 34px) !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    .phase1-home .top-selling-section .top-selling-grid {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 16px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .phase1-home .top-selling-section .top-selling-grid > [class*="col-"] {
        min-width: 0;
        margin-bottom: 0 !important;
    }

    .phase1-home .top-selling-section .row.mt-4 {
        margin-top: 22px !important;
    }
}

@media (max-width: 359.98px) {
    .phase1-home .top-selling-section > .container-fluid {
        width: calc(100% - 14px);
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .phase1-home .top-selling-section .top-selling-grid {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 12px;
    }

    .phase1-home .top-selling-section .section-eight-wrapper {
        margin-bottom: 18px !important;
    }
}

/* ========================================================================== 
   Mobile Testimonials + Trusted Partners responsive correction
   Keeps desktop/tablet behavior intact while removing legacy Home-6 sizing
   that made both sections narrow/tall on phones.
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Testimonials: compact heading + one full-width readable card. */
    .phase1-home .testimonial-six-area {
        padding-top: 36px !important;
        padding-bottom: 38px !important;
        overflow: hidden;
    }

    .phase1-home .testimonial-six-area .container {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .phase1-home .testimonial-six-frist-row {
        --bs-gutter-x: 0;
        margin: 0 !important;
        padding-bottom: 0 !important;
        row-gap: 0 !important;
    }

    .phase1-home .testimonial-six-frist-row > [class*="col-"] {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .phase1-home .testimonial-six-right {
        margin: 0 0 20px !important;
        text-align: center !important;
    }

    .phase1-home .testimonial-six-right .section-six-wrapper {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 4px !important;
    }

    .phase1-home .testimonial-six-right .sub-title-main {
        width: max-content;
        max-width: 100%;
        margin: 0 auto 8px !important;
        justify-content: center !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        letter-spacing: .08em !important;
    }

    .phase1-home .testimonial-six-right .title-animation {
        max-width: 330px;
        margin: 0 auto !important;
        font-size: clamp(28px, 8.5vw, 34px) !important;
        line-height: 1.12 !important;
        text-align: center !important;
    }

    .phase1-home .testimonial-six-right .section-six-paragraph {
        max-width: 330px;
        margin: 12px auto 0 !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        letter-spacing: 0 !important;
        word-spacing: normal !important;
    }

    .phase1-home .testimonial-six-slide {
        width: 100% !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .phase1-home .testimonial-six-active {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .phase1-home .testimonial-six-active .swiper-wrapper {
        align-items: stretch !important;
    }

    .phase1-home .testimonial-six-wrapper {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 20px !important;
        border: 1px solid var(--p1-border) !important;
        border-radius: 16px !important;
        background: #fff !important;
        box-shadow: var(--p1-shadow-sm) !important;
    }

    .phase1-home .testimonial-six-top {
        min-height: 0 !important;
        margin: 0 0 16px !important;
        padding: 0 0 16px !important;
    }

    .phase1-home .testimonial-six-top .testimonial-six-paragraph {
        display: -webkit-box;
        margin: 0 !important;
        overflow: hidden;
        font-size: 14px !important;
        font-style: italic;
        font-weight: 500;
        line-height: 1.6 !important;
        text-align: left !important;
        letter-spacing: 0 !important;
        word-spacing: normal !important;
        overflow-wrap: anywhere;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }

    .phase1-home .testimonial-six-bottom,
    .phase1-home .testimonial-six-author {
        width: 100%;
        min-width: 0;
    }

    .phase1-home .testimonial-six-author {
        align-items: center !important;
        gap: 10px !important;
    }

    .phase1-home .testimonial-six-author-img {
        flex: 0 0 48px;
    }

    .phase1-home .testimonial-six-author-img img {
        width: 48px !important;
        height: 48px !important;
        border-width: 2px !important;
    }

    .phase1-home .testimonial-six-author-content {
        min-width: 0;
        text-align: left;
    }

    .phase1-home .testimonial-six-author-content h6 {
        margin: 0 0 2px !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
        overflow-wrap: anywhere;
    }

    .phase1-home .testimonial-six-author-content p {
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        overflow-wrap: anywhere;
    }

    /* Trusted Partners: 2 visible cards on phones, with readable logos. */
    .phase1-home .client-partners-section {
        padding-top: 34px !important;
        padding-bottom: 38px !important;
        overflow: hidden;
    }

    .phase1-home .client-partners-section .container {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .phase1-home .client-partners-section .section-title {
        margin: 0 0 20px !important;
        padding: 0 4px !important;
    }

    .phase1-home .client-partners-section .section-title .title-animation {
        margin: 0 !important;
        font-size: clamp(28px, 8.5vw, 34px) !important;
        line-height: 1.12 !important;
        text-align: center !important;
    }

    .phase1-home .client-partners-section .partner__slider {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .phase1-home .client-partners-section .partner__slider .swiper-wrapper {
        align-items: stretch !important;
    }

    .phase1-home .client-partners-section .client-partners,
    .phase1-home .client-partners-section .client-partners.swiper-slide {
        min-width: 0 !important;
        height: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .phase1-home .client-partners-section .brand-six-wrapper {
        box-sizing: border-box !important;
        width: 100% !important;
        min-height: 96px !important;
        height: 96px !important;
        margin: 0 !important;
        padding: 12px !important;
        border-radius: 14px !important;
    }

    .phase1-home .client-partners-section .brand-six-active-media,
    .phase1-home .client-partners-section .brand-six-hover-media,
    .phase1-home .client-partners-section .brand-six-wrapper > span {
        max-width: 100% !important;
    }

    .phase1-home .client-partners-section .brand-six-wrapper img {
        display: block !important;
        width: auto !important;
        max-width: 116px !important;
        height: auto !important;
        max-height: 48px !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 359.98px) {
    .phase1-home .testimonial-six-area,
    .phase1-home .client-partners-section {
        padding-top: 30px !important;
        padding-bottom: 32px !important;
    }

    .phase1-home .testimonial-six-area .container,
    .phase1-home .client-partners-section .container {
        width: calc(100% - 18px) !important;
    }

    .phase1-home .testimonial-six-wrapper {
        padding: 17px !important;
    }

    .phase1-home .client-partners-section .brand-six-wrapper {
        min-height: 86px !important;
        height: 86px !important;
        padding: 10px !important;
    }

    .phase1-home .client-partners-section .brand-six-wrapper img {
        max-width: 104px !important;
        max-height: 42px !important;
    }
}


/* ===== Phase 6 bundled source: phase2-product-discovery.css ===== */
/* ============================================================
   Care Ur Baby — Storefront Phase 2
   Shop + Category + Product Discovery + Offers
   Scope: Theme 2 frontend presentation and responsive behavior.
   Depends on Phase 1 design tokens. No commerce/backend calculations.
   ============================================================ */

.phase1-storefront .phase2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--p1-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ============================================================
   Shop / category discovery shell
   ============================================================ */
.phase1-storefront .phase2-shop {
    padding: clamp(38px, 4vw, 62px) 0 clamp(62px, 6vw, 94px);
    background: linear-gradient(180deg, #fbfdfc 0%, #fff 190px);
}

.phase1-storefront .phase2-shop-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}

.phase1-storefront .phase2-shop-heading > div:first-child {
    max-width: 720px;
}

.phase1-storefront .phase2-shop-heading h1,
.phase1-storefront .phase2-offer-products-head h1,
.phase1-storefront .phase2-page-intro h1 {
    margin: 0 0 8px;
    color: var(--p1-heading);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.12;
    font-weight: 780;
}

.phase1-storefront .phase2-shop-heading p,
.phase1-storefront .phase2-offer-products-head p,
.phase1-storefront .phase2-page-intro p {
    max-width: 680px;
    margin: 0;
    color: var(--p1-text);
    font-size: 15px;
    line-height: 1.65;
}

.phase1-storefront .phase2-result-summary {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid var(--p1-border);
    border-radius: 999px;
    background: #fff;
    color: var(--p1-muted);
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(16, 42, 38, .035);
}

.phase1-storefront .phase2-result-summary strong {
    color: var(--p1-heading);
    font-weight: 800;
}

.phase1-storefront .phase2-discovery-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 12px;
    border: 1px solid var(--p1-border);
    border-radius: var(--p1-radius-md);
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--p1-shadow-sm);
}

.phase1-storefront .phase2-product-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 620px;
    max-width: 760px;
    min-height: 48px;
    margin: 0;
    border: 1px solid #dfe8e5;
    border-radius: 12px;
    background: #f8fbfa;
    overflow: hidden;
}

.phase1-storefront .phase2-product-search > i {
    flex: 0 0 auto;
    margin-left: 16px;
    color: #84928f;
    font-size: 14px;
}

.phase1-storefront .phase2-product-search input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 12px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: var(--p1-heading);
    font-size: 14px;
    box-shadow: none !important;
}

.phase1-storefront .phase2-product-search input::placeholder {
    color: #95a19e;
}

.phase1-storefront .phase2-search-submit {
    align-self: stretch;
    min-width: 88px;
    padding: 0 18px;
    border: 0;
    background: var(--p1-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: background .2s ease;
}

.phase1-storefront .phase2-search-submit:hover {
    background: var(--p1-primary-dark);
}

.phase1-storefront .phase2-toolbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 10px;
}

.phase1-storefront .phase2-mobile-filter-btn {
    display: none;
}

.phase1-storefront .phase2-sort-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
}

.phase1-storefront .phase2-sort-wrap label {
    margin: 0;
    color: var(--p1-muted);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.phase1-storefront .phase2-sort-select,
.phase1-storefront .phase2-per-page-form select {
    min-height: 44px;
    padding: 0 34px 0 13px;
    border: 1px solid #dfe8e5;
    border-radius: 11px;
    background-color: #fff;
    color: var(--p1-heading);
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
    cursor: pointer;
}

.phase1-storefront .phase2-shop-layout {
    display: grid;
    grid-template-columns: minmax(235px, 268px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(20px, 2.1vw, 30px);
}

/* ============================================================
   Desktop filter sidebar
   ============================================================ */
.phase1-storefront .phase2-filter-sidebar {
    position: sticky;
    top: 104px;
    z-index: 15;
    overflow: hidden;
    max-height: calc(100vh - 124px);
    border: 1px solid var(--p1-border);
    border-radius: var(--p1-radius-lg);
    background: #fff;
    box-shadow: var(--p1-shadow-sm);
}

.phase1-storefront .phase2-filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--p1-border);
}

.phase1-storefront .phase2-filter-kicker {
    display: block;
    margin-bottom: 2px;
    color: var(--p1-muted);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.phase1-storefront .phase2-filter-panel-header h2 {
    margin: 0;
    color: var(--p1-heading);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 780;
}

.phase1-storefront .phase2-filter-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--p1-border);
    border-radius: 10px;
    background: #f8faf9;
    color: var(--p1-heading);
}

.phase1-storefront .phase2-filter-content {
    overflow-y: auto;
    max-height: calc(100vh - 220px);
    scrollbar-width: thin;
    scrollbar-color: #cfdad7 transparent;
}

.phase1-storefront .phase2-filter-list {
    padding: 0 17px;
}

.phase1-storefront .phase2-filter-section {
    border-bottom: 1px solid #edf2f0;
}

.phase1-storefront .phase2-filter-section:last-child {
    border-bottom: 0;
}

.phase1-storefront .phase2-filter-section summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 16px 25px 14px 0;
    color: var(--p1-heading);
    font-size: 14px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.phase1-storefront .phase2-filter-section summary::-webkit-details-marker {
    display: none;
}

.phase1-storefront .phase2-filter-section summary::after {
    content: "\f078";
    position: absolute;
    right: 1px;
    top: 50%;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: 900;
    color: #80908c;
    transform: translateY(-50%);
    transition: transform .2s ease;
}

.phase1-storefront .phase2-filter-section[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.phase1-storefront .phase2-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 10px;
    line-height: 1;
    font-weight: 850;
}

.phase1-storefront .phase2-filter-options {
    display: grid;
    gap: 5px;
    padding: 0 0 15px;
}

.phase1-storefront .phase2-category-group + .phase2-category-group {
    margin-top: 4px;
}

.phase1-storefront .phase2-check-row,
.phase1-storefront .phase2-color-row {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    margin: 0;
    padding: 5px 6px;
    border-radius: 8px;
    color: var(--p1-text);
    font-size: 12.5px;
    line-height: 1.35;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.phase1-storefront .phase2-check-row:hover,
.phase1-storefront .phase2-color-row:hover {
    background: #f6faf8;
    color: var(--p1-heading);
}

.phase1-storefront .phase2-check-row input[type="checkbox"],
.phase1-storefront .phase2-color-row input[type="checkbox"] {
    flex: 0 0 16px;
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    border: 1.5px solid #b8c5c1;
    border-radius: 4px;
    accent-color: var(--p1-primary);
    box-shadow: none !important;
}

.phase1-storefront .phase2-check-row input[type="checkbox"]:checked,
.phase1-storefront .phase2-color-row input[type="checkbox"]:checked {
    border-color: var(--p1-primary);
    background-color: var(--p1-primary);
}

.phase1-storefront .phase2-check-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    width: 100%;
    gap: 8px;
}

.phase1-storefront .phase2-check-copy > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.phase1-storefront .phase2-check-copy small {
    flex: 0 0 auto;
    min-width: 22px;
    color: #96a19f;
    font-size: 10px;
    text-align: right;
}

.phase1-storefront .phase2-parent-category {
    color: var(--p1-heading);
    font-weight: 750;
}

.phase1-storefront .phase2-child-categories {
    margin: 2px 0 3px 16px;
    padding-left: 7px;
    border-left: 1px solid #e4ece9;
}

.phase1-storefront .phase2-color-options {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.phase1-storefront .phase2-color-swatch {
    display: inline-block;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--phase2-color, #d9dfdd);
    box-shadow: 0 0 0 1px #d8e0de;
}

.phase1-storefront .phase2-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.phase1-storefront .phase2-size-row {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.phase1-storefront .phase2-size-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.phase1-storefront .phase2-size-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 34px;
    padding: 5px 10px;
    border: 1px solid #dce5e2;
    border-radius: 9px;
    background: #fff;
    color: var(--p1-text);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 750;
    transition: all .18s ease;
}

.phase1-storefront .phase2-size-row input:checked + span {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .phase2-filter-empty {
    margin: 0;
    padding: 5px 0 12px;
    color: var(--p1-muted);
    font-size: 12px;
}

.phase1-storefront .phase2-desktop-filter-actions {
    padding: 13px 17px 17px;
    border-top: 1px solid var(--p1-border);
    background: #fbfcfc;
}

.phase1-storefront .phase2-filter-clear,
.phase1-storefront .phase2-filter-apply,
.phase1-storefront .phase2-empty-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
    transition: all .18s ease;
}

.phase1-storefront .phase2-filter-clear {
    width: 100%;
    border: 1px solid #dfe7e5;
    background: #fff;
    color: #6d7b78;
}

.phase1-storefront .phase2-filter-clear:hover {
    border-color: #c9d6d2;
    background: #f5f8f7;
    color: var(--p1-heading);
}

.phase1-storefront .phase2-filter-apply,
.phase1-storefront .phase2-empty-action {
    border: 1px solid var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .phase2-filter-apply:hover,
.phase1-storefront .phase2-empty-action:hover {
    border-color: var(--p1-primary-dark);
    background: var(--p1-primary-dark);
    color: #fff;
}

.phase1-storefront .phase2-mobile-filter-footer,
.phase1-storefront .phase2-filter-overlay {
    display: none;
}

/* ============================================================
   Product grid + AJAX/loading/empty/pagination states
   ============================================================ */
.phase1-storefront .phase2-product-area {
    position: relative;
    min-width: 0;
    min-height: 320px;
}

.phase1-storefront .phase2-product-grid {
    margin-top: 0;
    margin-bottom: 0;
}

.phase1-storefront .phase2-product-grid > [class*="col-"] {
    display: flex;
}

.phase1-storefront .phase2-product-grid .property-single-boxarea.difference-two {
    width: 100%;
    min-width: 0;
}

.phase1-storefront .phase2-product-grid .property-list-img-area-static {
    aspect-ratio: 1 / 1;
}

.phase1-storefront .phase2-product-grid .property-single-content h4,
.phase1-storefront .phase2-product-grid .property-single-content h4.title-animation {
    min-height: 42px;
    white-space: normal !important;
    -webkit-line-clamp: 2;
}

.phase1-storefront .phase2-loading-state {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding-top: 80px;
    border-radius: var(--p1-radius-md);
    background: rgba(255, 255, 255, .78);
    color: var(--p1-heading);
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(2px);
    transition: opacity .15s ease, visibility .15s ease;
}

.phase1-storefront .phase2-product-area.phase2-is-loading .phase2-loading-state {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.phase1-storefront .phase2-product-area.phase2-is-loading #productGridContainer {
    opacity: .58;
}

.phase1-storefront .phase2-spinner {
    width: 19px;
    height: 19px;
    border: 2px solid #d7e5e1;
    border-top-color: var(--p1-primary);
    border-radius: 50%;
    animation: phase2Spin .7s linear infinite;
}

@keyframes phase2Spin {
    to { transform: rotate(360deg); }
}

.phase1-storefront .phase2-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 350px;
    padding: 42px 22px;
    border: 1px dashed #d5e2de;
    border-radius: var(--p1-radius-lg);
    background: #fbfdfc;
    text-align: center;
}

.phase1-storefront .phase2-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 25px;
}

.phase1-storefront .phase2-empty-state h3 {
    margin: 0 0 7px;
    color: var(--p1-heading);
    font-size: 22px;
    line-height: 1.25;
}

.phase1-storefront .phase2-empty-state p {
    max-width: 470px;
    margin: 0 0 18px;
    color: var(--p1-muted);
    font-size: 14px;
}

.phase1-storefront .phase2-empty-action {
    min-width: 130px;
}

.phase1-storefront .phase2-pagination,
.phase1-storefront .phase2-pagination .th-pagination {
    margin-top: clamp(30px, 3.4vw, 48px);
    text-align: center;
}

.phase1-storefront .phase2-pagination .pagination,
.phase1-storefront #productGridContainer > .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 34px 0 0;
}

.phase1-storefront .phase2-pagination .page-item,
.phase1-storefront #productGridContainer > .pagination .page-item {
    margin: 0;
}

.phase1-storefront .phase2-pagination .page-link,
.phase1-storefront #productGridContainer > .pagination .page-link,
.phase1-storefront .phase2-pagination a,
.phase1-storefront .phase2-pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 7px 10px;
    border: 1px solid #dfe7e5;
    border-radius: 10px;
    background: #fff;
    color: var(--p1-heading);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: none;
}

.phase1-storefront .phase2-pagination .active .page-link,
.phase1-storefront .phase2-pagination .page-item.active .page-link,
.phase1-storefront .phase2-pagination a.active,
.phase1-storefront .phase2-pagination .current,
.phase1-storefront #productGridContainer > .pagination .active .page-link {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .phase2-pagination .disabled .page-link,
.phase1-storefront .phase2-pagination .disabled,
.phase1-storefront #productGridContainer > .pagination .disabled .page-link {
    opacity: .45;
    pointer-events: none;
}

/* ============================================================
   Offer product details/listing
   ============================================================ */
.phase1-storefront .phase2-offer-products {
    padding: clamp(42px, 4.5vw, 70px) 0 clamp(64px, 6vw, 96px);
    background: #fff;
}

.phase1-storefront .phase2-offer-products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.phase1-storefront .phase2-offer-products-head > div:first-child {
    max-width: 680px;
}

.phase1-storefront .phase2-offer-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.phase1-storefront .phase2-per-page-form {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.phase1-storefront .phase2-per-page-form label {
    margin: 0;
    color: var(--p1-muted);
    font-size: 12px;
    font-weight: 750;
}

.phase1-storefront .phase2-per-page-form select {
    min-width: 72px;
}

/* ============================================================
   Offers & campaigns page
   ============================================================ */
.phase1-storefront .phase2-offers-page {
    background: linear-gradient(180deg, #f8fbfa 0, #fff 300px);
}

.phase1-storefront .phase2-offers-content {
    padding: clamp(42px, 4.4vw, 68px) 0 clamp(68px, 6vw, 100px);
}

.phase1-storefront .phase2-page-intro {
    max-width: 760px;
    margin: 0 auto clamp(34px, 4vw, 54px);
    text-align: center;
}

.phase1-storefront .phase2-page-intro p {
    margin-left: auto;
    margin-right: auto;
}

.phase1-storefront .phase2-scout-offer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    margin-bottom: clamp(46px, 5vw, 72px);
    padding: clamp(28px, 4vw, 48px);
    border-radius: 24px;
    background: linear-gradient(135deg, #0b5f52 0%, #03463d 100%);
    box-shadow: 0 18px 48px rgba(3, 70, 61, .17);
}

.phase1-storefront .phase2-scout-offer::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -105px;
    bottom: -185px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.phase1-storefront .phase2-scout-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.phase1-storefront .phase2-scout-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.phase1-storefront .phase2-scout-copy h2 {
    max-width: 610px;
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
}

.phase1-storefront .phase2-scout-copy p {
    max-width: 650px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
}

.phase1-storefront .phase2-scout-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.phase1-storefront .phase2-coupon-copy,
.phase1-storefront .phase2-scout-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.phase1-storefront .phase2-coupon-copy {
    border: 1px dashed rgba(255,255,255,.55);
    background: rgba(255,255,255,.12);
    color: #fff;
}

.phase1-storefront .phase2-coupon-copy small {
    color: rgba(255,255,255,.68);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.phase1-storefront .phase2-scout-shop-btn {
    border: 1px solid #fff;
    background: #fff;
    color: #03463d;
}

.phase1-storefront .phase2-scout-shop-btn:hover {
    background: #eef8f5;
    color: #03463d;
}

.phase1-storefront .phase2-scout-discount {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #fff;
    color: #03463d;
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
    transform: rotate(4deg);
}

.phase1-storefront .phase2-scout-discount strong {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 850;
}

.phase1-storefront .phase2-scout-discount span {
    margin-top: 5px;
    color: var(--p1-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.phase1-storefront .phase2-offer-section + .phase2-offer-section {
    margin-top: clamp(50px, 5.5vw, 78px);
}

.phase1-storefront .phase2-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.phase1-storefront .phase2-section-heading h2 {
    margin: 0;
    color: var(--p1-heading);
    font-size: clamp(27px, 2.5vw, 38px);
    line-height: 1.15;
    font-weight: 770;
}

.phase1-storefront .phase2-section-meta {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 11px;
    font-weight: 850;
}

.phase1-storefront .phase2-campaign-grid > div,
.phase1-storefront .phase2-offer-grid > div,
.phase1-storefront .phase2-coupon-grid > div {
    display: flex;
}

.phase1-storefront .phase2-campaign-card,
.phase1-storefront .phase2-offer-card,
.phase1-storefront .phase2-promo-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--p1-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--p1-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.phase1-storefront .phase2-campaign-card:hover,
.phase1-storefront .phase2-offer-card:hover,
.phase1-storefront .phase2-promo-card:hover {
    border-color: #d4e2de;
    transform: translateY(-4px);
    box-shadow: var(--p1-shadow-md);
}

.phase1-storefront .phase2-campaign-media,
.phase1-storefront .phase2-offer-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eef4f2;
}

.phase1-storefront .phase2-campaign-media img,
.phase1-storefront .phase2-offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.phase1-storefront .phase2-campaign-card:hover .phase2-campaign-media img,
.phase1-storefront .phase2-offer-card:hover .phase2-offer-media img {
    transform: scale(1.025);
}

.phase1-storefront .phase2-card-badge,
.phase1-storefront .phase2-discount-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 9px;
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(0,0,0,.1);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
}

.phase1-storefront .phase2-card-badge {
    background: #fff;
    color: var(--p1-primary);
}

.phase1-storefront .phase2-discount-badge {
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .phase2-offer-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #edf8f5, #dfeeea);
    color: rgba(4,106,88,.3);
    font-size: 42px;
}

.phase1-storefront .phase2-campaign-body,
.phase1-storefront .phase2-offer-body {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 18px;
}

.phase1-storefront .phase2-campaign-body h3,
.phase1-storefront .phase2-offer-body h3,
.phase1-storefront .phase2-promo-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 8px;
    color: var(--p1-heading);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 780;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.phase1-storefront .phase2-campaign-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 16px;
    color: var(--p1-text);
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.phase1-storefront .phase2-offer-validity {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 18px;
    color: var(--p1-muted);
    font-size: 12px;
    line-height: 1.45;
}

.phase1-storefront .phase2-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: var(--p1-primary);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 850;
    text-decoration: none;
}

.phase1-storefront .phase2-card-action i {
    font-size: 10px;
    transition: transform .18s ease;
}

.phase1-storefront .phase2-card-action:hover {
    color: var(--p1-primary-dark);
}

.phase1-storefront .phase2-card-action:hover i {
    transform: translateX(3px);
}

.phase1-storefront .phase2-promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 20px;
}

.phase1-storefront .phase2-promo-card::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: var(--p1-primary-soft);
}

.phase1-storefront .phase2-promo-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.phase1-storefront .phase2-promo-topline span {
    color: var(--p1-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.phase1-storefront .phase2-promo-topline strong {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 11px;
    font-weight: 900;
}

.phase1-storefront .phase2-promo-code {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    margin: 10px 0 17px;
    padding: 0 13px;
    border: 1px dashed #b7cbc5;
    border-radius: 10px;
    background: #f8fbfa;
    color: var(--p1-heading);
    text-align: left;
}

.phase1-storefront .phase2-promo-code > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
}

.phase1-storefront .phase2-promo-code > span:last-child {
    flex: 0 0 auto;
    color: var(--p1-primary);
    font-size: 11px;
    font-weight: 850;
}

.phase1-storefront .phase2-promo-validity {
    position: relative;
    z-index: 1;
    margin: auto 0 0;
    color: var(--p1-muted);
    font-size: 11.5px;
}

.phase1-storefront .phase2-offers-empty {
    margin-top: 20px;
}

/* ============================================================
   Tablet / mobile product discovery
   ============================================================ */
@media (max-width: 1199.98px) {
    .phase1-storefront .phase2-shop-layout {
        grid-template-columns: 235px minmax(0, 1fr);
        gap: 20px;
    }

    .phase1-storefront .phase2-filter-list {
        padding-left: 14px;
        padding-right: 14px;
    }

    .phase1-storefront .phase2-filter-panel-header {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    body.phase2-filter-open {
        overflow: hidden;
        touch-action: none;
    }

    .phase1-storefront .phase2-shop {
        padding-top: 32px;
    }

    .phase1-storefront .phase2-shop-heading,
    .phase1-storefront .phase2-offer-products-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .phase1-storefront .phase2-result-summary {
        white-space: normal;
    }

    .phase1-storefront .phase2-discovery-bar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .phase1-storefront .phase2-product-search {
        flex-basis: auto;
        width: 100%;
        max-width: none;
    }

    .phase1-storefront .phase2-toolbar-actions {
        width: 100%;
        justify-content: space-between;
    }

    .phase1-storefront .phase2-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 1 1 50%;
        min-height: 44px;
        padding: 0 14px;
        border: 1px solid #dce6e3;
        border-radius: 10px;
        background: #fff;
        color: var(--p1-heading);
        font-size: 13px;
        font-weight: 800;
    }

    .phase1-storefront .phase2-filter-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 19px;
        height: 19px;
        padding: 0 5px;
        border-radius: 999px;
        background: var(--p1-primary);
        color: #fff;
        font-size: 10px;
        font-weight: 900;
    }

    .phase1-storefront .phase2-filter-count.d-none {
        display: none !important;
    }

    .phase1-storefront .phase2-sort-wrap {
        flex: 1 1 50%;
        min-width: 0;
    }

    .phase1-storefront .phase2-sort-wrap label {
        display: none;
    }

    .phase1-storefront .phase2-sort-select {
        width: 100%;
        min-width: 0;
    }

    .phase1-storefront .phase2-shop-layout {
        display: block;
    }

    .phase1-storefront .phase2-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 10030;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(9, 29, 26, .5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(2px);
        transition: opacity .22s ease, visibility .22s ease;
    }

    body.phase2-filter-open .phase1-storefront .phase2-filter-overlay {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .phase1-storefront .phase2-filter-sidebar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 10031;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        max-height: min(84dvh, 720px);
        border: 0;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -18px 50px rgba(9, 29, 26, .2);
        transform: translateY(105%);
        transition: transform .28s cubic-bezier(.2,.75,.25,1);
    }

    body.phase2-filter-open .phase1-storefront .phase2-filter-sidebar {
        transform: translateY(0);
    }

    .phase1-storefront .phase2-filter-sidebar::before {
        content: "";
        position: absolute;
        top: 7px;
        left: 50%;
        width: 42px;
        height: 4px;
        border-radius: 999px;
        background: #d7dfdd;
        transform: translateX(-50%);
    }

    .phase1-storefront .phase2-filter-panel-header {
        flex: 0 0 auto;
        padding: 21px 17px 12px;
    }

    .phase1-storefront .phase2-filter-close {
        display: inline-flex;
    }

    .phase1-storefront .phase2-filter-content {
        flex: 1 1 auto;
        max-height: none;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .phase1-storefront .phase2-filter-list {
        padding-left: 17px;
        padding-right: 17px;
    }

    .phase1-storefront .phase2-filter-section summary {
        padding-top: 17px;
        padding-bottom: 16px;
        font-size: 15px;
    }

    .phase1-storefront .phase2-check-row,
    .phase1-storefront .phase2-color-row {
        min-height: 40px;
        padding: 7px 5px;
        font-size: 13px;
    }

    .phase1-storefront .phase2-desktop-filter-actions {
        display: none;
    }

    .phase1-storefront .phase2-mobile-filter-footer {
        display: grid;
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
        flex: 0 0 auto;
        gap: 10px;
        padding: 12px 17px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--p1-border);
        background: #fff;
    }

    .phase1-storefront .phase2-mobile-filter-footer .phase2-filter-clear,
    .phase1-storefront .phase2-mobile-filter-footer .phase2-filter-apply {
        width: 100%;
        min-height: 47px;
        font-size: 13px;
    }

    .phase1-storefront .phase2-filter-sidebar.phase2-has-pending-filters .phase2-filter-apply {
        box-shadow: 0 0 0 4px rgba(4,106,88,.1);
    }

    .phase1-storefront .phase2-offer-tools {
        width: 100%;
        justify-content: space-between;
    }

    .phase1-storefront .phase2-scout-offer {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .phase1-storefront .phase2-scout-discount {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 92px;
        height: 92px;
    }

    .phase1-storefront .phase2-scout-discount strong {
        font-size: 23px;
    }

    .phase1-storefront .phase2-scout-copy {
        padding-right: 105px;
    }
}

@media (max-width: 575.98px) {
    .phase1-storefront .phase2-shop,
    .phase1-storefront .phase2-offer-products,
    .phase1-storefront .phase2-offers-content {
        padding-top: 28px;
    }

    .phase1-storefront .phase2-shop-heading {
        margin-bottom: 18px;
    }

    .phase1-storefront .phase2-shop-heading h1,
    .phase1-storefront .phase2-offer-products-head h1,
    .phase1-storefront .phase2-page-intro h1 {
        font-size: 28px;
    }

    .phase1-storefront .phase2-shop-heading p,
    .phase1-storefront .phase2-offer-products-head p,
    .phase1-storefront .phase2-page-intro p {
        font-size: 13px;
    }

    .phase1-storefront .phase2-result-summary {
        padding: 7px 10px;
        font-size: 11px;
    }

    .phase1-storefront .phase2-discovery-bar {
        margin-bottom: 18px;
        border-radius: 12px;
    }

    .phase1-storefront .phase2-product-search {
        min-height: 45px;
    }

    .phase1-storefront .phase2-product-search input {
        height: 43px;
        padding-left: 9px;
        font-size: 12.5px;
    }

    .phase1-storefront .phase2-product-search > i {
        margin-left: 12px;
        font-size: 12px;
    }

    .phase1-storefront .phase2-search-submit {
        min-width: 66px;
        padding: 0 11px;
        font-size: 11px;
    }

    .phase1-storefront .phase2-mobile-filter-btn,
    .phase1-storefront .phase2-sort-select {
        min-height: 42px;
        font-size: 11.5px;
    }

    .phase1-storefront .phase2-product-grid {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 12px;
    }

    .phase1-storefront .phase2-product-grid .property-single-content h4,
    .phase1-storefront .phase2-product-grid .property-single-content h4.title-animation {
        min-height: 35px;
    }

    .phase1-storefront .phase2-empty-state {
        min-height: 280px;
        padding: 32px 16px;
    }

    .phase1-storefront .phase2-empty-icon {
        width: 54px;
        height: 54px;
        border-radius: 15px;
        font-size: 21px;
    }

    .phase1-storefront .phase2-empty-state h3 {
        font-size: 19px;
    }

    .phase1-storefront .phase2-pagination .page-link,
    .phase1-storefront #productGridContainer > .pagination .page-link,
    .phase1-storefront .phase2-pagination a,
    .phase1-storefront .phase2-pagination button {
        min-width: 36px;
        min-height: 36px;
        padding: 5px 8px;
        border-radius: 9px;
        font-size: 11px;
    }

    .phase1-storefront .phase2-offer-products-head {
        margin-bottom: 22px;
    }

    .phase1-storefront .phase2-offer-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .phase1-storefront .phase2-per-page-form {
        justify-content: space-between;
        width: 100%;
    }

    .phase1-storefront .phase2-per-page-form select {
        width: 88px;
    }

    .phase1-storefront .phase2-page-intro {
        margin-bottom: 30px;
    }

    .phase1-storefront .phase2-scout-offer {
        margin-bottom: 44px;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .phase1-storefront .phase2-scout-copy {
        padding-right: 0;
        padding-top: 78px;
    }

    .phase1-storefront .phase2-scout-discount {
        top: 18px;
        right: 18px;
        width: 76px;
        height: 76px;
    }

    .phase1-storefront .phase2-scout-discount strong {
        font-size: 19px;
    }

    .phase1-storefront .phase2-scout-discount span {
        font-size: 9px;
    }

    .phase1-storefront .phase2-scout-copy h2 {
        font-size: 26px;
    }

    .phase1-storefront .phase2-scout-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .phase1-storefront .phase2-coupon-copy,
    .phase1-storefront .phase2-scout-shop-btn {
        width: 100%;
    }

    .phase1-storefront .phase2-section-heading {
        align-items: flex-start;
        gap: 10px;
    }

    .phase1-storefront .phase2-section-heading h2 {
        font-size: 26px;
    }

    .phase1-storefront .phase2-campaign-body,
    .phase1-storefront .phase2-offer-body {
        min-height: 170px;
        padding: 16px;
    }

    .phase1-storefront .phase2-promo-card {
        min-height: 220px;
        padding: 17px;
    }
}

@media (max-width: 359.98px) {
    .phase1-storefront .phase2-product-search input::placeholder {
        color: transparent;
    }

    .phase1-storefront .phase2-search-submit {
        min-width: 58px;
    }

    .phase1-storefront .phase2-mobile-filter-btn {
        padding-left: 9px;
        padding-right: 9px;
    }

    .phase1-storefront .phase2-section-meta {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phase1-storefront .phase2-spinner {
        animation-duration: 1.4s;
    }

    .phase1-storefront .phase2-filter-sidebar,
    .phase1-storefront .phase2-filter-overlay,
    .phase1-storefront .phase2-campaign-card,
    .phase1-storefront .phase2-offer-card,
    .phase1-storefront .phase2-promo-card,
    .phase1-storefront .phase2-campaign-media img,
    .phase1-storefront .phase2-offer-media img {
        transition: none !important;
    }
}


/* ===== Phase 6 bundled source: phase4-checkout-customer-actions.css ===== */
/* ============================================================
   Care Ur Baby — Storefront Phase 4
   Checkout + Track Order + Customer Actions
   Scope: Theme 2 frontend presentation and interaction states.
   ============================================================ */

.phase1-storefront {
    --p4-primary: var(--p1-primary, #046a58);
    --p4-primary-dark: var(--p1-primary-dark, #035448);
    --p4-primary-soft: var(--p1-primary-soft, #edf8f5);
    --p4-heading: var(--p1-heading, #102a26);
    --p4-text: var(--p1-text, #52625f);
    --p4-muted: var(--p1-muted, #788783);
    --p4-border: var(--p1-border, #e5ecea);
    --p4-surface: #fff;
    --p4-soft: #f7faf9;
    --p4-danger: #c83f4d;
    --p4-danger-soft: #fff1f2;
    --p4-success: #198754;
    --p4-success-soft: #edf9f2;
    --p4-warning-soft: #fff9e8;
    --p4-shadow: 0 18px 48px rgba(16, 42, 38, .09);
    --p4-radius: 20px;
    --p4-radius-sm: 13px;
}

.phase1-storefront .phase4-eyebrow {
    display: block;
    margin: 0 0 6px;
    color: var(--p4-primary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* ============================================================
   Checkout
   ============================================================ */
.phase4-checkout-page {
    padding: clamp(42px, 5vw, 76px) 0 clamp(64px, 6vw, 96px);
    background: linear-gradient(180deg, #f7faf9 0, #fff 45%);
}

.phase4-checkout-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.phase4-checkout-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: 1.08;
}

.phase4-checkout-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--p4-text);
}

.phase4-checkout-steps {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.phase4-checkout-steps span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 11px;
    border: 1px solid var(--p4-border);
    border-radius: 999px;
    background: #fff;
    color: var(--p4-muted);
    font-size: 12px;
    font-weight: 750;
}

.phase4-checkout-steps span strong,
.phase4-checkout-steps span > i {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eef2f1;
    color: inherit;
    font-size: 11px;
}

.phase4-checkout-steps .is-complete,
.phase4-checkout-steps .is-active {
    border-color: rgba(4, 106, 88, .22);
    color: var(--p4-primary);
}

.phase4-checkout-steps .is-complete > i,
.phase4-checkout-steps .is-active strong {
    background: var(--p4-primary);
    color: #fff;
}

.phase4-checkout-alerts,
.phase4-checkout-ajax-notice {
    max-width: 980px;
    margin: 0 auto 22px;
}

.phase4-checkout-alerts .alert,
.phase4-checkout-ajax-notice {
    border: 1px solid currentColor;
    border-radius: var(--p4-radius-sm);
    box-shadow: none;
    font-size: 14px;
}

.phase4-checkout-left {
    display: grid;
    gap: 22px;
}

.phase4-checkout-card,
.phase4-order-summary-card {
    overflow: hidden;
    border: 1px solid var(--p4-border);
    border-radius: var(--p4-radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(16, 42, 38, .05);
}

.phase4-checkout-card-head,
.phase4-order-summary-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--p4-border);
    background: #fbfdfc;
}

.phase4-checkout-card-head h2,
.phase4-order-summary-head h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

.phase4-checkout-card-head p {
    margin: 5px 0 0;
    color: var(--p4-muted);
    font-size: 13px;
    line-height: 1.5;
}

.phase4-card-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--p4-primary-soft);
    color: var(--p4-primary);
    font-size: 21px;
}

.phase4-scout-card .phase4-card-icon {
    background: #fff6df;
    color: #b47600;
}

.phase4-checkout-card-body {
    padding: 24px;
}

.phase4-field {
    position: relative;
}

.phase4-field label,
.phase4-summary-promo label,
.phase4-payment-methods legend {
    display: block;
    margin: 0 0 7px;
    color: var(--p4-heading);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 750;
}

.phase4-field label span {
    color: var(--p4-muted);
    font-weight: 600;
}

.phase4-field .form-control,
.phase4-field select,
.phase4-summary-promo input,
.phase4-track-input-wrap input,
.phase4-auth-form .form-control {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dce5e2;
    border-radius: 12px;
    background: #fff;
    color: var(--p4-heading);
    font-size: 14px;
    line-height: 1.4;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.phase4-field .form-control,
.phase4-field select {
    padding: 11px 13px;
}

.phase4-field textarea.form-control {
    min-height: 104px;
    resize: vertical;
}

.phase4-field .form-control:focus,
.phase4-field select:focus,
.phase4-summary-promo input:focus,
.phase4-track-input-wrap input:focus,
.phase4-auth-form .form-control:focus {
    border-color: var(--p4-primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(4, 106, 88, .10);
}

.phase4-field .form-control.is-invalid,
.phase4-field select.is-invalid,
.phase4-auth-form .is-invalid {
    border-color: var(--p4-danger) !important;
}

.phase4-checkout-page .select2-container {
    display: block;
    width: 100% !important;
}

.phase4-checkout-page .select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    min-height: 48px;
    border: 1px solid #dce5e2 !important;
    border-radius: 12px !important;
    background: #fff;
}

.phase4-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 38px 0 13px;
    color: var(--p4-heading);
    font-size: 14px;
    line-height: 46px;
}

.phase4-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 9px;
    height: 36px;
}

.phase4-checkout-page .select2-container--open .select2-selection--single,
.phase4-checkout-page .select2-container--focus .select2-selection--single {
    border-color: var(--p4-primary) !important;
    box-shadow: 0 0 0 3px rgba(4, 106, 88, .10) !important;
}

.select2-dropdown {
    border-color: #dce5e2 !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: var(--p4-shadow);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--p4-primary) !important;
}

.phase4-account-option {
    padding: 16px;
    border: 1px solid var(--p4-border);
    border-radius: 14px;
    background: var(--p4-soft);
}

.phase4-account-option > label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.phase4-account-option > label input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.phase4-account-option > label span {
    display: grid;
    gap: 2px;
}

.phase4-account-option > label strong {
    color: var(--p4-heading);
    font-size: 14px;
}

.phase4-account-option > label small {
    color: var(--p4-muted);
    font-size: 12px;
}

.phase4-order-summary-card {
    position: sticky;
    top: 110px;
}

.phase4-order-summary-head {
    align-items: center;
    justify-content: space-between;
}

.phase4-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--p4-primary-soft);
    color: var(--p4-primary);
    font-size: 11px;
    font-weight: 800;
}

.phase4-checkout-summary-inner {
    padding: 20px 22px 22px;
}

.phase4-summary-products {
    margin-bottom: 18px;
}

.phase4-summary-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--p4-muted);
    font-size: 12px;
    font-weight: 750;
}

.phase4-summary-products-head a {
    color: var(--p4-primary);
    text-decoration: none;
}

.phase4-summary-products-list {
    display: grid;
    gap: 12px;
    max-height: 236px;
    padding-right: 2px;
    overflow: auto;
    scrollbar-width: thin;
}

.phase4-summary-product {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.phase4-summary-product-image {
    position: relative;
    width: 54px;
    height: 54px;
    border: 1px solid var(--p4-border);
    border-radius: 10px;
    background: var(--p4-soft);
}

.phase4-summary-product-image img {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    object-fit: cover;
}

.phase4-summary-product-image > span {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--p4-heading);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.phase4-summary-product-copy {
    min-width: 0;
}

.phase4-summary-product-copy > strong {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 2px;
    color: var(--p4-heading);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 750;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.phase4-summary-product-copy > div {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 8px;
    color: var(--p4-muted);
    font-size: 10px;
}

.phase4-summary-product-price {
    color: var(--p4-heading);
    font-size: 12px;
    white-space: nowrap;
}

.phase4-summary-promo {
    padding: 16px 0;
    border-top: 1px solid var(--p4-border);
    border-bottom: 1px solid var(--p4-border);
}

.phase4-summary-promo-row {
    display: flex;
    gap: 8px;
}

.phase4-summary-promo input {
    min-width: 0;
    min-height: 43px;
    padding: 9px 11px;
}

.phase4-summary-promo button {
    flex: 0 0 auto;
    min-height: 43px;
    padding: 8px 15px;
    border: 1px solid var(--p4-primary);
    border-radius: 11px;
    background: var(--p4-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.phase4-coupon-message {
    margin: 7px 0 0;
    font-size: 12px;
}

.phase4-summary-totals {
    display: grid;
    gap: 9px;
    padding: 16px 0;
    border-bottom: 1px solid var(--p4-border);
}

.phase4-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--p4-text);
    font-size: 13px;
}

.phase4-summary-row strong {
    color: var(--p4-heading);
    font-weight: 750;
}

.phase4-discount-row,
.phase4-discount-row strong {
    color: var(--p4-success);
}

.phase4-remove-coupon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    border: 0;
    border-radius: 50%;
    background: var(--p4-danger-soft);
    color: var(--p4-danger);
}

.phase4-summary-grand-total {
    margin-top: 3px;
    padding-top: 10px;
    border-top: 1px dashed #d5dfdc;
    color: var(--p4-heading);
    font-size: 17px;
    font-weight: 800;
}

.phase4-summary-grand-total strong {
    color: var(--p4-primary);
    font-size: 20px;
}

.phase4-payment-methods {
    display: grid;
    gap: 9px;
    margin: 17px 0 0;
    padding: 0;
    border: 0;
}

.phase4-payment-methods legend {
    margin-bottom: 3px;
}

.phase4-payment-option {
    position: relative;
    display: grid;
    grid-template-columns: auto 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--p4-border);
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease;
}

.phase4-payment-option:has(input:checked) {
    border-color: rgba(4, 106, 88, .36);
    background: var(--p4-primary-soft);
}

.phase4-payment-option > input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--p4-primary);
}

.phase4-payment-option-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #f0f5f3;
    color: var(--p4-primary);
    font-size: 19px;
}

.phase4-payment-option > span:nth-of-type(2) {
    display: grid;
    min-width: 0;
    gap: 1px;
}

.phase4-payment-option strong {
    color: var(--p4-heading);
    font-size: 13px;
}

.phase4-payment-option small {
    color: var(--p4-muted);
    font-size: 10px;
    line-height: 1.4;
}

.phase4-payment-check {
    color: transparent;
    font-size: 20px;
}

.phase4-payment-option:has(input:checked) .phase4-payment-check {
    color: var(--p4-primary);
}

.phase4-manual-payment {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--p4-border);
    border-radius: 13px;
    background: var(--p4-soft);
}

.phase4-gateway-details {
    display: grid;
    gap: 9px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 11px;
    background: #fff;
}

.phase4-gateway-logo {
    max-width: 130px;
    max-height: 46px;
    object-fit: contain;
}

.phase4-gateway-instruction {
    color: var(--p4-text);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.phase4-gateway-qr-wrap {
    display: grid;
    justify-items: center;
    gap: 6px;
}

.phase4-gateway-qr-wrap small {
    color: var(--p4-muted);
    font-size: 11px;
}

.phase4-gateway-qr {
    width: 140px;
    height: 140px;
    padding: 5px;
    border: 1px solid var(--p4-border);
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
}

.phase4-place-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 50px;
    margin-top: 16px;
    border: 1px solid var(--p4-primary);
    border-radius: 13px;
    background: var(--p4-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(4, 106, 88, .16);
}

.phase4-place-order-btn:hover:not(:disabled) {
    border-color: var(--p4-primary-dark);
    background: var(--p4-primary-dark);
}

.phase4-place-order-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.phase4-checkout-security {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    margin: 9px 6px 0;
    color: var(--p4-muted);
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
}

.phase4-checkout-empty {
    display: grid;
    justify-items: center;
    padding: 34px 20px;
    text-align: center;
}

.phase4-checkout-empty > span {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--p4-primary-soft);
    color: var(--p4-primary);
    font-size: 31px;
}

.phase4-checkout-empty h2,
.phase4-checkout-empty h3 {
    margin: 0 0 6px;
}

.phase4-checkout-empty p {
    max-width: 430px;
    margin: 0 0 17px;
    color: var(--p4-muted);
}

.phase4-checkout-empty a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 9px 18px;
    border-radius: 12px;
    background: var(--p4-primary);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
}

.phase4-checkout-empty-page {
    min-height: 360px;
    border: 1px solid var(--p4-border);
    border-radius: var(--p4-radius);
    background: #fff;
    box-shadow: var(--p4-shadow);
}

/* ============================================================
   Track order
   ============================================================ */
.phase4-track-page {
    padding: clamp(44px, 5vw, 76px) 0 clamp(64px, 6vw, 96px);
    background: linear-gradient(180deg, #f7faf9, #fff 38%);
}

.phase4-track-intro {
    max-width: 730px;
    margin: 0 auto 24px;
    text-align: center;
}

.phase4-track-intro h1 {
    margin: 0 0 9px;
    font-size: clamp(31px, 3.4vw, 48px);
    line-height: 1.08;
}

.phase4-track-intro p {
    margin: 0;
    color: var(--p4-text);
}

.phase4-track-search-card {
    max-width: 840px;
    margin: 0 auto 36px;
    padding: clamp(18px, 2.5vw, 28px);
    border: 1px solid var(--p4-border);
    border-radius: var(--p4-radius);
    background: #fff;
    box-shadow: var(--p4-shadow);
}

.phase4-track-form > label {
    display: block;
    margin: 0 0 8px;
    color: var(--p4-heading);
    font-size: 13px;
    font-weight: 800;
}

.phase4-track-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.phase4-track-input-wrap {
    position: relative;
}

.phase4-track-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    color: var(--p4-primary);
    font-size: 21px;
    transform: translateY(-50%);
}

.phase4-track-input-wrap input {
    min-height: 52px;
    padding: 12px 13px 12px 44px;
}

.phase4-track-input-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 146px;
    min-height: 52px;
    padding: 10px 17px;
    border: 1px solid var(--p4-primary);
    border-radius: 12px;
    background: var(--p4-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.phase4-track-input-row button:disabled {
    opacity: .7;
}

.phase4-track-help {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 8px 0 0;
    color: var(--p4-muted);
    font-size: 11px;
}

.phase4-track-message {
    margin-top: 12px;
    padding: 11px 13px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 650;
}

.phase4-track-message.is-error {
    border: 1px solid #f2c9ce;
    background: var(--p4-danger-soft);
    color: #9d2f3b;
}

.phase4-track-message.is-success {
    border: 1px solid #bee5cd;
    background: var(--p4-success-soft);
    color: #126e43;
}

.phase4-tracking-result {
    overflow: hidden;
    border: 1px solid var(--p4-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--p4-shadow);
}

.phase4-tracking-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--p4-border);
    background: #fbfdfc;
}

.phase4-tracking-result-head h2 {
    margin: 0 0 4px;
    font-size: clamp(23px, 2.3vw, 31px);
}

.phase4-tracking-result-head p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: var(--p4-muted);
    font-size: 12px;
}

.phase4-current-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--p4-primary-soft);
    color: var(--p4-primary);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.phase4-current-status[data-status="cancelled"],
.phase4-current-status[data-status="returned"] {
    background: var(--p4-danger-soft);
    color: var(--p4-danger);
}

.phase4-track-exception {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 28px 0;
    padding: 13px 15px;
    border: 1px solid #f2c9ce;
    border-radius: 12px;
    background: var(--p4-danger-soft);
    color: #8f2d37;
}

.phase4-track-exception > i {
    font-size: 22px;
}

.phase4-track-exception > div {
    display: grid;
    gap: 1px;
}

.phase4-track-exception strong {
    font-size: 13px;
}

.phase4-track-exception span {
    font-size: 11px;
}

.phase4-status-timeline {
    padding: 30px 28px 26px;
    border-bottom: 1px solid var(--p4-border);
}

.phase4-status-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.phase4-status-steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 10%;
    right: 10%;
    height: 3px;
    border-radius: 999px;
    background: #e6ecea;
}

.phase4-status-step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 7px;
    text-align: center;
}

.phase4-status-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #e9efed;
    color: #84928e;
    font-size: 19px;
    box-shadow: 0 0 0 1px #dfe7e4;
}

.phase4-status-step.is-complete .phase4-status-icon,
.phase4-status-step.is-active .phase4-status-icon {
    background: var(--p4-primary);
    color: #fff;
    box-shadow: 0 0 0 1px var(--p4-primary);
}

.phase4-status-step.is-active .phase4-status-icon {
    box-shadow: 0 0 0 1px var(--p4-primary), 0 0 0 6px rgba(4, 106, 88, .10);
}

.phase4-status-step > div {
    display: grid;
    gap: 1px;
}

.phase4-status-step strong {
    color: var(--p4-heading);
    font-size: 12px;
}

.phase4-status-step small {
    min-height: 16px;
    color: var(--p4-muted);
    font-size: 9px;
}

.phase4-track-details {
    padding: 28px;
}

.phase4-track-section {
    height: 100%;
    padding: 20px;
    border: 1px solid var(--p4-border);
    border-radius: 16px;
    background: #fff;
}

.phase4-track-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 13px;
}

.phase4-track-section h3 {
    margin: 0;
    font-size: 19px;
}

.phase4-track-count {
    color: var(--p4-muted);
    font-size: 11px;
    font-weight: 750;
}

.phase4-track-product-list {
    display: grid;
}

.phase4-track-product {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--p4-border);
}

.phase4-track-product:last-child {
    border-bottom: 0;
}

.phase4-track-product img {
    width: 62px;
    height: 62px;
    border: 1px solid var(--p4-border);
    border-radius: 11px;
    background: var(--p4-soft);
    object-fit: cover;
}

.phase4-track-product-copy {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.phase4-track-product-copy > strong {
    color: var(--p4-heading);
    font-size: 13px;
    line-height: 1.35;
}

.phase4-track-product-copy > span {
    color: var(--p4-muted);
    font-size: 10px;
    line-height: 1.5;
}

.phase4-track-product-copy b {
    color: #bcc7c4;
}

.phase4-track-product-price {
    color: var(--p4-heading);
    font-size: 12px;
    white-space: nowrap;
}

.phase4-track-no-products {
    padding: 24px 0;
    color: var(--p4-muted);
    font-size: 13px;
    text-align: center;
}

.phase4-track-summary {
    background: var(--p4-soft);
}

.phase4-track-summary > h3 {
    margin-bottom: 17px;
}

.phase4-track-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 0;
    color: var(--p4-text);
    font-size: 13px;
}

.phase4-track-summary-row strong {
    color: var(--p4-heading);
}

.phase4-track-discount,
.phase4-track-discount strong {
    color: var(--p4-success);
}

.phase4-track-grand {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px dashed #ccd8d5;
    color: var(--p4-heading);
    font-size: 16px;
    font-weight: 800;
}

.phase4-track-grand strong {
    color: var(--p4-primary);
    font-size: 18px;
}

.phase4-track-payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid var(--p4-border);
    border-radius: 12px;
    background: #fff;
}

.phase4-track-payment-method > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--p4-primary-soft);
    color: var(--p4-primary);
    font-size: 19px;
}

.phase4-track-payment-method > div {
    display: grid;
    gap: 1px;
}

.phase4-track-payment-method small {
    color: var(--p4-muted);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.phase4-track-payment-method strong {
    color: var(--p4-heading);
    font-size: 12px;
    text-transform: capitalize;
}

/* ============================================================
   Login / register / forgot password modals
   ============================================================ */
.phase4-auth-modal .modal-dialog {
    width: min(100% - 24px, 500px);
    margin-left: auto;
    margin-right: auto;
}

.phase4-auth-modal .modal-dialog.modal-lg {
    max-width: 760px;
}

.phase4-auth-modal .modal-content {
    position: relative;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    color: var(--p4-text);
    box-shadow: 0 28px 80px rgba(16, 42, 38, .24);
}

.phase4-auth-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 9px;
    border-radius: 50%;
    background-color: #f3f6f5;
    opacity: .75;
}

.phase4-auth-header {
    max-width: 520px;
    margin: 0 auto 23px;
    text-align: center;
}

.phase4-auth-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 15px;
    background: var(--p4-primary-soft);
    color: var(--p4-primary);
    font-size: 25px;
}

.phase4-auth-header h2 {
    margin: 0 0 6px;
    color: var(--p4-heading) !important;
    font-size: clamp(24px, 3vw, 31px);
}

.phase4-auth-header p {
    margin: 0 !important;
    color: var(--p4-muted) !important;
    font-size: 13px !important;
}

.phase4-auth-form {
    display: grid;
    gap: 15px;
}

.phase4-auth-form .phase4-field > label,
.phase4-label-row label {
    display: block;
    margin: 0 0 6px;
    color: var(--p4-heading);
    font-size: 12px;
    font-weight: 800;
}

.phase4-input-wrap {
    position: relative;
}

.phase4-input-wrap > i:first-child {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 2;
    color: var(--p4-primary);
    font-size: 19px;
    transform: translateY(-50%);
}

.phase4-auth-form .phase4-input-wrap .form-control {
    min-height: 48px !important;
    padding: 10px 42px 10px 40px !important;
    border: 1px solid #dce5e2 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--p4-heading) !important;
}

.phase4-auth-form .phase4-input-wrap .form-control::placeholder {
    color: #98a6a2;
}

.phase4-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.phase4-label-row a,
.phase4-auth-switch a,
.phase4-terms-row a {
    color: var(--p4-primary);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.phase4-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--p4-muted);
    font-size: 18px;
    transform: translateY(-50%);
}

.phase4-field-error,
.phase4-auth-form .phase4-field-error,
.phase4-auth-form .text-danger {
    display: block;
    margin: 5px 0 0;
    padding: 0;
    color: var(--p4-danger) !important;
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
}

.phase4-field-error ul {
    margin: 0;
    padding-left: 16px;
}

.phase4-check-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: -1px 0 0;
    color: var(--p4-text);
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
}

.phase4-check-row input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: var(--p4-primary);
}

.phase4-auth-primary,
.phase4-auth-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.phase4-auth-primary {
    border: 1px solid var(--p4-primary);
    background: var(--p4-primary);
    color: #fff;
}

.phase4-auth-primary:hover {
    border-color: var(--p4-primary-dark);
    background: var(--p4-primary-dark);
    color: #fff;
}

.phase4-auth-divider {
    position: relative;
    margin: 17px 0;
    text-align: center;
}

.phase4-auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--p4-border);
}

.phase4-auth-divider span {
    position: relative;
    padding: 0 9px;
    background: #fff;
    color: var(--p4-muted);
    font-size: 11px;
}

.phase4-auth-google {
    border: 1px solid var(--p4-border);
    background: #fff;
    color: var(--p4-heading);
}

.phase4-auth-google:hover {
    border-color: #ccd9d5;
    background: var(--p4-soft);
    color: var(--p4-heading);
}

.phase4-auth-switch {
    margin: 17px 0 0 !important;
    color: var(--p4-muted) !important;
    font-size: 12px !important;
    text-align: center;
}

.phase4-auth-alert {
    margin-bottom: 14px;
    border-radius: 11px;
    font-size: 12px;
}

body:has(.phase4-auth-modal.show) .modal-backdrop.show {
    background: #102a26;
    opacity: .58;
}

/* ============================================================
   Success + online payment verification states
   ============================================================ */
.phase4-success-page,
.phase4-payment-verify-page {
    display: grid;
    align-items: center;
    min-height: 62vh;
    padding: clamp(50px, 6vw, 90px) 0;
    background: linear-gradient(180deg, #f7faf9, #fff);
}

.phase4-success-card,
.phase4-payment-verify-card {
    max-width: 650px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--p4-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--p4-shadow);
    text-align: center;
}

.phase4-success-icon,
.phase4-verify-icon {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--p4-success-soft);
    color: var(--p4-success);
    font-size: 43px;
    box-shadow: 0 0 0 9px rgba(25, 135, 84, .06);
}

.phase4-success-card h1,
.phase4-verify-state h1 {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.4vw, 42px);
}

.phase4-success-card > p,
.phase4-verify-state > p {
    max-width: 520px;
    margin: 0 auto 23px;
    color: var(--p4-text);
    font-size: 14px;
    line-height: 1.65;
}

.phase4-success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.phase4-success-primary,
.phase4-success-secondary,
.phase4-verify-retry,
.phase4-verify-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.phase4-success-primary,
.phase4-verify-retry {
    border: 1px solid var(--p4-primary);
    background: var(--p4-primary);
    color: #fff;
}

.phase4-success-secondary,
.phase4-verify-back {
    border: 1px solid var(--p4-border);
    background: #fff;
    color: var(--p4-heading);
}

.phase4-success-note,
.phase4-verify-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    max-width: 520px;
    margin: 22px auto 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--p4-primary-soft);
    color: var(--p4-text);
    font-size: 11px;
    line-height: 1.5;
}

.phase4-verify-spinner {
    display: block;
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    border: 5px solid #dcebe7;
    border-top-color: var(--p4-primary);
    border-radius: 50%;
    animation: phase4Spin .9s linear infinite;
}

@keyframes phase4Spin {
    to { transform: rotate(360deg); }
}

.phase4-verify-state.is-failed .phase4-verify-icon {
    background: var(--p4-danger-soft);
    color: var(--p4-danger);
    box-shadow: 0 0 0 9px rgba(200, 63, 77, .06);
}

.phase4-verify-state.is-failed .phase4-eyebrow {
    color: var(--p4-danger);
}

.phase4-verify-retry {
    margin-right: 7px;
}

.phase4-verify-retry:disabled {
    border-color: #aab6b2;
    background: #aab6b2;
    cursor: not-allowed;
}

/* ============================================================
   Responsive rules
   ============================================================ */
@media (max-width: 1199.98px) {
    .phase4-order-summary-card { position: static; }
    .phase4-checkout-heading { align-items: flex-start; }
}

@media (max-width: 991.98px) {
    .phase4-checkout-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .phase4-track-details { padding: 22px; }
    .phase4-track-summary { height: auto; }
}

@media (max-width: 767.98px) {
    .phase4-checkout-page,
    .phase4-track-page {
        padding-top: 34px;
        padding-bottom: 60px;
    }

    .phase4-checkout-heading { margin-bottom: 21px; }

    .phase4-checkout-steps {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .phase4-checkout-steps::-webkit-scrollbar { display: none; }
    .phase4-checkout-steps span { flex: 0 0 auto; }

    .phase4-checkout-card-head,
    .phase4-order-summary-head {
        padding: 18px;
    }

    .phase4-checkout-card-body,
    .phase4-checkout-summary-inner {
        padding: 18px;
    }

    .phase4-track-search-card { margin-bottom: 24px; }

    .phase4-tracking-result-head {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px;
    }

    .phase4-track-exception { margin: 16px 20px 0; }

    .phase4-status-timeline { padding: 22px 20px; }

    .phase4-status-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .phase4-status-steps::before {
        top: 20px;
        bottom: 20px;
        left: 22px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .phase4-status-step {
        grid-template-columns: 46px minmax(0, 1fr);
        justify-items: stretch;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .phase4-status-step > div { gap: 2px; }
    .phase4-status-step strong { font-size: 13px; }
    .phase4-status-step small { min-height: 0; font-size: 10px; }

    .phase4-track-details { padding: 20px; }

    .phase4-auth-modal .modal-dialog.modal-lg {
        width: min(100% - 24px, 560px);
    }
}

@media (max-width: 575.98px) {
    .phase4-checkout-heading h1,
    .phase4-track-intro h1 { font-size: 30px; }

    .phase4-checkout-card-head {
        gap: 11px;
    }

    .phase4-card-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 19px;
    }

    .phase4-checkout-card-head h2,
    .phase4-order-summary-head h2 { font-size: 19px; }

    .phase4-summary-product {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .phase4-summary-product-image {
        width: 50px;
        height: 50px;
    }

    .phase4-summary-product-price {
        grid-column: 2;
        margin-top: -3px;
        color: var(--p4-primary);
    }

    .phase4-payment-option {
        grid-template-columns: auto 35px minmax(0, 1fr);
    }

    .phase4-payment-check { display: none; }

    .phase4-track-input-row {
        grid-template-columns: 1fr;
    }

    .phase4-track-input-row button {
        width: 100%;
    }

    .phase4-track-product {
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: start;
    }

    .phase4-track-product img {
        width: 56px;
        height: 56px;
    }

    .phase4-track-product-price {
        grid-column: 2;
        color: var(--p4-primary);
    }

    .phase4-track-details,
    .phase4-status-timeline { padding-left: 15px; padding-right: 15px; }

    .phase4-track-exception { margin-left: 15px; margin-right: 15px; }

    .phase4-auth-modal .modal-content {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .phase4-auth-header { margin-bottom: 19px; }
    .phase4-auth-icon { width: 48px; height: 48px; font-size: 23px; }
    .phase4-auth-header h2 { font-size: 25px; }

    .phase4-success-card,
    .phase4-payment-verify-card {
        padding: 28px 18px;
        border-radius: 19px;
    }

    .phase4-success-actions {
        display: grid;
        width: 100%;
    }

    .phase4-success-primary,
    .phase4-success-secondary,
    .phase4-verify-retry,
    .phase4-verify-back {
        width: 100%;
        margin: 0;
    }

    .phase4-verify-retry { margin-bottom: 8px; }
}

@media (max-width: 359.98px) {
    .phase4-checkout-card-head,
    .phase4-order-summary-head,
    .phase4-checkout-card-body,
    .phase4-checkout-summary-inner,
    .phase4-track-search-card,
    .phase4-track-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .phase4-summary-promo-row { display: grid; }
    .phase4-summary-promo button { width: 100%; }

    .phase4-payment-option {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .phase4-payment-option-icon { display: none; }

    .phase4-checkout-steps span { padding-left: 9px; padding-right: 9px; }
}

@media (prefers-reduced-motion: reduce) {
    .phase4-verify-spinner { animation-duration: 1.8s; }
    .phase4-checkout-page *,
    .phase4-track-page *,
    .phase4-auth-modal *,
    .phase4-success-page *,
    .phase4-payment-verify-page * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}


/* ===== Phase 6 bundled source: phase5-content-final-audit.css ===== */
/* ============================================================
   Care Ur Baby — Storefront Phase 5
   Content Pages + Final Responsive Audit + Header Correction
   Scope: Theme 2 frontend presentation only.
   ============================================================ */

/* ============================================================
   Header correction
   Sticky scope intentionally ends before the search row.
   ============================================================ */
.phase1-storefront .storefront-sticky-shell {
    position: sticky;
    top: 0;
    z-index: 1080;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 42, 38, .08);
}

.phase1-storefront .storefront-sticky-shell .topbar-six-area,
.phase1-storefront .storefront-sticky-shell .header-six-area {
    position: relative;
    top: auto !important;
}

.phase1-storefront .storefront-sticky-shell .header-six-area {
    overflow: visible;
    box-shadow: none;
}

.phase1-storefront .storefront-main-header .main-header__menu-box {
    overflow: visible;
}

.phase1-storefront .storefront-main-header .navbar,
.phase1-storefront .storefront-main-header .navbar__options,
.phase1-storefront .storefront-main-header .header-six-navbar-space,
.phase1-storefront .storefront-main-header .navbar__menu,
.phase1-storefront .storefront-main-header .navbar__list {
    overflow: visible;
}

/* Main navigation: predictable, readable button states. */
.phase1-storefront .storefront-main-header .p5-nav-item > a {
    min-height: 42px;
    padding: 0 16px !important;
    border: 1px solid #dfe9e6;
    border-radius: 12px;
    background: #fff;
    color: var(--p1-heading);
    box-shadow: 0 3px 10px rgba(16, 42, 38, .035);
}

.phase1-storefront .storefront-main-header .p5-nav-item > a:hover,
.phase1-storefront .storefront-main-header .p5-nav-item > a:focus-visible {
    border-color: rgba(4, 106, 88, .36);
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    box-shadow: 0 6px 16px rgba(4, 106, 88, .10);
}

.phase1-storefront .storefront-main-header .p5-nav-item.is-active > a {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
    box-shadow: 0 7px 16px rgba(4, 106, 88, .18);
}

.phase1-storefront .storefront-main-header .p5-nav-item.is-active > a:hover,
.phase1-storefront .storefront-main-header .p5-nav-item.is-active > a:focus-visible {
    border-color: var(--p1-primary-dark);
    background: var(--p1-primary-dark);
    color: #fff;
}

/* Desktop category dropdown: explicit click-controlled panel. */
.phase1-storefront .p5-category-nav {
    position: relative;
}

.phase1-storefront .p5-category-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--p1-primary);
    border-radius: 12px;
    background: var(--p1-primary);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 7px 16px rgba(4, 106, 88, .17);
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.phase1-storefront .p5-category-toggle:hover,
.phase1-storefront .p5-category-toggle:focus-visible,
.phase1-storefront .p5-category-toggle[aria-expanded="true"] {
    border-color: var(--p1-primary-dark);
    background: var(--p1-primary-dark);
    color: #fff;
    box-shadow: 0 9px 20px rgba(4, 106, 88, .22);
}

.phase1-storefront .p5-category-toggle:hover {
    transform: translateY(-1px);
}

.phase1-storefront .p5-category-chevron {
    font-size: 18px;
    transition: transform .18s ease;
}

.phase1-storefront .p5-category-toggle[aria-expanded="true"] .p5-category-chevron {
    transform: rotate(180deg);
}

.phase1-storefront .p5-category-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1105;
    width: min(390px, calc(100vw - 32px));
    max-height: min(66vh, 560px);
    overflow: auto;
    padding: 0;
    border: 1px solid #dfe9e6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(16, 42, 38, .18);
    overscroll-behavior: contain;
}

.phase1-storefront .p5-category-menu[hidden] {
    display: none !important;
}

.phase1-storefront .p5-category-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 36px;
    width: 14px;
    height: 14px;
    border-top: 1px solid #dfe9e6;
    border-left: 1px solid #dfe9e6;
    background: #fff;
    transform: rotate(45deg);
}

.phase1-storefront .p5-category-menu__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid #e7eeec;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
}

.phase1-storefront .p5-category-menu__head strong {
    display: block;
    color: var(--p1-heading);
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    line-height: 1.2;
}

.phase1-storefront .p5-category-menu__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: var(--p1-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.phase1-storefront .p5-category-view-all {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 9px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 12px;
    font-weight: 800;
}

.phase1-storefront .p5-category-view-all:hover {
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .p5-category-menu__body {
    padding: 8px;
}

.phase1-storefront .p5-category-group {
    padding: 4px;
    border-bottom: 1px solid #edf2f0;
}

.phase1-storefront .p5-category-group:last-child {
    border-bottom: 0;
}

.phase1-storefront .p5-category-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--p1-heading);
    font-size: 14px;
    font-weight: 800;
}

.phase1-storefront .p5-category-parent i {
    flex: 0 0 auto;
    color: var(--p1-muted);
    font-size: 19px;
    transition: transform .18s ease, color .18s ease;
}

.phase1-storefront .p5-category-parent:hover,
.phase1-storefront .p5-category-parent:focus-visible {
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
}

.phase1-storefront .p5-category-parent:hover i,
.phase1-storefront .p5-category-parent:focus-visible i {
    color: var(--p1-primary);
    transform: translateX(2px);
}

.phase1-storefront .p5-category-children {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 10px 10px;
}

.phase1-storefront .p5-category-children a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 9px;
    border: 1px solid #e3ebe8;
    border-radius: 999px;
    background: #f8faf9;
    color: #52625f;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 700;
}

.phase1-storefront .p5-category-children a:hover,
.phase1-storefront .p5-category-children a:focus-visible {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

/* Header action buttons now use an obvious hover state. */
.phase1-storefront .storefront-main-header .header-cart-btn,
.phase1-storefront .storefront-main-header .header-wishlist-btn,
.phase1-storefront .storefront-main-header .header-category-btn {
    border-width: 1px !important;
    box-shadow: 0 3px 10px rgba(16, 42, 38, .035) !important;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.phase1-storefront .storefront-main-header .header-cart-btn:hover,
.phase1-storefront .storefront-main-header .header-category-btn:hover {
    border-color: var(--p1-primary) !important;
    background: var(--p1-primary) !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(4, 106, 88, .17) !important;
    transform: translateY(-1px);
}

.phase1-storefront .storefront-main-header .header-wishlist-btn:hover {
    border-color: #b32448 !important;
    background: #b32448 !important;
    color: #fff !important;
    box-shadow: 0 7px 16px rgba(179, 36, 72, .16) !important;
    transform: translateY(-1px);
}

.phase1-storefront .storefront-main-header .vl-offcanvas-toggle {
    border: 1px solid #dfe9e6;
    background: #fff;
    box-shadow: 0 3px 10px rgba(16, 42, 38, .04);
}

.phase1-storefront .storefront-main-header .vl-offcanvas-toggle:hover {
    border-color: var(--p1-primary);
    background: var(--p1-primary-soft);
}

/* Search stays directly after the sticky header and scrolls normally. */
.phase1-storefront .p5-search-row {
    position: relative;
    z-index: 1020;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--p1-border);
    box-shadow: 0 5px 16px rgba(16, 42, 38, .035);
}

.phase1-storefront .p5-search-row .storefront-search-box {
    background: #fff;
}

.phase1-storefront .p5-search-row .storefront-search-submit span {
    display: inline;
}

/* Mobile category menu */
.phase1-storefront .p5-mobile-category-menu {
    width: min(92vw, 360px) !important;
    max-height: min(70vh, 520px);
    overflow: auto;
    padding: 8px !important;
    border: 1px solid #dfe9e6 !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 42px rgba(16, 42, 38, .16) !important;
}

.phase1-storefront .p5-mobile-category-parent-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: stretch;
    gap: 4px;
}

.phase1-storefront .p5-mobile-category-parent-link {
    display: flex !important;
    align-items: center;
    border-bottom: 0 !important;
}

.phase1-storefront .p5-mobile-category-expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: #f6f9f8;
    color: var(--p1-heading);
}

.phase1-storefront .p5-mobile-category-expand:hover,
.phase1-storefront .p5-mobile-category-expand.active {
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
}

.phase1-storefront .mobile-category-submenu {
    margin-left: 8px !important;
    padding: 4px 8px 7px 12px;
    border-left: 2px solid #dcece7;
}

.phase1-storefront .mobile-category-submenu a {
    padding: 7px 8px !important;
    border-radius: 7px;
    color: var(--p1-text);
    font-size: 12px;
    font-weight: 700;
}

.phase1-storefront .mobile-category-submenu a:hover {
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
}

/* ============================================================
   Common banner + shared content page shell
   ============================================================ */
.phase1-storefront .common-banner {
    position: relative;
    min-height: clamp(190px, 24vw, 340px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(48px, 7vw, 90px) 0;
    isolation: isolate;
}

.phase1-storefront .common-banner .container,
.phase1-storefront .common-banner .row,
.phase1-storefront .common-banner__content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.phase1-storefront .common-banner .banner-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.phase1-storefront .common-banner .banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 35, 31, .76), rgba(4, 35, 31, .54));
}

.phase1-storefront .common-banner .banner-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.phase1-storefront .common-banner .sub-title-main,
.phase1-storefront .common-banner .title-animation {
    color: #fff;
}

.phase1-storefront .common-banner .sub-title-main {
    margin-bottom: 8px;
    opacity: .9;
}

.phase1-storefront .common-banner .title-animation {
    font-size: clamp(32px, 4.6vw, 58px);
    text-shadow: 0 3px 18px rgba(0, 0, 0, .18);
}

.phase1-storefront .p5-content-section {
    padding: var(--p1-section-space) 0;
    background: #fff;
}

.phase1-storefront .p5-content-section--soft {
    background: var(--p1-surface-soft);
}

.phase1-storefront .p5-section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.phase1-storefront .p5-section-heading p {
    max-width: 650px;
    margin: 12px auto 0;
}

.phase1-storefront .p5-card {
    border: 1px solid var(--p1-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--p1-shadow-sm);
}

/* ============================================================
   About
   ============================================================ */
.phase1-storefront .p5-about-grid {
    align-items: center;
}

.phase1-storefront .p5-about-media {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 22px;
    background: #eef4f2;
    box-shadow: var(--p1-shadow-md);
}

.phase1-storefront .p5-about-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.phase1-storefront .p5-about-content {
    padding: clamp(8px, 2vw, 24px);
}

.phase1-storefront .p5-about-content .about-desc {
    margin-top: 20px;
    color: var(--p1-text);
}

.phase1-storefront .p5-about-content .about-desc > *:last-child {
    margin-bottom: 0;
}

.phase1-storefront .p5-about-content .about-desc img,
.phase1-storefront .p5-policy-content img,
.phase1-storefront .p5-blog-body img {
    height: auto !important;
    border-radius: 12px;
}

.phase1-storefront .p5-about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.phase1-storefront .p5-about-highlight {
    padding: 16px;
    border: 1px solid #e3ece9;
    border-radius: 14px;
    background: #f8fbfa;
}

.phase1-storefront .p5-about-highlight i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 18px;
}

.phase1-storefront .p5-about-highlight strong {
    display: block;
    color: var(--p1-heading);
    font-size: 13px;
    line-height: 1.25;
}

/* ============================================================
   Contact
   ============================================================ */
.phase1-storefront .p5-contact-grid {
    align-items: stretch;
}

.phase1-storefront .p5-contact-info,
.phase1-storefront .p5-contact-form {
    height: 100%;
    padding: clamp(22px, 3vw, 34px);
}

.phase1-storefront .p5-contact-info {
    position: relative;
    overflow: hidden;
    border-color: rgba(4, 106, 88, .18);
    background: linear-gradient(145deg, #0b4f44, #063c34);
    color: #fff;
}

.phase1-storefront .p5-contact-info::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.phase1-storefront .p5-contact-info h3,
.phase1-storefront .p5-contact-info p,
.phase1-storefront .p5-contact-info a {
    color: #fff;
}

.phase1-storefront .p5-contact-info > p {
    color: rgba(255, 255, 255, .78);
}

.phase1-storefront .p5-contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.phase1-storefront .p5-contact-method {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
}

.phase1-storefront .p5-contact-method__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 18px;
}

.phase1-storefront .p5-contact-method small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.phase1-storefront .p5-contact-method p,
.phase1-storefront .p5-contact-method a {
    display: block;
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 700;
}

.phase1-storefront .p5-contact-method a:hover {
    color: #dff8f1;
    text-decoration: underline;
}

.phase1-storefront .p5-contact-form h3 {
    margin-bottom: 6px;
}

.phase1-storefront .p5-contact-form .p5-form-intro {
    margin-bottom: 22px;
}

.phase1-storefront .p5-contact-form .form-label {
    margin-bottom: 6px;
    color: var(--p1-heading);
    font-size: 13px;
    font-weight: 750;
}

.phase1-storefront .p5-contact-form .form-control {
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #dce6e3;
    border-radius: 11px;
    background: #fbfcfc;
    color: var(--p1-heading);
    font-size: 14px;
}

.phase1-storefront .p5-contact-form textarea.form-control {
    min-height: 128px;
    resize: vertical;
}

.phase1-storefront .p5-contact-form .form-control:focus {
    border-color: rgba(4, 106, 88, .6);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(4, 106, 88, .08);
}

.phase1-storefront .p5-contact-map {
    overflow: hidden;
    margin-top: 26px;
    border: 1px solid var(--p1-border);
    border-radius: 20px;
    background: #eef4f2;
    box-shadow: var(--p1-shadow-sm);
}

.phase1-storefront .p5-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 340px;
    border: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.phase1-storefront .p5-faq-layout {
    align-items: start;
}

.phase1-storefront .p5-faq-intro {
    position: sticky;
    top: 130px;
    padding: 28px;
}

.phase1-storefront .p5-faq-intro .create-btn-primary {
    margin-top: 10px;
    padding: 0 18px;
}

.phase1-storefront .p5-faq-list .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--p1-border) !important;
    border-radius: 14px !important;
    background: #fff;
    box-shadow: 0 5px 16px rgba(16, 42, 38, .045);
}

.phase1-storefront .p5-faq-list .accordion-button {
    min-height: 58px;
    padding: 16px 18px;
    background: #fff;
    color: var(--p1-heading);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    box-shadow: none !important;
}

.phase1-storefront .p5-faq-list .accordion-button:not(.collapsed) {
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
}

.phase1-storefront .p5-faq-list .accordion-body {
    padding: 0 18px 18px;
    color: var(--p1-text);
}

.phase1-storefront .p5-faq-list .accordion-body p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   Blog list
   ============================================================ */
.phase1-storefront .p5-blog-grid {
    row-gap: 24px;
}

.phase1-storefront .p5-blog-card {
    height: 100%;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.phase1-storefront .p5-blog-card:hover {
    border-color: #d7e6e1;
    transform: translateY(-3px);
    box-shadow: var(--p1-shadow-md);
}

.phase1-storefront .p5-blog-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #eef4f2;
}

.phase1-storefront .p5-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.phase1-storefront .p5-blog-card:hover .p5-blog-card__media img {
    transform: scale(1.025);
}

.phase1-storefront .p5-blog-date {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .94);
    color: var(--p1-heading);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(16, 42, 38, .10);
}

.phase1-storefront .p5-blog-card__body {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 20px;
}

.phase1-storefront .p5-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 9px;
    color: var(--p1-muted);
    font-size: 12px;
    font-weight: 700;
}

.phase1-storefront .p5-blog-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 10px;
    color: var(--p1-heading);
    font-size: 20px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.phase1-storefront .p5-blog-card__title a {
    color: inherit;
}

.phase1-storefront .p5-blog-card__title a:hover {
    color: var(--p1-primary);
}

.phase1-storefront .p5-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    color: var(--p1-primary);
    font-size: 13px;
    font-weight: 800;
}

.phase1-storefront .p5-blog-empty {
    padding: 42px 24px;
    text-align: center;
}

/* ============================================================
   Blog details
   ============================================================ */
.phase1-storefront .p5-blog-detail-layout {
    align-items: start;
}

.phase1-storefront .p5-blog-article {
    overflow: hidden;
}

.phase1-storefront .p5-blog-hero {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eef4f2;
}

.phase1-storefront .p5-blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phase1-storefront .p5-blog-article__inner {
    padding: clamp(22px, 4vw, 40px);
}

.phase1-storefront .p5-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 12px;
    color: var(--p1-muted);
    font-size: 13px;
    font-weight: 700;
}

.phase1-storefront .p5-blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.phase1-storefront .p5-blog-article h1 {
    margin: 0 0 22px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
}

.phase1-storefront .p5-blog-body {
    overflow-wrap: anywhere;
}

.phase1-storefront .p5-blog-body h2,
.phase1-storefront .p5-blog-body h3,
.phase1-storefront .p5-blog-body h4 {
    margin-top: 1.55em;
    margin-bottom: .65em;
}

.phase1-storefront .p5-blog-body p,
.phase1-storefront .p5-blog-body li {
    line-height: 1.82;
}

.phase1-storefront .p5-blog-body table,
.phase1-storefront .p5-policy-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.phase1-storefront .p5-blog-body iframe,
.phase1-storefront .p5-blog-body video {
    max-width: 100%;
}

.phase1-storefront .p5-blog-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--p1-border);
}

.phase1-storefront .p5-blog-category {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--p1-primary-soft);
    color: var(--p1-primary);
    font-size: 12px;
    font-weight: 800;
}

.phase1-storefront .p5-share-links {
    display: flex;
    gap: 8px;
}

.phase1-storefront .p5-share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--p1-border);
    border-radius: 10px;
    background: #fff;
    color: var(--p1-heading);
}

.phase1-storefront .p5-share-links a:hover {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront .p5-blog-sidebar {
    position: sticky;
    top: 130px;
    display: grid;
    gap: 18px;
}

.phase1-storefront .p5-sidebar-card {
    padding: 20px;
}

.phase1-storefront .p5-sidebar-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.phase1-storefront .p5-recent-post {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #edf1f0;
}

.phase1-storefront .p5-recent-post:last-child {
    border-bottom: 0;
}

.phase1-storefront .p5-recent-post img {
    width: 78px;
    height: 64px;
    border-radius: 9px;
    object-fit: cover;
}

.phase1-storefront .p5-recent-post small {
    display: block;
    margin-bottom: 3px;
    color: var(--p1-muted);
    font-size: 10px;
    font-weight: 700;
}

.phase1-storefront .p5-recent-post a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--p1-heading);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.phase1-storefront .p5-recent-post a:hover {
    color: var(--p1-primary);
}

/* ============================================================
   Policy pages
   ============================================================ */
.phase1-storefront .p5-policy-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.phase1-storefront .p5-policy-card {
    padding: clamp(24px, 4vw, 46px);
}

.phase1-storefront .p5-policy-heading {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--p1-border);
    text-align: center;
}

.phase1-storefront .p5-policy-heading h1,
.phase1-storefront .p5-policy-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 42px);
}

.phase1-storefront .p5-policy-content {
    position: static !important;
    max-width: 820px;
    margin: 0 auto;
    color: var(--p1-text);
    overflow-wrap: anywhere;
}

.phase1-storefront .p5-policy-content * {
    max-width: 100%;
    white-space: normal !important;
}

.phase1-storefront .p5-policy-content h1,
.phase1-storefront .p5-policy-content h2,
.phase1-storefront .p5-policy-content h3,
.phase1-storefront .p5-policy-content h4,
.phase1-storefront .p5-policy-content h5,
.phase1-storefront .p5-policy-content h6 {
    position: static !important;
    margin-top: 1.5em;
    margin-bottom: .65em;
    line-height: 1.28 !important;
}

.phase1-storefront .p5-policy-content p,
.phase1-storefront .p5-policy-content li {
    position: static !important;
    line-height: 1.8 !important;
}

.phase1-storefront .p5-policy-content ul,
.phase1-storefront .p5-policy-content ol {
    padding-left: 1.35rem;
}

.phase1-storefront .p5-policy-content a {
    color: var(--p1-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   Pagination + final global audit
   ============================================================ */
.phase1-storefront .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.phase1-storefront .pagination .page-link {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--p1-border);
    border-radius: 9px !important;
    color: var(--p1-heading);
    font-size: 13px;
    font-weight: 750;
}

.phase1-storefront .pagination .page-link:hover,
.phase1-storefront .pagination .active > .page-link {
    border-color: var(--p1-primary);
    background: var(--p1-primary);
    color: #fff;
}

.phase1-storefront main,
.phase1-storefront section,
.phase1-storefront .page-wrapper {
    max-width: 100%;
}

.phase1-storefront .table-responsive,
.phase1-storefront .p5-horizontal-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.phase1-storefront input,
.phase1-storefront select,
.phase1-storefront textarea,
.phase1-storefront button,
.phase1-storefront a {
    overflow-wrap: anywhere;
}

/* ============================================================
   Responsive audit
   ============================================================ */
@media (max-width: 1199.98px) {
    .phase1-storefront .storefront-sticky-shell {
        z-index: 1085;
    }

    .phase1-storefront .p5-faq-intro,
    .phase1-storefront .p5-blog-sidebar {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .phase1-storefront .p5-about-media,
    .phase1-storefront .p5-about-media img {
        min-height: 340px;
    }

    .phase1-storefront .p5-about-content {
        padding: 18px 0 0;
    }

    .phase1-storefront .p5-about-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .phase1-storefront .p5-contact-map iframe {
        min-height: 300px;
    }

    .phase1-storefront .p5-blog-sidebar {
        margin-top: 22px;
    }
}

@media (max-width: 767.98px) {
    .phase1-storefront .storefront-sticky-shell .topbar-six-area {
        min-height: 32px;
    }

    .phase1-storefront .storefront-sticky-shell .header-six-area .main-header__menu-box {
        min-height: 58px;
    }

    .phase1-storefront .p5-search-row {
        padding-top: 8px;
        padding-bottom: 9px;
    }

    .phase1-storefront .p5-search-row .storefront-search-submit {
        width: 58px;
        min-width: 58px;
    }

    .phase1-storefront .p5-search-row .storefront-search-submit span {
        display: none;
    }

    .phase1-storefront .p5-search-row .storefront-search-submit::after {
        content: "Go";
        font-size: 12px;
        font-weight: 800;
    }

    .phase1-storefront .common-banner {
        min-height: 170px;
        padding: 42px 0;
    }

    .phase1-storefront .common-banner .title-animation {
        font-size: clamp(27px, 8vw, 36px);
    }

    .phase1-storefront .p5-content-section {
        padding: 46px 0;
    }

    .phase1-storefront .p5-section-heading {
        margin-bottom: 24px;
    }

    .phase1-storefront .p5-about-media,
    .phase1-storefront .p5-about-media img {
        min-height: 280px;
    }

    .phase1-storefront .p5-about-highlights {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .phase1-storefront .p5-about-highlight {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        padding: 12px;
    }

    .phase1-storefront .p5-about-highlight i {
        margin-bottom: 0;
    }

    .phase1-storefront .p5-contact-info,
    .phase1-storefront .p5-contact-form {
        padding: 22px 18px;
    }

    .phase1-storefront .p5-contact-map {
        border-radius: 14px;
    }

    .phase1-storefront .p5-contact-map iframe {
        min-height: 260px;
    }

    .phase1-storefront .p5-faq-intro {
        padding: 22px;
        margin-bottom: 20px;
    }

    .phase1-storefront .p5-faq-list .accordion-button {
        min-height: 54px;
        padding: 14px;
        font-size: 14px;
    }

    .phase1-storefront .p5-faq-list .accordion-body {
        padding: 0 14px 15px;
    }

    .phase1-storefront .p5-blog-card__body {
        min-height: 170px;
        padding: 17px;
    }

    .phase1-storefront .p5-blog-card__title {
        font-size: 18px;
    }

    .phase1-storefront .p5-blog-article__inner {
        padding: 20px 17px;
    }

    .phase1-storefront .p5-blog-detail-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .phase1-storefront .p5-policy-card {
        padding: 22px 17px;
        border-radius: 15px;
    }
}

@media (max-width: 430px) {
    .phase1-storefront .storefront-main-header .header-category-btn {
        max-width: 42px;
    }

    .phase1-storefront .p5-mobile-category-menu {
        width: min(94vw, 340px) !important;
    }

    .phase1-storefront .p5-contact-method {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 12px;
    }

    .phase1-storefront .p5-contact-method__icon {
        width: 38px;
        height: 38px;
    }

    .phase1-storefront .p5-recent-post {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .phase1-storefront .p5-recent-post img {
        width: 70px;
        height: 58px;
    }
}

@media (max-width: 339.98px) {
    .phase1-storefront .p5-search-row .storefront-search-box {
        padding-left: 34px;
    }

    .phase1-storefront .p5-search-row .storefront-search-icon {
        left: 11px;
    }

    .phase1-storefront .p5-search-row .storefront-search-submit {
        width: 52px;
        min-width: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phase1-storefront .p5-blog-card,
    .phase1-storefront .p5-blog-card img,
    .phase1-storefront .p5-category-toggle,
    .phase1-storefront .p5-category-chevron {
        transition: none !important;
    }
}


/* ===== Phase 6 bundled source: phase5-startech-header.css ===== */
/* ============================================================
   Care Ur Baby — Star Tech-inspired header refinement
   Scope: Theme 2 header/search/category navigation only.
   Loaded after Phase 1-5 styles so no other page layout changes.
   ============================================================ */

.phase1-storefront {
    --stx-dark: #081621;
    --stx-dark-2: #06111a;
    --stx-accent: var(--p1-primary, #04765f);
    --stx-accent-2: var(--p1-primary-dark, #035d4c);
    --stx-orange: #f58a25;
    --stx-line: #e5ebe9;
    --stx-text: #132723;
    --stx-muted: #6e7c79;
}

/* The entire Star Tech-style header — including search — stays frozen. */
.phase1-storefront .storefront-sticky-shell.stx-header {
    position: sticky !important;
    top: 0;
    z-index: 1200;
    width: 100%;
    background: var(--stx-dark);
    box-shadow: 0 5px 18px rgba(2, 35, 30, .14);
    isolation: isolate;
}

.phase1-storefront .stx-header-container {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding-left: clamp(16px, 2.2vw, 32px);
    padding-right: clamp(16px, 2.2vw, 32px);
}

/* ============================================================
   Main dark header: Logo | Search | Actions
   ============================================================ */
.phase1-storefront .stx-mainbar {
    position: relative;
    z-index: 3;
    background: var(--stx-dark);
    color: #fff;
}

.phase1-storefront .stx-mainbar__inner {
    display: grid;
    grid-template-columns: 132px minmax(280px, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 1.8vw, 28px);
    min-height: 78px;
    padding: 10px 0;
}

.phase1-storefront .stx-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.phase1-storefront .stx-logo__surface {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 54px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.phase1-storefront .stx-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

/* Search mirrors Star Tech's large central field. */
.phase1-storefront .stx-search {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

.phase1-storefront .stx-search__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: stretch;
    width: 100%;
    height: 46px;
    overflow: hidden;
    border: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .18);
    transition: box-shadow .18s ease, transform .18s ease;
}

.phase1-storefront .stx-search__box:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .16), 0 5px 18px rgba(0, 0, 0, .18);
}

.phase1-storefront .stx-search__box input[type="search"] {
    min-width: 0;
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    color: #1c2927;
    font-size: 14px;
    line-height: 46px;
    box-shadow: none !important;
}

.phase1-storefront .stx-search__box input[type="search"]::placeholder {
    color: #7a8784;
    opacity: 1;
}

.phase1-storefront .stx-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 46px;
    padding: 0;
    border: 0;
    border-left: 1px solid #edf1ef;
    border-radius: 0;
    background: #fff;
    color: #192725;
    font-size: 17px;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease;
}

.phase1-storefront .stx-search__submit:hover,
.phase1-storefront .stx-search__submit:focus-visible {
    background: var(--stx-accent);
    color: #fff;
}

.phase1-storefront .stx-search-results.storefront-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1250;
    width: 100%;
    max-height: min(62vh, 520px);
    overflow-y: auto;
    border: 1px solid #dfe6e3;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

/* Star Tech-style action blocks: icon + two lines, no bulky pill buttons. */
.phase1-storefront .stx-actions {
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 1vw, 16px);
    min-width: 0;
}

.phase1-storefront .stx-action {
    position: relative;
    display: inline-grid;
    grid-template-columns: 30px minmax(0, auto);
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 5px 3px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease;
}

.phase1-storefront .stx-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 38px;
    color: var(--stx-orange);
    font-size: 21px;
    transition: color .18s ease, transform .18s ease;
}

.phase1-storefront .stx-action__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.phase1-storefront .stx-action__copy strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.phase1-storefront .stx-action__copy small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .66);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.15;
}

.phase1-storefront .stx-action:hover,
.phase1-storefront .stx-action:focus-visible,
.phase1-storefront .stx-action.is-active {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.phase1-storefront .stx-action:hover .stx-action__icon,
.phase1-storefront .stx-action:focus-visible .stx-action__icon,
.phase1-storefront .stx-action.is-active .stx-action__icon {
    color: #fff;
    transform: translateY(-1px);
}

.phase1-storefront .stx-action:focus-visible,
.phase1-storefront .stx-search__submit:focus-visible,
.phase1-storefront .stx-mobile-action:focus-visible,
.phase1-storefront .stx-mobile-menu-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.phase1-storefront .stx-action__badge {
    position: absolute;
    top: 2px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border: 2px solid var(--stx-dark);
    border-radius: 999px;
    background: #ef4056;
    color: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
}

/* ============================================================
   White horizontal category/navigation bar
   ============================================================ */
.phase1-storefront .stx-categorybar {
    position: relative;
    z-index: 2;
    min-height: 42px;
    border-bottom: 1px solid #e5e9e7;
    background: #fff;
    box-shadow: 0 3px 8px rgba(9, 43, 37, .08);
}

.phase1-storefront .stx-categorybar__desktop {
    align-items: center;
    min-height: 42px;
}

.phase1-storefront .stx-category-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.phase1-storefront .stx-nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.phase1-storefront .stx-nav-item > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 clamp(10px, .9vw, 16px);
    color: #202c2a;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .16s ease, background-color .16s ease;
}

.phase1-storefront .stx-nav-item > a:hover,
.phase1-storefront .stx-nav-item > a:focus-visible,
.phase1-storefront .stx-nav-item.is-active > a,
.phase1-storefront .stx-nav-item.is-open > a {
    background: #f3f8f6;
    color: var(--stx-accent);
}

.phase1-storefront .stx-nav-item > a:focus-visible {
    outline: 2px solid var(--stx-accent);
    outline-offset: -2px;
}

.phase1-storefront .stx-cat-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-height: 42px;
    margin-left: -8px;
    padding: 0 5px 0 0;
    border: 0;
    background: transparent;
    color: #66726f;
    font-size: 16px;
    cursor: pointer;
}

.phase1-storefront .stx-cat-toggle:hover,
.phase1-storefront .stx-cat-toggle:focus-visible,
.phase1-storefront .stx-nav-item.is-open .stx-cat-toggle {
    color: var(--stx-accent);
}

.phase1-storefront .stx-nav-item.is-open .stx-cat-toggle i {
    transform: rotate(180deg);
}

.phase1-storefront .stx-cat-toggle i {
    transition: transform .16s ease;
}

/* Bounded dropdown starts below category bar, never across the search row. */
.phase1-storefront .stx-cat-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1240 !important;
    display: none !important;
    width: 260px !important;
    max-width: min(320px, calc(100vw - 28px));
    max-height: min(58vh, 430px);
    overflow-x: hidden !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: 7px 0 !important;
    border: 1px solid #e1e8e5 !important;
    border-top: 2px solid var(--stx-accent) !important;
    border-radius: 0 0 6px 6px !important;
    background: #fff !important;
    box-shadow: 0 15px 35px rgba(13, 43, 38, .16) !important;
    list-style: none !important;
    transform: none !important;
}

.phase1-storefront .stx-nav-item:hover > .stx-cat-dropdown,
.phase1-storefront .stx-nav-item:focus-within > .stx-cat-dropdown,
.phase1-storefront .stx-nav-item.is-open > .stx-cat-dropdown {
    display: block !important;
}

.phase1-storefront .stx-cat-dropdown li {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.phase1-storefront .stx-cat-dropdown li > a {
    display: flex !important;
    align-items: center;
    width: 100% !important;
    min-height: 38px;
    padding: 8px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #f0f3f2 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #34413f !important;
    font-size: 12.5px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    white-space: normal !important;
}

.phase1-storefront .stx-cat-dropdown li:last-child > a {
    border-bottom: 0 !important;
}

.phase1-storefront .stx-cat-dropdown li > a:hover,
.phase1-storefront .stx-cat-dropdown li > a:focus-visible {
    background: #f1f8f5 !important;
    color: var(--stx-accent) !important;
}

.phase1-storefront .stx-cat-dropdown__all > a {
    color: var(--stx-accent) !important;
    font-weight: 800 !important;
}

/* The duplicate hierarchy only feeds the existing off-canvas cloning script. */
.phase1-storefront .stx-mobile-menu-source {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

/* ============================================================
   Tablet + mobile: Star Tech-style compact icon row + search row
   ============================================================ */
.phase1-storefront .stx-mobile-menu-btn,
.phase1-storefront .stx-mobile-action {
    border: 0;
    background: transparent;
    color: #fff;
}

.phase1-storefront .stx-mobile-actions {
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.phase1-storefront .stx-mobile-action {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 4px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

.phase1-storefront .stx-mobile-action:hover,
.phase1-storefront .stx-mobile-action:focus-visible {
    background: rgba(255, 255, 255, .09);
    color: #fff;
}

.phase1-storefront .stx-mobile-badge {
    position: absolute;
    top: 2px;
    right: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border: 2px solid var(--stx-dark);
    border-radius: 99px;
    background: #ef4056;
    color: #fff;
    font-size: 8px;
    line-height: 1;
    font-weight: 800;
}

.phase1-storefront .stx-mobile-menu-btn.vl-offcanvas-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0 !important;
    border-radius: 4px;
    background: transparent !important;
    box-shadow: none !important;
}

.phase1-storefront .stx-mobile-menu-btn .icon-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #fff;
}

.phase1-storefront .stx-categorybar__mobile {
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-height: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.phase1-storefront .stx-categorybar__mobile::-webkit-scrollbar {
    display: none;
}

.phase1-storefront .stx-categorybar__mobile > a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 13px;
    color: #263431;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}

.phase1-storefront .stx-categorybar__mobile > a:hover,
.phase1-storefront .stx-categorybar__mobile > a:focus-visible,
.phase1-storefront .stx-categorybar__mobile > a.is-active {
    background: #f1f7f5;
    color: var(--stx-accent);
}

/* Ensure old Phase 5 detached search row/category panel cannot influence new header. */
.phase1-storefront .stx-header + .p5-search-row,
.phase1-storefront .stx-header .p5-category-menu,
.phase1-storefront .stx-header .p5-category-toggle {
    display: none !important;
}

/* ============================================================
   Compact desktop 992–1199: keep PC layout, collapse action text.
   ============================================================ */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .phase1-storefront .stx-mainbar__inner {
        grid-template-columns: 108px minmax(260px, 1fr) auto;
        gap: 14px;
        min-height: 72px;
    }

    .phase1-storefront .stx-logo__surface {
        width: 100px;
        height: 50px;
    }

    .phase1-storefront .stx-actions {
        gap: 3px;
    }

    .phase1-storefront .stx-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        min-height: 44px;
        padding: 0;
    }

    .phase1-storefront .stx-action__icon {
        width: 38px;
        height: 40px;
        font-size: 19px;
    }

    .phase1-storefront .stx-action__copy {
        display: none;
    }

    .phase1-storefront .stx-action__badge {
        top: 0;
        right: 0;
        left: auto;
    }

    .phase1-storefront .stx-nav-item > a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .phase1-storefront .storefront-sticky-shell.stx-header {
        box-shadow: 0 4px 14px rgba(2, 35, 30, .14);
    }

    .phase1-storefront .stx-header-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .phase1-storefront .stx-mainbar__inner {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        grid-template-areas:
            "menu logo mobile-actions"
            "search search search";
        gap: 8px 10px;
        min-height: 0;
        padding: 8px 0 10px;
    }

    .phase1-storefront .stx-mobile-menu-btn {
        grid-area: menu;
    }

    .phase1-storefront .stx-logo {
        grid-area: logo;
        justify-content: flex-start;
    }

    .phase1-storefront .stx-logo__surface {
        width: 86px;
        height: 40px;
        padding: 5px 7px;
        border-radius: 5px;
    }

    .phase1-storefront .stx-logo img {
        max-height: 31px;
    }

    .phase1-storefront .stx-search {
        grid-area: search;
    }

    .phase1-storefront .stx-mobile-actions {
        grid-area: mobile-actions;
    }

    .phase1-storefront .stx-search__box,
    .phase1-storefront .stx-search__box input[type="search"],
    .phase1-storefront .stx-search__submit {
        height: 42px;
    }

    .phase1-storefront .stx-search__box {
        grid-template-columns: minmax(0, 1fr) 44px;
        border-radius: 5px;
    }

    .phase1-storefront .stx-search__box input[type="search"] {
        padding-left: 12px;
        font-size: 13px;
        line-height: 42px;
    }

    .phase1-storefront .stx-search__submit {
        width: 44px;
        font-size: 15px;
    }

    .phase1-storefront .stx-search-results.storefront-search-results {
        top: calc(100% + 5px);
        max-height: min(58vh, 420px);
    }

    .phase1-storefront .stx-categorybar {
        min-height: 40px;
    }
}

@media (max-width: 575.98px) {
    .phase1-storefront .stx-header-container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .phase1-storefront .stx-mainbar__inner {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 7px 8px;
        padding-top: 7px;
        padding-bottom: 8px;
    }

    .phase1-storefront .stx-mobile-menu-btn.vl-offcanvas-toggle,
    .phase1-storefront .stx-mobile-action {
        width: 34px;
        height: 36px;
    }

    .phase1-storefront .stx-mobile-menu-btn .icon-bar {
        width: 18px;
    }

    .phase1-storefront .stx-logo__surface {
        width: 78px;
        height: 38px;
    }

    .phase1-storefront .stx-search__box input[type="search"] {
        font-size: 12.5px;
    }

    .phase1-storefront .stx-categorybar__mobile > a {
        min-height: 38px;
        padding: 0 11px;
        font-size: 11.5px;
    }
}

@media (max-width: 359.98px) {
    .phase1-storefront .stx-mobile-actions {
        gap: 0;
    }

    .phase1-storefront .stx-logo__surface {
        width: 72px;
    }

    .phase1-storefront .stx-search__box input[type="search"] {
        padding-left: 10px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phase1-storefront .stx-action,
    .phase1-storefront .stx-action__icon,
    .phase1-storefront .stx-search__submit,
    .phase1-storefront .stx-cat-toggle i {
        transition: none !important;
    }
}

.phase1-storefront .stx-nav-item.is-align-right > .stx-cat-dropdown {
    right: 0 !important;
    left: auto !important;
}

/* ========================================================================== 
   Mobile header final fit correction
   Keeps the Star Tech-style hierarchy, but makes 320-575px genuinely compact:
   menu | perfectly centered logo | account/cart, then search, then five quick links.
   Categories remain available through the hamburger menu instead of overflowing.
   ========================================================================== */
@media (max-width: 575.98px) {
    .phase1-storefront .stx-header-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .phase1-storefront .stx-mainbar__inner {
        grid-template-columns: 68px minmax(0, 1fr) 68px;
        grid-template-rows: 36px 40px;
        grid-template-areas:
            "menu logo mobile-actions"
            "search search search";
        align-items: center;
        column-gap: 6px;
        row-gap: 6px;
        padding: 7px 0;
    }

    .phase1-storefront .stx-mobile-menu-btn {
        justify-self: start;
        align-self: center;
    }

    .phase1-storefront .stx-logo {
        justify-self: center;
        justify-content: center;
        width: auto;
    }

    .phase1-storefront .stx-logo__surface {
        width: 72px;
        height: 36px;
        padding: 4px 6px;
        border-radius: 5px;
    }

    .phase1-storefront .stx-logo img {
        max-height: 28px;
    }

    .phase1-storefront .stx-mobile-actions {
        justify-self: end;
        width: 68px;
        gap: 2px;
    }

    .phase1-storefront .stx-mobile-menu-btn.vl-offcanvas-toggle,
    .phase1-storefront .stx-mobile-action {
        width: 32px;
        height: 34px;
    }

    .phase1-storefront .stx-mobile-menu-btn .icon-bar {
        width: 18px;
    }

    .phase1-storefront .stx-mobile-action {
        font-size: 17px;
    }

    .phase1-storefront .stx-mobile-badge {
        top: 0;
        right: -1px;
        min-width: 15px;
        height: 15px;
        padding: 0 3px;
        font-size: 7.5px;
    }

    .phase1-storefront .stx-search__box,
    .phase1-storefront .stx-search__box input[type="search"],
    .phase1-storefront .stx-search__submit {
        height: 40px;
    }

    .phase1-storefront .stx-search__box {
        grid-template-columns: minmax(0, 1fr) 42px;
        border-radius: 6px;
    }

    .phase1-storefront .stx-search__box input[type="search"] {
        padding: 0 12px;
        font-size: 12.5px;
        line-height: 40px;
    }

    .phase1-storefront .stx-search__submit {
        width: 42px;
        font-size: 15px;
    }

    .phase1-storefront .stx-categorybar,
    .phase1-storefront .stx-categorybar__mobile {
        min-height: 36px;
    }

    /* Five customer shortcuts fit the viewport exactly. Category links are
       intentionally kept in the hamburger menu at phone widths. */
    .phase1-storefront .stx-categorybar__mobile.d-flex {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: 100%;
        overflow: hidden;
    }

    .phase1-storefront .stx-categorybar__mobile > a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        min-height: 36px;
        padding: 0 3px;
        border-right: 1px solid #edf1ef;
        font-size: 10.8px;
        line-height: 1.1;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .phase1-storefront .stx-categorybar__mobile > a:nth-child(5) {
        border-right: 0;
    }

    .phase1-storefront .stx-categorybar__mobile > a:nth-child(n + 6) {
        display: none !important;
    }
}

@media (max-width: 359.98px) {
    .phase1-storefront .stx-mainbar__inner {
        grid-template-columns: 64px minmax(0, 1fr) 64px;
        column-gap: 4px;
    }

    .phase1-storefront .stx-logo__surface {
        width: 68px;
        height: 34px;
    }

    .phase1-storefront .stx-mobile-actions {
        width: 64px;
        gap: 0;
    }

    .phase1-storefront .stx-mobile-menu-btn.vl-offcanvas-toggle,
    .phase1-storefront .stx-mobile-action {
        width: 31px;
        height: 32px;
    }

    .phase1-storefront .stx-categorybar__mobile > a {
        padding-left: 2px;
        padding-right: 2px;
        font-size: 10px;
    }
}


/* ===== Phase 6 bundled source: phase5-smart-cart-drawer.css ===== */
/* Theme 2 - Smart responsive mini cart drawer */
#side-cart-wrapper.phase5-smart-cart {
    --smart-cart-accent: var(--primary-color, #046a58);
    --smart-cart-accent-dark: #035447;
    --smart-cart-ink: #102824;
    --smart-cart-muted: #6f7c79;
    --smart-cart-line: #e4ebe9;
    --smart-cart-soft: #f5f9f8;
    z-index: 100050;
    background: rgba(4, 18, 24, .62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    overflow: hidden;
}

#side-cart-wrapper.phase5-smart-cart .phase5-smart-cart__panel {
    width: min(440px, 100vw);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -18px 0 50px rgba(4, 35, 30, .16);
}

.phase5-smart-cart__header {
    min-height: 68px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--smart-cart-line);
    background: #fff;
    flex: 0 0 auto;
}

.phase5-smart-cart__back,
.phase5-smart-cart__close,
.phase5-smart-cart__remove,
.phase5-smart-cart__continue {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.phase5-smart-cart__back {
    min-width: 0;
    padding: 9px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
    color: var(--smart-cart-ink);
    background: var(--smart-cart-soft);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.phase5-smart-cart__back i { font-size: 20px; }
.phase5-smart-cart__back:hover,
.phase5-smart-cart__back:focus-visible {
    color: #fff;
    background: var(--smart-cart-accent);
    transform: translateX(-2px);
}

.phase5-smart-cart__close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--smart-cart-ink);
    background: #fff;
    border: 1px solid var(--smart-cart-line);
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.phase5-smart-cart__close i { font-size: 26px; }
.phase5-smart-cart__close:hover,
.phase5-smart-cart__close:focus-visible {
    color: #fff;
    border-color: var(--smart-cart-accent);
    background: var(--smart-cart-accent);
    transform: rotate(90deg);
}

.phase5-smart-cart__heading {
    padding: 20px 20px 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex: 0 0 auto;
}
.phase5-smart-cart__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--smart-cart-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.phase5-smart-cart__heading h3 {
    margin: 0;
    color: var(--smart-cart-ink);
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.1;
}
.phase5-smart-cart__count {
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
    color: var(--smart-cart-accent-dark);
    background: #e9f5f2;
    font-size: 12px;
    font-weight: 800;
}

.phase5-smart-cart__body {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding: 0 20px 18px;
    scrollbar-width: thin;
    scrollbar-color: #b8cac6 transparent;
}
.phase5-smart-cart__body::-webkit-scrollbar { width: 6px; }
.phase5-smart-cart__body::-webkit-scrollbar-thumb { background: #b8cac6; border-radius: 10px; }

.phase5-smart-cart__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.phase5-smart-cart__item {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--smart-cart-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(10, 50, 44, .05);
}
.phase5-smart-cart__image {
    width: 78px;
    height: 78px;
    border-radius: 11px;
    overflow: hidden;
    background: var(--smart-cart-soft);
    border: 1px solid #edf1f0;
}
.phase5-smart-cart__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.phase5-smart-cart__details { min-width: 0; }
.phase5-smart-cart__name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--smart-cart-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}
.phase5-smart-cart__name:hover { color: var(--smart-cart-accent); }
.phase5-smart-cart__options {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 9px;
    color: var(--smart-cart-muted);
    font-size: 11px;
    line-height: 1.35;
}
.phase5-smart-cart__meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px 10px;
    color: var(--smart-cart-muted);
    font-size: 12px;
}
.phase5-smart-cart__meta strong {
    color: var(--smart-cart-ink);
    font-size: 13px;
}
.phase5-smart-cart__remove {
    width: 34px;
    height: 34px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #d93e50;
    background: #fff3f5;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.phase5-smart-cart__remove i { font-size: 19px; }
.phase5-smart-cart__remove:hover,
.phase5-smart-cart__remove:focus-visible {
    color: #fff;
    background: #d93e50;
    transform: scale(1.06);
}

.phase5-smart-cart__footer {
    flex: 0 0 auto;
    padding: 16px 20px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--smart-cart-line);
    background: #fff;
    box-shadow: 0 -12px 30px rgba(12, 45, 40, .05);
}
.phase5-smart-cart__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--smart-cart-ink);
}
.phase5-smart-cart__subtotal span { font-size: 14px; font-weight: 700; }
.phase5-smart-cart__subtotal strong { font-size: 21px; line-height: 1; }
.phase5-smart-cart__note {
    margin: 7px 0 14px;
    color: var(--smart-cart-muted);
    font-size: 11px;
    line-height: 1.4;
}
.phase5-smart-cart__actions {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 10px;
}
.phase5-smart-cart__view-cart,
.phase5-smart-cart__checkout,
.phase5-smart-cart__continue {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.phase5-smart-cart__view-cart {
    color: var(--smart-cart-accent);
    background: #fff;
    border: 1px solid var(--smart-cart-accent);
}
.phase5-smart-cart__view-cart:hover,
.phase5-smart-cart__view-cart:focus-visible {
    color: #fff;
    background: var(--smart-cart-accent);
}
.phase5-smart-cart__checkout {
    color: #fff;
    background: var(--smart-cart-accent);
    border: 1px solid var(--smart-cart-accent);
}
.phase5-smart-cart__checkout:hover,
.phase5-smart-cart__checkout:focus-visible {
    color: #fff;
    background: var(--smart-cart-accent-dark);
    border-color: var(--smart-cart-accent-dark);
}
.phase5-smart-cart__view-cart:hover,
.phase5-smart-cart__checkout:hover { transform: translateY(-1px); }

.phase5-smart-cart__empty {
    min-height: 48vh;
    padding: 44px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.phase5-smart-cart__empty-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--smart-cart-accent);
    background: #eaf6f3;
}
.phase5-smart-cart__empty-icon i { font-size: 34px; }
.phase5-smart-cart__empty h4 { margin: 0 0 6px; color: var(--smart-cart-ink); font-size: 21px; }
.phase5-smart-cart__empty p { margin: 0 0 18px; color: var(--smart-cart-muted); font-size: 13px; }
.phase5-smart-cart__continue {
    color: #fff;
    background: var(--smart-cart-accent);
    border: 1px solid var(--smart-cart-accent);
}
.phase5-smart-cart__continue:hover,
.phase5-smart-cart__continue:focus-visible { color: #fff; background: var(--smart-cart-accent-dark); }

@media (max-width: 575.98px) {
    #side-cart-wrapper.phase5-smart-cart .phase5-smart-cart__panel {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
        border-radius: 0;
    }
    #side-cart-wrapper.phase5-smart-cart.show .phase5-smart-cart__panel { right: 0; }
    .phase5-smart-cart__header { min-height: 60px; padding: 10px 14px; }
    .phase5-smart-cart__back { padding: 8px 10px; font-size: 12px; }
    .phase5-smart-cart__close { width: 38px; height: 38px; flex-basis: 38px; }
    .phase5-smart-cart__heading { padding: 17px 14px 13px; align-items: center; }
    .phase5-smart-cart__heading h3 { font-size: 24px; }
    .phase5-smart-cart__body { padding: 0 14px 14px; }
    .phase5-smart-cart__item {
        grid-template-columns: 68px minmax(0, 1fr) 32px;
        gap: 10px;
        padding: 10px;
        border-radius: 13px;
    }
    .phase5-smart-cart__image { width: 68px; height: 68px; }
    .phase5-smart-cart__name { font-size: 13px; }
    .phase5-smart-cart__meta { font-size: 11px; }
    .phase5-smart-cart__meta strong { font-size: 12px; }
    .phase5-smart-cart__footer { padding: 14px 14px calc(14px + env(safe-area-inset-bottom)); }
    .phase5-smart-cart__subtotal strong { font-size: 19px; }
    .phase5-smart-cart__actions { grid-template-columns: 1fr 1fr; gap: 8px; }
    .phase5-smart-cart__view-cart,
    .phase5-smart-cart__checkout { min-height: 46px; padding-inline: 10px; font-size: 12px; }
}

@media (max-width: 359.98px) {
    .phase5-smart-cart__back span { max-width: 122px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .phase5-smart-cart__heading { gap: 8px; }
    .phase5-smart-cart__heading h3 { font-size: 22px; }
    .phase5-smart-cart__count { padding: 6px 8px; font-size: 11px; }
    .phase5-smart-cart__item { grid-template-columns: 62px minmax(0, 1fr) 30px; gap: 8px; }
    .phase5-smart-cart__image { width: 62px; height: 62px; }
    .phase5-smart-cart__actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    #side-cart-wrapper.phase5-smart-cart,
    #side-cart-wrapper.phase5-smart-cart .phase5-smart-cart__panel,
    .phase5-smart-cart__back,
    .phase5-smart-cart__close,
    .phase5-smart-cart__remove,
    .phase5-smart-cart__view-cart,
    .phase5-smart-cart__checkout { transition: none !important; }
}


/* ===== Phase 6 performance additions ===== */
/* ======================================================================
   Phase 6 — Frontend performance & smoothness
   Visual design is intentionally preserved; these rules only reduce paint,
   touch/scroll friction and hero-image loading overhead.
   ====================================================================== */

html {
    scroll-behavior: smooth;
}

.phase1-storefront a,
.phase1-storefront button,
.phase1-storefront [role="button"] {
    touch-action: manipulation;
}

/* Hero is now a real responsive image instead of one CSS background request
   per slide. First slide can be preloaded; remaining slides can lazy-load. */
.phase1-home .banner-six-slide-bg > .phase6-banner-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.phase1-home .banner-six-slide-bg .phase6-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Keep frequently touched/scrollable UI on its own natural scrolling path. */
.phase1-storefront .storefront-search-results,
.phase1-storefront .stx-categorybar__mobile,
.phase1-storefront .vl-offcanvas,
.phase1-storefront .vl-offcanvas-menu,
.phase1-storefront .phase5-smart-cart__items,
.phase1-storefront .sidemenu-content {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Product cards are independent layout islands. Layout containment reduces
   unnecessary style/layout propagation while preserving shadows and overflow. */
.phase1-storefront .property-single-boxarea.difference-two {
    contain: layout style;
}

@media (hover: none), (pointer: coarse) {
    /* Hover image effects have no value on touch screens and can make scroll
       feel sticky because the GPU keeps extra transform layers alive. */
    .phase1-storefront .image-anime img,
    .phase1-storefront .property-single-boxarea img {
        transition-duration: 0.15s !important;
    }
}

@media (max-width: 767.98px) {
    /* Backdrop blur is one of the most expensive mobile paint effects. Keep
       the same translucent look without forcing live blur during scrolling. */
    .phase1-home .banner-six-card {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        background: rgba(10, 35, 31, .58) !important;
    }

    .phase1-storefront .vl-offcanvas-overlay {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .phase1-storefront *,
    .phase1-storefront *::before,
    .phase1-storefront *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
