/* ============================================================
   VBU Health Care — Custom Stylesheet
   Place in: public/css/app.css
   ============================================================ */

/* ------------------------------------------------------------
   CSS VARIABLES — Update colors here to change site-wide
   ------------------------------------------------------------ */
:root {
    /* Brand Colors */
    --color-primary:        #2A1570;   /* Deep indigo — main brand */
    --color-primary-dark:   #1f0f54;   /* Darker indigo for hover */
    --color-primary-light:  #ece9f8;   /* Light indigo tint for backgrounds */
    --color-secondary:      #007CC2;   /* Vibrant blue — accent / CTA */
    --color-secondary-dark: #005a8e;   /* Darker blue for hover */

    /* Neutrals */
    --color-text:           #2d2d2d;
    --color-text-muted:     #6b7280;
    --color-border:         #e5e7eb;
    --color-bg-light:       #f9fafb;
    --color-white:          #ffffff;

    /* Footer */
    --color-footer-bg:      #111827;
    --color-footer-text:    #d5d5d5;
    --color-footer-bottom:  #0d1520;
    --color-footer-border:  #1f2937;

    /* Misc */
    --border-radius-sm:     6px;
    --border-radius-md:     10px;
    --border-radius-lg:     16px;
    --transition-fast:      0.18s ease;
    --transition-mid:       0.28s ease;
    --shadow-sm:            0 1px 4px rgba(0,0,0,0.08);
    --shadow-md:            0 4px 16px rgba(0,0,0,0.12);
}

/* ------------------------------------------------------------
   GLOBAL BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
    font-size: 15px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    background-color: var(--color-white);
    z-index: 1000;
}

/* Top Bar */
.header-topbar {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
}

.topbar-text {
    opacity: 0.9;
}

.topbar-divider {
    opacity: 0.4;
}

/* Logo */
.header-logo {
    height: 44px;
    width: auto;
    display: block;
}

.header-logo-link {
    flex-shrink: 0;
}

/* --- Search Bar --- */
.header-search-wrap {
    position: relative;
}

.header-search-input {
    height: 44px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 0 3rem 0 1rem;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background-color: var(--color-white);
}

.header-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 127, 90, 0.12);
}

.header-search-input::placeholder {
    color: var(--color-text-muted);
    font-size: 13.5px;
}

.header-search-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    height: 34px;
    width: 34px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 13px;
    transition: background-color var(--transition-fast);
    right: 5px !important;
}

.header-search-btn:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
}

/* --- Search Results Dropdown --- */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    z-index: 9999;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

.search-results-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.search-results-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: var(--color-text);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.search-results-list li a:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.search-results-list li a i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.search-no-results {
    padding: 14px 16px;
    font-size: 13.5px;
    color: var(--color-text-muted);
    text-align: center;
}

/* --- Ghost Icon Buttons --- */
.btn-ghost-icon {
    background: transparent;
    border: none;
    color: var(--color-text);
    padding: 6px 8px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    line-height: 1;
}

.btn-ghost-icon:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

/* --- Auth Links --- */
.header-auth-links {
    font-size: 13.5px;
    font-weight: 600;
}

.header-auth-link {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.header-auth-link:hover {
    color: var(--color-primary);
}

.auth-divider {
    color: var(--color-border);
}

/* --- Cart Badge --- */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* --- Desktop Navigation --- */
.desktop-nav {
    gap: 8px !important;
}

.nav-link-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    background: none;
    border: none;
    padding: 4px 6px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: color var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--color-primary);
}

/* Products Dropdown */
.nav-dropdown-wrap {
    position: relative;
}

.nav-chevron {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-dropdown-wrap:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    min-width: 210px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 999;
}

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

.nav-dropdown-item {
    display: block;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-item:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}


/* ============================================================
   MOBILE OFFCANVAS NAV
   ============================================================ */

.mobile-offcanvas {
    border-left: 1px solid var(--color-border);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.mobile-nav-accordion {
    justify-content: space-between;
    text-align: left;
}

.mobile-accordion-icon {
    font-size: 11px;
    transition: transform var(--transition-fast);
}

.mobile-nav-accordion[aria-expanded="true"] .mobile-accordion-icon {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 6px 0;
}

.mobile-nav-sublink {
    display: block;
    padding: 9px 24px 9px 48px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.mobile-nav-sublink:hover {
    color: var(--color-primary);
}

/* Custom primary button for mobile offcanvas */
.btn-primary-custom {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Override Bootstrap outline-primary to use CSS variable */
.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-active-bg: var(--color-primary-dark);
    --bs-btn-active-border-color: var(--color-primary-dark);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    font-size: 14px;
}

.footer-logo {
    height: 38px;
    width: auto;
    display: block;
    /* Inverts to white for dark background */
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 13.5px;
    color: var(--color-footer-text);
    line-height: 1.7;
}

.footer-section-title {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

/* Social Icons */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: var(--color-footer-text);
    font-size: 14px;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Contact */
.footer-contact-icon {
    /* color: var(--color-secondary); */
    font-size: 14px;
}

.footer-contact-link {
    color: var(--color-footer-text);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--color-white);
}

/* Quick Links & Policy Links */
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--color-footer-text);
    font-size: 13.5px;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.footer-link i {
    color: var(--color-secondary);
    font-size: 11px;
}

.footer-link:hover {
    color: var(--color-white);
    padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--color-footer-bottom);
    border-top: 1px solid var(--color-footer-border);
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-footer-text);
}


/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 767.98px) {
    .header-logo {
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    .site-footer .row > [class*='col-'] {
        border-bottom: 1px solid var(--color-footer-border);
        padding-bottom: 1.5rem;
    }
    .site-footer .row > [class*='col-']:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   HOMEPAGE — Additions to style.css
   All new rules below. Existing vars & base rules reused.
   ============================================================ */


/* ------------------------------------------------------------
   SHARED SECTION HELPERS
   ------------------------------------------------------------ */
.bg-light-custom   { background-color: var(--color-bg-light); }
.section-title     { font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--color-text); margin-bottom: .35rem; }
.section-subtitle  { font-size: 14px; color: var(--color-text-muted); margin-bottom: 0; }
.text-white-80     { color: rgba(255,255,255,.85); font-size: 15px; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}


/* ------------------------------------------------------------
   SHARED BUTTON STYLES
   ------------------------------------------------------------ */
.btn-hero-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-hero-primary:hover {
    background-color: #e9ecef;
    color: var(--color-primary-dark);
}

.btn-hero-outline {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 28px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--color-white);
    transition: background-color var(--transition-fast), color var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.btn-hero-outline:hover {
    background-color: rgba(255,255,255,.12);
    color: var(--color-white);
    border: 1.5px solid var(--color-white);
}

.btn-add-cart {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: background-color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-add-cart:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
}

.btn-outline-view {
    background-color: transparent;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--color-border);
    transition: border-color var(--transition-fast), color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-view:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}


/* ------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------ */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.hero-title   { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; }
.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.9); max-width: 520px; }

.hero-trust-bar {
    background-color: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.2);
}
.trust-icon  { font-size: 22px; display: block; }
.trust-label { font-size: 13px; }


/* ------------------------------------------------------------
   PRODUCT CARDS
   ------------------------------------------------------------ */
.product-card {
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-mid), transform var(--transition-mid), border-color var(--transition-mid);
    overflow: hidden;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(42,21,112,.18);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f3f4f6;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-mid);
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
}
.badge-secondary-custom {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .5rem;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating { display: flex; align-items: center; gap: 4px; }
.stars          { color: #facc15; font-size: 12px; }
.rating-score   { font-size: 13px; font-weight: 600; color: var(--color-text); }
.rating-count   { font-size: 12px; color: var(--color-text-muted); }

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}


/* ------------------------------------------------------------
   CATEGORY CARDS
   ------------------------------------------------------------ */
.category-card {
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: box-shadow var(--transition-mid), transform var(--transition-mid), border-color var(--transition-mid);
    cursor: pointer;
}
.category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(42,21,112,.2);
}

.category-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}
.category-card:hover .category-icon-wrap { transform: rotate(10deg); }
.cat-icon  { font-size: 28px; }

/* Category icon backgrounds */
.bg-cat-red    { background-color: #fef2f2; }
.bg-cat-green  { background-color: #f0fdf4; }
.bg-cat-blue   { background-color: #eff6ff; }
.bg-cat-pink   { background-color: #fdf2f8; }
.bg-cat-orange { background-color: #fff7ed; }
.bg-cat-purple { background-color: #f5f3ff; }

/* Category icon colors */
.text-pink   { color: #ec4899; }
.text-purple { color: #7c3aed; }

.category-name  { font-size: 14px; font-weight: 600; color: var(--color-text); margin-bottom: .2rem; }
.category-count { font-size: 12px; color: var(--color-text-muted); margin: 0; }


/* ------------------------------------------------------------
   SEO SECTION
   ------------------------------------------------------------ */
.seo-section { background-color: var(--color-primary-light); }
.seo-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.seo-content p:last-child { margin-bottom: 0; }


/* ------------------------------------------------------------
   INFOGRAPHIC / HOW IT WORKS
   ------------------------------------------------------------ */
.infographic-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.infographic-step {
    background-color: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    height: -webkit-fill-available;
}

.step-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--color-white);
}
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: .75rem;
}
.step-desc {
    font-size: 14px;
    color: rgba(255,255,255,.82);
    margin: 0;
    line-height: 1.6;
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: .3rem;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.8);
}


/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-item {
    border: 1.5px solid var(--color-border) !important;
    border-radius: var(--border-radius-md) !important;
    margin-bottom: .6rem;
    overflow: hidden;
}

.faq-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    background-color: var(--color-white);
    padding: 1rem 1.25rem;
    box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}
.faq-btn::after {
    filter: none;
}
.faq-btn:not(.collapsed)::after {
    filter: invert(18%) sepia(77%) saturate(1200%) hue-rotate(228deg) brightness(60%);
}

.faq-body {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    padding: 1rem 1.25rem;
    background-color: var(--color-white);
}


/* ------------------------------------------------------------
   BLOG CARDS
   ------------------------------------------------------------ */
.blog-card {
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-mid), transform var(--transition-mid), border-color var(--transition-mid);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) scale(1.015);
    border-color: rgba(42,21,112,.18);
}

.blog-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f3f4f6;
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-mid);
}
.blog-card:hover .blog-img { transform: scale(1.07); }

.blog-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-date-badge i { color: var(--color-primary); font-size: 11px; }

.blog-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-bottom: .85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast);
}
.blog-read-more:hover { color: var(--color-primary); }
.blog-read-more i { transition: transform var(--transition-fast); }
.blog-read-more:hover i { transform: translateX(3px); }


/* ------------------------------------------------------------
   REVIEW CARDS
   ------------------------------------------------------------ */
.review-card {
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: box-shadow var(--transition-mid), border-color var(--transition-mid);
    background-color: var(--color-white);
}
.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42,21,112,.18);
}

.review-quote-icon {
    color: rgba(42,21,112,.15);
    font-size: 2rem;
    display: block;
}
.review-stars { font-size: 15px; color: #facc15; }

.review-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}
.review-name { font-size: 14px; font-weight: 600; color: var(--color-text); }
.review-date { font-size: 12px; color: var(--color-text-muted); margin: 0; }

.review-verified {
    background-color: #f0fdf4;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-verified i { color: #16a34a; font-size: 16px; }


/* ------------------------------------------------------------
   CTA SECTION
   ------------------------------------------------------------ */
.cta-section { background-color: var(--color-primary); }
.cta-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ------------------------------------------------------------
   RESPONSIVE HOMEPAGE TWEAKS
   ------------------------------------------------------------ */
@media (max-width: 767.98px) {
    .hero-title   { font-size: 1.75rem; }
    .infographic-step { padding: 1.25rem 1rem; }
    .step-number  { font-size: 2.2rem; }
    .blog-title   { min-height: auto; }
    .product-name { min-height: auto; }
}

/* ============================================================
   about.css  —  About Us page ONLY additions
   Requires: style.css  (all variables, base, shared helpers)
   Link AFTER style.css:
       <link rel="stylesheet" href="{{ asset('css/about.css') }}">
   ============================================================ */


/* ------------------------------------------------------------
   PAGE HEADER
   Reuses gradient from .hero-section via same CSS vars
   ------------------------------------------------------------ */
.about-page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* subtle dot-grid texture */
.about-page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.about-page-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .5rem;
    letter-spacing: -.4px;
}

.about-page-sub {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255,255,255,.82);
    margin-bottom: 1.1rem;
}

.about-breadcrumb-link {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.about-breadcrumb-link:hover { color: var(--color-white); }

.about-page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.about-page-header .breadcrumb-item.active                      { color: rgba(255,255,255,.8); }


/* ------------------------------------------------------------
   INTRO — text
   ------------------------------------------------------------ */
.about-intro-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: .85rem;
    letter-spacing: -.35px;
}

.about-intro-lead {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: .75rem;
}

.about-intro-body {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

/* checklist — uses existing brand colours */
.about-checklist {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--color-text);
}

.about-checklist li .fa-circle-check {
    color: var(--color-primary);
    font-size: 16px;
    flex-shrink: 0;
}


/* ------------------------------------------------------------
   INTRO — image & floating badges
   ------------------------------------------------------------ */
.about-img-wrap {
    position: relative;
    display: block;
}

.about-main-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 18px 54px rgba(42,21,112,.16);
    display: block;
    transition: transform var(--transition-mid);
}
.about-main-img:hover { transform: scale(1.012); }

/* shared float badge base */
.about-float-badge {
    position: absolute;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    animation: aboutFloat 3.6s ease-in-out infinite;
}

.about-float-badge--tl {
    top: 1.25rem;
    right: -1rem;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    padding: 14px 18px;
}

.about-float-badge--br {
    bottom: 1.25rem;
    left: -1rem;
    animation-delay: 1.8s;
}

.about-float-num {
    display: block;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.about-float-label {
    display: block;
    font-size: 11.5px;
    color: var(--color-text-muted);
    line-height: 1.3;
    margin-top: 2px;
}

.about-float-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 15px;
    flex-shrink: 0;
}

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}


/* ------------------------------------------------------------
   MISSION / VISION CARDS
   Extends .category-card pattern; uses .category-icon-wrap/.cat-icon
   already in style.css — only new rules added here
   ------------------------------------------------------------ */
.about-value-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: box-shadow var(--transition-mid), transform var(--transition-mid), border-color var(--transition-mid);
}

.about-value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(42,21,112,.18);
}

/* active/featured centre card */
.about-value-card--active {
    border-color: var(--color-primary);
    box-shadow: 0 6px 24px rgba(42,21,112,.1);
}
.about-value-card--active:hover {
    box-shadow: 0 14px 40px rgba(42,21,112,.18);
    transform: translateY(-6px);
}

.about-value-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}

.about-value-desc {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
}


/* ------------------------------------------------------------
   WHY CHOOSE US CARDS
   Same shape as category-card; minimal extra rules
   ------------------------------------------------------------ */
.about-feature-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    transition: box-shadow var(--transition-mid), transform var(--transition-mid), border-color var(--transition-mid);
}

.about-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(42,21,112,.18);
}

.about-feature-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .4rem;
}

.about-feature-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}


/* ------------------------------------------------------------
   STRIP IMAGES
   ------------------------------------------------------------ */
.about-strip-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-mid);
}
.about-strip-img:hover { transform: scale(1.01); }


/* ------------------------------------------------------------
   CMS / BACKEND CONTENT SCOPE
   Targets $sections[] output — scoped so it never bleeds
   ------------------------------------------------------------ */
.about-cms-content h2,
.about-cms-content h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 1.4rem 0 .6rem;
}
.about-cms-content h2:first-child,
.about-cms-content h3:first-child { margin-top: 0; }

.about-cms-content p {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: .9rem;
}

.about-cms-content ul {
    padding-left: 1.2rem;
    margin-bottom: .9rem;
}
.about-cms-content ul li {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: .35rem;
}

.about-cms-content a {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}
.about-cms-content a:hover { color: var(--color-primary); }


/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .about-float-badge--tl { top: .75rem; right: -.25rem; }
    .about-float-badge--br { bottom: .75rem; left: -.25rem; }
}

@media (max-width: 767.98px) {
    .about-page-title { font-size: 1.6rem; }
    .about-float-badge { padding: 8px 12px; }
    .about-float-num   { font-size: 1.15rem; }
    .about-strip-img   { height: 120px; }
}

/* ------------------------------------------------------------
   PAGE HEADER
   ------------------------------------------------------------ */
.about-page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); /* fallback */
}

/* Background Image */
.about-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Overlay for better text readability */
.about-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(42, 21, 112, 0.75) 0%, 
        rgba(42, 21, 112, 0.55) 100%);
    z-index: 1;
}

/* subtle dot-grid texture */
.about-page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 2;
}

/* Content positioning */
.about-page-header .container {
    position: relative;
    z-index: 3;
}

.about-page-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .5rem;
    letter-spacing: -.4px;
}

.about-page-sub {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, .82);
    margin-bottom: 1.1rem;
}

.about-breadcrumb-link {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.about-breadcrumb-link:hover {
    color: var(--color-white);
}

.about-page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

.about-page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, .8);
}

/* ------------------------------------------------------------
   PAGINATION
   ------------------------------------------------------------ */
.pagination {
    gap: 6px;
}

.page-item .page-link {
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm) !important;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    margin: 0 2px;
}

.page-item .page-link:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.page-item.active .page-link {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.page-item.disabled .page-link {
    color: var(--color-text-muted);
    background-color: var(--color-bg-light);
    border-color: var(--color-border);
    opacity: 0.6;
    pointer-events: none;
}

/* Pagination arrows */
.page-link i {
    font-size: 12px;
}

/* ------------------------------------------------------------
   SOLID PRIMARY BUTTON (Add to style.css)
   ------------------------------------------------------------ */
.btn-primary-solid {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary-solid:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-primary-solid:active {
    transform: translateY(0);
}

/* ------------------------------------------------------------
   FORM CONTROLS
   ------------------------------------------------------------ */
.form-control,
.form-control-lg {
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus,
.form-control-lg:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 21, 112, 0.08);
}

.form-label {
    font-size: 13.5px;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-check-input {
    border: 1.5px solid var(--color-border);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 21, 112, 0.08);
}

/* Alert Styling */
.alert {
    border-radius: var(--border-radius-md);
    border: 1.5px solid transparent;
    font-size: 14px;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* ------------------------------------------------------------
   FORM SELECT (Add to style.css)
   ------------------------------------------------------------ */
.form-select {
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 21, 112, 0.08);
}

.form-select:disabled {
    background-color: var(--color-bg-light);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Invalid state */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ============================================================
   SINGLE BLOG PAGE STYLING
   ============================================================ */

/* ------------------------------------------------------------
   BLOG SINGLE - MAIN CONTENT
   ------------------------------------------------------------ */
.blog-single-img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    background-color: #f3f4f6;
}

.blog-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid var(--color-border);
}

.blog-single-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    color: var(--color-text);
}

.blog-single-date i {
    color: var(--color-primary);
    font-size: 12px;
}

.blog-single-time {
    font-size: 13px;
    color: var(--color-text-muted);
}

.blog-single-time i {
    margin-right: 5px;
    color: var(--color-primary);
}

/* Blog Content Styling */
.blog-single-content {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.8;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4,
.blog-single-content h5,
.blog-single-content h6 {
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.8rem 0 1rem;
    line-height: 1.3;
}

.blog-single-content h2 { font-size: 1.5rem; }
.blog-single-content h3 { font-size: 1.3rem; }
.blog-single-content h4 { font-size: 1.15rem; }
.blog-single-content h5 { font-size: 1rem; }
.blog-single-content h6 { font-size: 0.95rem; }

.blog-single-content h2:first-child,
.blog-single-content h3:first-child,
.blog-single-content h4:first-child {
    margin-top: 0;
}

.blog-single-content p {
    margin-bottom: 1.2rem;
}

.blog-single-content p:last-child {
    margin-bottom: 0;
}

.blog-single-content ul,
.blog-single-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0 1.2rem;
}

.blog-single-content li {
    margin-bottom: 0.5rem;
}

.blog-single-content li:last-child {
    margin-bottom: 0;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
    display: block;
}

.blog-single-content figure {
    margin: 1.5rem 0;
}

.blog-single-content figcaption {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

.blog-single-content blockquote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.8rem;
    border-left: 4px solid var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-style: italic;
    color: var(--color-text);
}

.blog-single-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-single-content a {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.blog-single-content a:hover {
    color: var(--color-primary);
}

.blog-single-content strong,
.blog-single-content b {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.blog-single-content em,
.blog-single-content i {
    font-style: italic;
}

.blog-single-content hr {
    margin: 1.8rem 0;
    border: 0;
    border-top: 1.5px solid var(--color-border);
}

.blog-single-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 14px;
}

.blog-single-content table th,
.blog-single-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.blog-single-content table th {
    background: rgba(42, 21, 112, 0.05);
    font-weight: 700;
    color: var(--color-text);
}

/* Share Section */
.blog-single-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1.5px solid var(--color-border);
}

.blog-share-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-share-left span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.blog-share-icons {
    display: flex;
    gap: 8px;
}

.blog-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 13px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.blog-share-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.blog-back-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.blog-back-link:hover {
    color: var(--color-primary);
}

.blog-back-link i {
    transition: transform var(--transition-fast);
}

.blog-back-link:hover i {
    transform: translateX(-3px);
}

/* ------------------------------------------------------------
   BLOG SIDEBAR
   ------------------------------------------------------------ */
.blog-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.blog-sidebar-header .category-icon-wrap {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.blog-sidebar-header .cat-icon {
    font-size: 16px;
}

/* Recent Posts */
.blog-recent-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-recent-item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.blog-recent-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-recent-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-recent-title:hover {
    color: var(--color-primary);
}

.blog-recent-date {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Categories */
.blog-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-category-tag {
    display: inline-block;
    background-color: var(--color-bg-light);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid var(--color-border);
}

.blog-category-tag:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Tags */
.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-item {
    display: inline-block;
    background-color: var(--color-bg-light);
    color: var(--color-text-muted);
    font-size: 12.5px;
    font-weight: 400;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
}

/* Sidebar CTA */
.blog-sidebar-cta {
    background-color: var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-top: 1.5rem;
}

.blog-sidebar-cta h4 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 767.98px) {
    .blog-single-content {
        font-size: 14px;
    }
    
    .blog-single-share {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-share-left {
        width: 100%;
        justify-content: space-between;
    }
    
    .blog-single-content blockquote {
        padding: 1rem 1.2rem;
    }
}

/* ============================================================
   SINGLE PRODUCT PAGE - COMPLETE CSS
   ============================================================ */

/* ------------------------------------------------------------
   PRODUCT IMAGE
   ------------------------------------------------------------ */
.product-single-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-border);
    background: var(--color-white);
}

.product-single-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    padding: 1.5rem;
}

.product-single-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

/* ------------------------------------------------------------
   PRODUCT HEADER
   ------------------------------------------------------------ */
.product-single-header {
    margin-bottom: 1.25rem;
}

.product-single-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.product-single-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.product-single-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars-wrapper {
    display: flex;
    gap: 3px;
    color: #facc15;
    font-size: 15px;
}

.stars-wrapper.small {
    font-size: 12px;
}

.rating-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   PRODUCT DESCRIPTION
   ------------------------------------------------------------ */
.product-single-desc {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------
   SHIPPING BANNER
   ------------------------------------------------------------ */
.product-shipping-banner {
    background: var(--color-primary-light);
    border: 1.5px solid var(--color-primary);
    border-radius: var(--border-radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.product-shipping-banner i {
    color: var(--color-primary);
    font-size: 20px;
}

.product-shipping-banner span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ------------------------------------------------------------
   DOSAGE SECTION
   ------------------------------------------------------------ */
.product-dosage-section {
    margin-top: 1.5rem;
}

.dosage-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dosage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.dosage-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Dosage Selector Grid */
.dosage-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 1.5rem;
}

.dosage-option-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.dosage-option-card:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.dosage-option-card.active {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.dosage-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.dosage-icon i {
    font-size: 22px;
    color: var(--color-primary);
}

.dosage-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.dosage-info p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 0;
}

.dosage-check {
    margin-top: 10px;
    color: var(--color-primary);
    font-size: 18px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.dosage-option-card.active .dosage-check {
    opacity: 1;
}

/* Selected Dosage Indicator */
.selected-dosage-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.indicator-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.indicator-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 4px 14px;
    border-radius: 50px;
}

/* ------------------------------------------------------------
   PRODUCT CARDS (NO HORIZONTAL SCROLL)
   ------------------------------------------------------------ */
.product-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 0;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.product-pricing-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.product-pricing-card.highlight-card {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(42, 21, 112, 0.02) 0%, rgba(0, 124, 194, 0.04) 100%);
}

.best-value-ribbon {
    position: absolute;
    top: 0;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 18px 12px;
    border-bottom: 1px dashed var(--color-border);
}

.card-quantity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quantity-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.strength-tag {
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-bg-light);
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-block;
}

.card-price {
    text-align: right;
}

.price-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
}

.price-original {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.price-discount {
    font-size: 20px;
    font-weight: 800;
    color: #10b981;
}

/* Card Body */
.card-body {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shipping-info,
.delivery-info,
.savings-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.shipping-info i,
.delivery-info i,
.savings-info i {
    width: 18px;
    color: var(--color-primary);
}

.savings-info {
    color: #10b981;
    font-weight: 600;
}

.savings-info i {
    color: #10b981;
}

/* Card Footer */
.card-footer {
    padding: 0 18px 18px;
}

.card-cart-btn {
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.card-cart-btn:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-1px);
}

.card-cart-btn.highlight {
    background: var(--color-primary);
}

.card-cart-btn.highlight:hover {
    background: var(--color-primary-dark);
}

/* Empty State */
.no-products-message {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    border: 1.5px dashed var(--color-border);
}

.no-products-message i {
    font-size: 48px;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin-bottom: 15px;
}

.no-products-message h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.no-products-message p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Dosage Notice */
.product-dosage-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 13px;
}

.product-dosage-notice i {
    color: var(--color-primary);
    font-size: 16px;
}

/* ------------------------------------------------------------
   PRODUCT TABS
   ------------------------------------------------------------ */
.product-tabs-wrapper {
    border-top: 1.5px solid var(--color-border);
}

.product-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0 0 -1px 0;
    border-bottom: 1.5px solid var(--color-border);
}

.product-tab-item {
    margin-bottom: 0;
}

.product-tab-btn {
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    border-bottom: 3px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.product-tab-btn:hover {
    color: var(--color-primary);
}

.product-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.product-tab-content {
    padding: 2rem 0 1rem;
}

.product-tab-pane h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tab-pane h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.product-tab-pane p {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Product List */
.product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.product-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 14px;
}

/* FAQ List */
.product-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-faq-item h6 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.product-faq-item h6 i {
    color: var(--color-primary);
}

.product-faq-item p {
    margin-left: 26px;
    margin-bottom: 0;
}

/* Reviews */
.reviews-summary {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.reviews-average {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.average-rating {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.total-reviews {
    font-size: 14px;
    color: var(--color-text-muted);
}

.product-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-review-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.product-review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--color-text);
    font-size: 14.5px;
}

.review-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.review-date {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .product-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .product-tab-btn {
        white-space: nowrap;
        padding: 12px 18px;
    }
}

@media (max-width: 767.98px) {
    .product-single-title {
        font-size: 1.5rem;
    }
    
    .product-shipping-banner span {
        font-size: 12px;
    }
    
    .dosage-selector-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .dosage-option-card {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
    }
    
    .dosage-icon {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .dosage-info {
        flex: 1;
    }
    
    .dosage-check {
        margin-top: 0;
        margin-left: 10px;
    }
    
    .dosage-title {
        font-size: 1.25rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-price {
        text-align: left;
        width: 100%;
    }
    
    .reviews-average {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================================
   PRODUCT TABLE - 4 COLUMNS VISIBLE
   ============================================================ */

/* ------------------------------------------------------------
   DOSAGE FILTER TABS
   ------------------------------------------------------------ */
.dosage-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.dosage-filter-btn {
    padding: 10px 24px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dosage-filter-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.dosage-filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ------------------------------------------------------------
   PRICING TABLE
   ------------------------------------------------------------ */
.pricing-table-container {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--color-border);
    overflow: hidden;
    margin-bottom: 16px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead tr {
    background: var(--color-primary);
}

.pricing-table th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.pricing-table th:last-child {
    text-align: center;
}

/* Table Rows */
.pricing-row {
    border-bottom: 1.5px solid var(--color-border);
    transition: background var(--transition-fast);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: var(--color-bg-light);
}

.pricing-row.highlight-table-row {
    background: linear-gradient(90deg, rgba(42, 21, 112, 0.03) 0%, rgba(0, 124, 194, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
}

/* Quantity Cell */
.quantity-cell-table {
    padding: 16px 20px;
}

.quantity-main-text {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.quantity-subtext {
    font-size: 13px;
    color: var(--color-text-muted);
}

.best-value-tag {
    display: inline-block;
    background: #fbbf24;
    color: #1e293b;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Strength Cell */
.strength-cell-table {
    padding: 16px 20px;
}

.strength-badge-table {
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.strength-badge-table.highlight {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Price Cell */
.price-cell-table {
    padding: 16px 20px;
}

.original-price-table {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.current-price-table {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
}

.current-price-table.discount-price {
    color: #10b981;
}

.savings-badge {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    margin-top: 4px;
}

/* Shipping Cell (Hidden) */
.shipping-cell-table.d-none {
    display: none;
}

/* Action Cell */
.action-cell-table {
    padding: 16px 20px;
    text-align: center;
}

.table-add-cart-btn {
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.table-add-cart-btn:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-1px);
}

.table-add-cart-btn.highlight-btn {
    background: var(--color-primary);
}

.table-add-cart-btn.highlight-btn:hover {
    background: var(--color-primary-dark);
}

/* ------------------------------------------------------------
   WRITE REVIEW FORM
   ------------------------------------------------------------ */
.review-form-intro {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.write-review-form {
    max-width: 700px;
}

.rating-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-stars-input {
    display: flex;
    gap: 5px;
}

.rating-stars-input i {
    font-size: 24px;
    color: #facc15;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.rating-stars-input i:hover {
    transform: scale(1.1);
}

.rating-text-input {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   RESPONSIVE - MOBILE
   ------------------------------------------------------------ */
@media (max-width: 767.98px) {
    .pricing-table thead {
        display: none;
    }
    
    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }
    
    .pricing-row {
        padding: 16px;
        border-bottom: 2px solid var(--color-border);
        position: relative;
    }
    
    .pricing-row:last-child {
        border-bottom: none;
    }
    
    .pricing-row.highlight-table-row {
        border-left: none;
        border-top: 4px solid var(--color-primary);
    }
    
    .quantity-cell-table,
    .strength-cell-table,
    .price-cell-table,
    .action-cell-table {
        padding: 8px 0;
    }
    
    .quantity-cell-table {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .quantity-cell-table::before {
        content: 'Quantity:';
        font-size: 14px;
        font-weight: 600;
        color: var(--color-text);
    }
    
    .strength-cell-table {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .strength-cell-table::before {
        content: 'Strength:';
        font-size: 14px;
        font-weight: 600;
        color: var(--color-text);
    }
    
    .price-cell-table {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-top: 1px dashed var(--color-border);
        border-bottom: 1px dashed var(--color-border);
        margin: 8px 0;
    }
    
    .price-cell-table::before {
        content: 'Price:';
        font-size: 14px;
        font-weight: 600;
        color: var(--color-text);
    }
    
    .action-cell-table {
        padding-top: 12px;
    }
    
    .table-add-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .best-value-tag {
        margin-left: 10px;
    }
    
    .dosage-filter-tabs {
        flex-direction: column;
    }
    
    .dosage-filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .product-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .product-tab-btn {
        white-space: nowrap;
    }
}

/* ============================================================
   CART PAGE - CLEAN STYLING
   ============================================================ */

/* ------------------------------------------------------------
   CART ITEM WRAPPER
   ------------------------------------------------------------ */
.cart-item-wrapper {
    padding: 0.5rem 0;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
}

/* Cart Item Image */
.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Item Info */
.cart-item-info {
    min-width: 180px;
}

.cart-item-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.4;
}

.cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-unit-price {
    font-size: 13px;
    color: var(--color-text-muted);
}

.cart-item-unit-price strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Quantity Controls */
.cart-item-quantity {
    text-align: center;
}

.cart-qty-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.cart-quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color-bg-light);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--color-border);
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 12px;
}

.cart-qty-btn:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.cart-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
}

/* Item Subtotal */
.cart-item-subtotal {
    text-align: right;
    min-width: 100px;
}

.cart-subtotal-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.cart-subtotal-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Remove Button */
.cart-item-remove {
    display: flex;
    justify-content: flex-end;
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: #dc3545;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 14px;
}

.cart-remove-btn:hover {
    background: #dc3545;
    color: var(--color-white);
    border-color: #dc3545;
}

/* Clear All Button */
.cart-clear-all {
    font-size: 13px;
    color: #dc3545;
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
}

.cart-clear-all:hover {
    background: #fef2f2;
    color: #991b1b;
}

/* Divider */
.cart-divider {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1.5px solid var(--color-border);
    opacity: 0.7;
}

/* Continue Shopping Link */
.continue-shopping-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.continue-shopping-link:hover {
    color: var(--color-primary);
}

.continue-shopping-link i {
    transition: transform var(--transition-fast);
}

.continue-shopping-link:hover i {
    transform: translateX(-3px);
}

/* ------------------------------------------------------------
   ORDER SUMMARY
   ------------------------------------------------------------ */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.summary-row:first-of-type {
    padding-top: 0;
}

.summary-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.summary-row.total-row {
    padding: 16px 0 8px;
}

.summary-total-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
}

.summary-divider {
    margin: 1.2rem 0;
    border: 0;
    border-top: 1.5px solid var(--color-border);
}

/* Checkout Button */
.checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.checkout-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    color: var(--color-white);
}

/* Payment Methods */
.payment-methods-wrapper {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1.5px solid var(--color-border);
    text-align: center;
}

.payment-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.payment-icons i {
    font-size: 28px;
    color: var(--color-text);
    opacity: 0.7;
}

.secure-checkout {
    display: block;
    font-size: 12px;
    color: #16a34a;
}

.secure-checkout i {
    margin-right: 4px;
}

/* Empty Cart */
.empty-cart-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon i {
    font-size: 36px;
    color: var(--color-primary);
    opacity: 0.6;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .cart-item-row {
        grid-template-columns: 80px 1fr auto;
        gap: 15px;
    }
    
    .cart-item-subtotal {
        grid-column: 2;
        text-align: left;
        margin-top: 10px;
    }
    
    .cart-item-remove {
        grid-column: 3;
        grid-row: 1;
    }
    
    .cart-item-quantity {
        grid-column: 2 / span 2;
        text-align: left;
        margin-top: 10px;
    }
    
    .cart-quantity-control {
        width: fit-content;
    }
    
    .cart-qty-label {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .cart-item-row {
        grid-template-columns: 70px 1fr auto;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-title {
        font-size: 14px;
    }
    
    .cart-subtotal-value {
        font-size: 14px;
    }
    
    .summary-total-value {
        font-size: 20px;
    }
    
    .checkout-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ============================================================
   MY ACCOUNT PAGE STYLING
   ============================================================ */

/* Account Tabs */
.account-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0 0 -1px 0;
    border-bottom: 1.5px solid var(--color-border);
}

.account-tab-item {
    margin-bottom: 0;
}

.account-tab-btn {
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    border-bottom: 3px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.account-tab-btn i {
    color: var(--color-primary);
}

.account-tab-btn:hover {
    color: var(--color-primary);
}

.account-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.account-logout-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #dc3545;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.account-logout-btn:hover {
    background: #fef2f2;
    color: #991b1b;
}

/* Tab Scroll Hint - Mobile Only */
.tab-scroll-hint {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 8px;
    padding-bottom: 5px;
}

.tab-scroll-hint i {
    font-size: 10px;
    animation: swipeHint 1.5s ease-in-out infinite;
}

.tab-scroll-hint i:first-child {
    margin-right: 5px;
}

.tab-scroll-hint i:last-child {
    margin-left: 5px;
}

@keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(4px); opacity: 1; }
}

/* Account Section Title */
.account-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary-light);
}

/* Orders Table */
.orders-table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.orders-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--color-primary);
    background: var(--color-bg-light);
}

.orders-table td {
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text);
}

.orders-table tr:last-child td {
    border-bottom: none;
}

.orders-table tbody tr:hover {
    background: var(--color-bg-light);
}

.order-id {
    font-weight: 600;
    color: var(--color-primary);
}

.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: #fef3c7;
    color: #d97706;
}

.order-status.completed,
.order-status.delivered {
    background: #f0fdf4;
    color: #16a34a;
}

.order-status.cancelled {
    background: #fef2f2;
    color: #dc2626;
}

.order-status.processing {
    background: #eff6ff;
    color: #2563eb;
}

.order-status.pending {
    background: #fef3c7;
    color: #d97706;
}

.order-total {
    font-weight: 700;
    color: var(--color-primary);
}

.order-view-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.order-view-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Empty Orders */
.empty-orders {
    text-align: center;
    padding: 50px 20px;
}

.empty-orders .fa-shopping-bag {
    font-size: 56px;
    margin-bottom: 20px;
}

.empty-orders i {
    /* font-size: 56px; */
    color: var(--color-text-muted);
    opacity: 0.3;
    /* margin-bottom: 20px; */
}

.empty-orders h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.empty-orders p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Address Cards */
.address-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition-fast);
}

.address-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.address-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.address-title i {
    color: var(--color-primary);
}

.address-edit-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.address-edit-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.address-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-name {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
    font-size: 15px;
}

.address-line {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.address-contact {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--color-border);
    font-size: 13px;
    color: var(--color-text-muted);
}

.address-contact i {
    width: 20px;
    color: var(--color-primary);
}

/* Address Popup */
.address-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.address-popup-content {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.popup-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.popup-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.popup-close:hover {
    background: var(--color-bg-light);
    color: var(--color-text);
}

.popup-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ------------------------------------------------------------
   RESPONSIVE - MOBILE TAB VISIBILITY
   ------------------------------------------------------------ */
@media (max-width: 767.98px) {
    .account-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        position: relative;
        gap: 2px;
    }
    
    /* Scroll indicator shadow - right side */
    .account-tabs-nav::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to right, transparent, var(--color-white));
        pointer-events: none;
        z-index: 1;
    }
    
    /* Scroll indicator shadow - left side (when scrolled) */
    .account-tabs-nav::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to left, transparent, var(--color-white));
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .account-tabs-nav.scrolled::before {
        opacity: 1;
    }
    
    /* Custom scrollbar for better visibility */
    .account-tabs-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .account-tabs-nav::-webkit-scrollbar-track {
        background: var(--color-border);
        border-radius: 10px;
    }
    
    .account-tabs-nav::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px;
    }
    
    .account-tab-item {
        flex-shrink: 0;
    }
    
    .account-tab-item.ms-auto {
        margin-left: 0 !important;
    }
    
    .account-tab-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Active tab indicator more visible on mobile */
    .account-tab-btn.active {
        background: var(--color-primary-light);
        border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
        border-bottom-color: var(--color-primary);
    }
    
    .account-logout-btn {
        padding: 12px 16px;
        font-size: 13px;
        background: #fef2f2;
        border-radius: var(--border-radius-sm);
    }
    
    .account-logout-btn:hover {
        background: #fee2e2;
    }
    
    /* Make logout button stand out */
    .account-tab-item:last-child {
        margin-left: auto;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .order-view-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .address-popup-content {
        padding: 1.5rem;
        width: 100%;
        margin: 16px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-actions .btn-primary-solid,
    .popup-actions .btn-outline-view {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Medium devices */
@media (min-width: 768px) and (max-width: 991.98px) {
    .account-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .account-tab-item {
        flex-shrink: 0;
    }
    
    .orders-table {
        min-width: 600px;
    }
}

/* Add scroll detection script hint */
.tab-scroll-hint i.fa-chevron-right {
    animation: swipeRight 1.5s ease-in-out infinite;
}

.tab-scroll-hint i.fa-chevron-left {
    animation: swipeLeft 1.5s ease-in-out infinite;
}

@keyframes swipeRight {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
}

@keyframes swipeLeft {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(-5px); opacity: 1; }
}

/* ============================================================
   CHECKOUT PAGE - ENHANCED UX STYLING
   ============================================================ */

/* Checkout Progress Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1rem;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.checkout-step.active .step-circle {
    background: var(--color-primary);
    color: var(--color-white);
}

.checkout-step.completed .step-circle {
    background: #16a34a;
    color: var(--color-white);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.checkout-step.active .step-label {
    color: var(--color-primary);
}

.checkout-step.completed .step-label {
    color: #16a34a;
}

.step-line {
    width: 50px;
    height: 2px;
    background: var(--color-border);
    margin: 0 10px;
    margin-bottom: 20px;
}

.checkout-step.active ~ .step-line,
.checkout-step.completed ~ .step-line {
    background: var(--color-border);
}

/* Form Sections */
.checkout-form-section {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.checkout-form-section:hover {
    border-color: rgba(42, 21, 112, 0.2);
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.section-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.section-title-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.section-subtitle-text {
    font-size: 12.5px;
    color: var(--color-text-muted);
    margin: 0;
}

.section-body {
    padding: 20px;
}

.required {
    color: #dc3545;
}

/* Same as Billing Toggle */
.same-as-billing-wrapper {
    margin-bottom: 5px;
}

.same-as-billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.same-as-billing-toggle input {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background: var(--color-border);
    border-radius: 50px;
    position: relative;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform var(--transition-fast);
}

.same-as-billing-toggle input:checked + .toggle-slider {
    background: var(--color-primary);
}

.same-as-billing-toggle input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

/* Payment Method Cards */
.payment-method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.payment-method-card:hover {
    border-color: var(--color-primary);
}

.payment-method-card.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.payment-method-radio {
    flex-shrink: 0;
}

.payment-method-content {
    flex: 1;
}

.payment-method-label label {
    cursor: pointer;
    font-size: 14px;
}

.payment-method-check {
    color: var(--color-primary);
    font-size: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.payment-method-card.selected .payment-method-check {
    opacity: 1;
}

.payment-details-box {
    margin-left: 30px;
    margin-bottom: 10px;
    margin-top: -5px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Checkout Items List */
.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}

.checkout-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-item-image {
    width: 55px;
    height: 55px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
    position: relative;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checkout-item-unit-price {
    font-size: 11.5px;
    color: var(--color-text-muted);
}

.checkout-item-price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 14px;
    white-space: nowrap;
}

/* Shipping Mini Options */
.shipping-selection-box {
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    padding: 14px;
}

.shipping-option-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.shipping-option-mini:last-child {
    margin-bottom: 0;
}

.shipping-option-mini label {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
    margin: 0;
}

.shipping-option-mini label span:first-child {
    font-weight: 500;
    color: var(--color-text);
}

.shipping-mini-cost {
    font-weight: 700;
    color: var(--color-primary);
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    position: sticky;
    top: 170px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .order-summary-sidebar {
        position: static;
    }
    
    .checkout-steps {
        gap: 5px;
    }
    
    .step-line {
        width: 30px;
        margin: 0 5px;
    }
    
    .step-circle {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
}

@media (max-width: 767.98px) {
    .section-header {
        padding: 14px 16px;
    }
    
    .section-body {
        padding: 16px;
    }
    
    .section-number {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .section-title-text {
        font-size: 15px;
    }
    
    .checkout-steps {
        padding: 0 10px;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .step-line {
        width: 20px;
        margin: 0 3px;
    }
    
    .payment-method-card {
        padding: 12px 14px;
    }
    
    .checkout-item-image {
        width: 45px;
        height: 45px;
    }
    
    .checkout-item-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }
    
    .checkout-item-name {
        font-size: 12.5px;
    }
    
    .checkout-item-price {
        font-size: 13px;
    }
}

/* ============================================================
   ORDER SUCCESS PAGE - COMPLETE REDESIGN
   ============================================================ */

/* ------------------------------------------------------------
   SUCCESS HERO
   ------------------------------------------------------------ */
.order-success-hero {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #f5f3ff 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(22, 163, 74, 0.2);
    margin-bottom: 1.5rem;
}

.success-check-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
}

.checkmark-circle-bg {
    fill: none;
    stroke: #16a34a;
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: drawCircle 0.8s ease forwards;
}

.checkmark-path {
    stroke: #16a34a;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.4s ease 0.5s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.hero-heading {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hero-text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.hero-text strong {
    color: var(--color-text);
}

.hero-amount-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.amount-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.amount-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
}

.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #fef3c7;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #d97706;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d97706;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ------------------------------------------------------------
   ORDER SECTION CARDS
   ------------------------------------------------------------ */
.order-section-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color var(--transition-fast);
}

.order-section-card:hover {
    border-color: rgba(42, 21, 112, 0.15);
}

.section-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.section-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon-circle i {
    color: var(--color-primary);
    font-size: 16px;
}

.section-icon-circle.alt-icon {
    background: #eff6ff;
}

.section-icon-circle.alt-icon i {
    color: #2563eb;
}

.section-icon-circle.summary-icon {
    background: #fef3c7;
}

.section-icon-circle.summary-icon i {
    color: #d97706;
}

.section-icon-circle.info-icon-circle {
    background: #f0fdf4;
}

.section-icon-circle.info-icon-circle i {
    color: #16a34a;
}

.section-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.section-intro {
    font-size: 13.5px;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------
   COPY LINK BLOCK
   ------------------------------------------------------------ */
.copy-link-block {
    margin-bottom: 1.25rem;
}

.link-input-group {
    display: flex;
    align-items: stretch;
    background: var(--color-bg-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.link-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.link-input-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--color-text);
    outline: none;
    min-width: 0;
}

.link-input-field::selection {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.link-copy-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.link-copy-button:hover {
    background: var(--color-secondary-dark);
}

.link-copy-button.copied {
    background: #16a34a;
}

.link-copy-button .copied-text {
    display: none;
}

.link-copy-button.copied .copy-text {
    display: none;
}

.link-copy-button.copied .copied-text {
    display: inline;
}

.link-copy-button.copied i {
    animation: none;
}

/* ------------------------------------------------------------
   NOTE BOX
   ------------------------------------------------------------ */
.section-note-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    line-height: 1.6;
}

.note-icon {
    color: var(--color-primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.note-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.note-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.note-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.note-contact-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.note-contact-link i {
    font-size: 14px;
}

.note-contact-divider {
    color: var(--color-text-muted);
    font-size: 11px;
}

/* ------------------------------------------------------------
   ALTERNATE PAYMENTS
   ------------------------------------------------------------ */
.alt-payments-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alt-pay-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--color-bg-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.alt-pay-card:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.alt-pay-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alt-pay-icon-wrapper.green {
    background: #f0fdf4;
}

.alt-pay-icon-wrapper.green i {
    color: #16a34a;
}

.alt-pay-icon-wrapper.blue {
    background: #eff6ff;
}

.alt-pay-icon-wrapper.blue i {
    color: #2563eb;
}

.alt-pay-icon-wrapper.amber {
    background: #fef3c7;
}

.alt-pay-icon-wrapper.amber i {
    color: #d97706;
}

.alt-pay-icon-wrapper i {
    font-size: 17px;
}

.alt-pay-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alt-pay-info strong {
    font-size: 14px;
    color: var(--color-text);
}

.alt-pay-info span {
    font-size: 12px;
    color: var(--color-text-muted);
}

.alt-pay-arrow {
    color: var(--color-text-muted);
    font-size: 12px;
}

/* ------------------------------------------------------------
   ORDER SUMMARY
   ------------------------------------------------------------ */
.summary-product-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.summary-product-image {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}

.summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-qty-pill {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-primary);
    color: var(--color-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-product-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.summary-product-details strong {
    font-size: 14px;
    color: var(--color-text);
}

.summary-product-details span {
    font-size: 12px;
    color: var(--color-text-muted);
}

.summary-separator {
    margin: 0.75rem 0;
    border: 0;
    border-top: 1px solid var(--color-border);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.summary-line span:last-child {
    font-weight: 600;
    color: var(--color-text);
}

.summary-total-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(236, 233, 248, 0.4) 100%);
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--color-primary);
}

.summary-total-block span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.summary-total-block span:last-child {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
}

/* ------------------------------------------------------------
   IMPORTANT INFO LIST
   ------------------------------------------------------------ */
.important-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.important-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.important-info-item:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
}

.item-check {
    color: #16a34a;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.important-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 3px;
}

.important-info-item p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ------------------------------------------------------------
   ACTION BUTTONS
   ------------------------------------------------------------ */
.action-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 0.5rem;
}

.action-buttons-row .btn-primary-solid,
.action-buttons-row .btn-outline-view {
    flex: 1;
    min-width: 180px;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 767.98px) {
    .order-success-hero {
        padding: 2rem 1rem;
    }
    
    .hero-amount-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .order-section-card {
        padding: 1.25rem;
    }
    
    .link-input-group {
        flex-wrap: wrap;
    }
    
    .link-prefix {
        /* width: 100%; */
        height: 34px;
        border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    }
    
    .link-input-field {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
    }
    
    .link-copy-button {
        width: 100%;
        justify-content: center;
        border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    }
    
    .note-contacts {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .note-contact-divider {
        display: none;
    }
    
    .action-buttons-row {
        flex-direction: column;
    }
    
    .action-buttons-row .btn-primary-solid,
    .action-buttons-row .btn-outline-view {
        width: 100%;
    }
}

/* ============================================================
   VIEW ORDER PAGE - SIMPLIFIED STYLING
   ============================================================ */

/* Order Status Bar */
.order-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.status-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.order-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.order-status.pending {
    background: #fef3c7;
    color: #d97706;
}

.order-status.processing {
    background: #eff6ff;
    color: #2563eb;
}

.order-status.shipped {
    background: #f5f3ff;
    color: #7c3aed;
}

.order-status.completed,
.order-status.delivered {
    background: #f0fdf4;
    color: #16a34a;
}

.order-status.cancelled {
    background: #fef2f2;
    color: #dc2626;
}

.status-date {
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--color-primary);
}

/* Order Items Compact */
.order-items-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.order-item-compact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
}

.item-image {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.item-price-qty {
    font-size: 12.5px;
    color: var(--color-text-muted);
}

.item-line-total {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* Order Summary Totals */
.order-summary-totals {
    padding: 16px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.order-summary-totals .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.order-summary-totals .summary-row span:last-child {
    font-weight: 600;
    color: var(--color-text);
}

.order-summary-totals .summary-row.total {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1.5px solid var(--color-border);
}

.order-summary-totals .summary-row.total span {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Shipping Info Text */
.shipping-info-text {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 10px 14px;
    background: var(--color-primary-light);
    border-radius: var(--border-radius-sm);
}

.shipping-info-text i {
    color: var(--color-primary);
}

/* Help Note */
.help-note {
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.help-note a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.help-note a:hover {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 767.98px) {
    .order-status-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-item-compact {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .item-image {
        width: 44px;
        height: 44px;
    }
    
    .item-line-total {
        width: 100%;
        text-align: right;
        padding-left: 58px;
    }
    
    .order-summary-totals {
        padding: 12px;
    }
}

/* ============================================================
   QR PAYMENT PAGE - POLISHED STYLING
   ============================================================ */

/* Payment Main Card */
.payment-main-card {
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--color-border);
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 500px;
}

/* ------------------------------------------------------------
   QR COLUMN (LEFT)
   ------------------------------------------------------------ */
.payment-qr-col {
    background: linear-gradient(180deg, #faf9ff 0%, #f5f3ff 100%);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1.5px solid var(--color-border);
}

.qr-outer-wrapper {
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.qr-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.qr-label-badge i {
    font-size: 14px;
}

/* QR Image Container - Made Larger */
.qr-image-container {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--color-border);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.qr-img {
    width: 100%;
    /* max-width: 260px; */
    height: auto;
    display: block;
    margin: 0 auto;
}

.qr-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    gap: 12px;
}

.qr-fallback i {
    font-size: 60px;
    opacity: 0.25;
}

.qr-fallback span {
    font-size: 14px;
}

/* Scanner ID Wrapper */
.qr-scanner-id-wrapper {
    text-align: center;
}

.scanner-id-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.qr-scanner-id {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    max-width: 100%;
}

.scanner-id-text {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 600;
    word-break: break-all;
    flex: 1;
    text-align: left;
}

.copy-scanner-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.copy-scanner-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.copy-scanner-btn.copied {
    background: #16a34a;
    color: var(--color-white);
    border-color: #16a34a;
}

/* ------------------------------------------------------------
   INFO COLUMN (RIGHT)
   ------------------------------------------------------------ */
.payment-info-col {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-main-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.info-description {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Privacy Callout */
.privacy-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--color-primary);
}

.privacy-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-icon-wrap i {
    color: var(--color-white);
    font-size: 14px;
}

.privacy-text {
    font-size: 13.5px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

.privacy-text strong {
    color: var(--color-primary-dark);
}

/* Scanner Note */
.scanner-note {
    font-size: 13px;
    color: var(--color-text-muted);
    /* display: flex; */
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    line-height: 1.5;
}

.scanner-note i {
    color: var(--color-primary);
    margin-top: 2px;
}

.scanner-note strong {
    color: var(--color-text);
}

/* Mandatory Box */
.mandatory-box {
    padding: 16px 18px;
    background: #fff7ed;
    border: 1.5px solid #fbbf24;
    border-radius: var(--border-radius-sm);
}

.mandatory-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mandatory-header i {
    color: #dc2626;
    font-size: 15px;
}

.pulse-icon {
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.mandatory-header span {
    font-size: 13px;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mandatory-text {
    font-size: 13.5px;
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

.mandatory-text strong {
    color: #dc2626;
}

/* Receipt Submit Section */
.receipt-submit-section {
    margin-top: 0.5rem;
}

.receipt-submit-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}

.receipt-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.receipt-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--color-bg-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.receipt-option-card:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.option-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon-bg {
    background: #f0fdf4;
}

.email-icon-bg i {
    color: #16a34a;
    font-size: 18px;
}

.whatsapp-icon-bg {
    background: #f0fdf4;
}

.whatsapp-icon-bg i {
    color: #25d366;
    font-size: 20px;
}

.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.option-method {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.option-address {
    font-size: 12.5px;
    color: var(--color-text-muted);
    word-break: break-all;
}

.option-arrow {
    color: var(--color-text-muted);
    font-size: 13px;
    transition: all var(--transition-fast);
}

.receipt-option-card:hover .option-arrow {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* Payment Help Bar */
.payment-help-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    margin-top: 1rem;
    font-size: 14px;
    color: var(--color-text);
    text-align: center;
    flex-wrap: wrap;
}

.payment-help-bar i {
    color: var(--color-primary);
}

.help-bar-link {
    color: var(--color-secondary);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.help-bar-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .payment-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .payment-qr-col {
        border-right: none;
        border-bottom: 1.5px solid var(--color-border);
        padding: 2rem 1.5rem;
    }
    
    .payment-info-col {
        padding: 2rem 1.5rem;
    }
    
    .qr-image-container {
        min-height: 250px;
        padding: 1rem;
    }
    
    .qr-img {
        /* max-width: 220px; */
    }
}

@media (max-width: 767.98px) {
    .payment-qr-col {
        padding: 1.5rem 1rem;
    }
    
    .payment-info-col {
        padding: 1.5rem 1rem;
    }
    
    .qr-image-container {
        min-height: 220px;
        padding: 0.75rem;
    }
    
    .qr-img {
        /* max-width: 180px; */
    }
    
    .info-main-heading {
        font-size: 18px;
    }
    
    .privacy-callout {
        padding: 12px 14px;
    }
    
    .receipt-option-card {
        padding: 12px 14px;
    }
    
    .option-icon-wrap {
        width: 38px;
        height: 38px;
    }
    
    .qr-label-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .qr-outer-wrapper {
        max-width: 280px;
    }
}