/* ============================================================
   WigVo — Global Stylesheet (Vietnamese Fashion E-Commerce Style)
   File: views/css/wigvo.css
   ============================================================ */

/* Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');



/* --- 1. CSS Variables & Reset --- */
:root {
    --berry-pink: #e91e63;
    --berry-dark: #c2185b;
    --rose-gold: #e0a96d;
    --charcoal: #141414;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --border: #e8e8e8;
    --text-muted: #888;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
    --radius: 8px;
    --transition: all .2s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--charcoal);
    background: var(--white);
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- 2. Announcement Bar --- */
.announce-bar {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 7px 16px;
    font-size: 13px;
    letter-spacing: .3px;
}

.announce-bar span {
    color: var(--rose-gold);
    font-weight: 700;
}

/* --- 3. Header --- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 0;
}

.header-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--charcoal);
    white-space: nowrap;
    flex-shrink: 0;
    /* Logo stands alone — everything else pushed right */
}

.header-logo span {
    color: var(--berry-pink);
}

.header-search {
    margin-left: auto;
    /* pushes search + actions to the right */
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    overflow: hidden;
    max-width: 480px;
    transition: border-color .2s, box-shadow .2s;
}

.header-search:focus-within {
    border-color: var(--berry-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, .1);
    background: var(--white);
}

.header-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 13.5px;
    font-family: var(--font-main);
    background: transparent;
    color: var(--charcoal);
}

.header-search input::placeholder {
    color: #aaa;
}

.header-search button {
    background: var(--berry-pink);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    border-radius: 0 40px 40px 0;
    flex-shrink: 0;
}

.header-search button:hover {
    background: var(--berry-dark);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: 20px;
}

.header-actions a {
    font-size: 13px;
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}

.header-actions a:hover {
    color: var(--berry-pink);
}

.header-actions .action-icon {
    font-size: 22px;
    line-height: 1;
}

.header-actions .action-icon i {
    font-size: 22px;
}

.header-actions .action-label {
    font-size: 11px;
}

.cart-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--berry-pink);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --- 4. Category Navigation --- */
.cat-nav {
    background: var(--white);
    border-bottom: 2px solid var(--berry-pink);
}

.cat-nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.cat-nav-link {
    display: block;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.cat-nav-link:hover,
.cat-nav-link.active {
    color: var(--berry-pink);
    border-bottom-color: var(--berry-pink);
}

.cat-nav-link.hot {
    color: var(--berry-pink);
}

/* --- 5. Full-Bleed Fullscreen Cinema Hero Stage + Floating Glass HUD --- */
.hero-fullbleed-stage {
    position: relative;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background: #0B050C !important;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-fullbleed-stage * {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.fullbleed-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.88) contrast(1.05);
    transform: scale(1.03);
    transition: transform 10s ease;
    z-index: 1;
    will-change: transform;
}

.fullbleed-overlay-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 5, 12, 0.12) 0%, rgba(11, 5, 12, 0.4) 75%, rgba(11, 5, 12, 0.65) 100%);
    z-index: 2;
}

.fullbleed-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 3;
}

.fullbleed-center-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
    transform-style: preserve-3d;
    will-change: transform;
}

.fullbleed-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fullbleed-badge-gold {
    background: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 99px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.5);
}

.fullbleed-badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    color: #FFFFFF !important;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 99px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullbleed-badge-glass:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pulse-emerald-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    display: inline-block;
}

.fullbleed-title {
    font-size: 60px;
    font-weight: 900;
    color: #FFFFFF !important;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-top: 16px;
    margin-bottom: 22px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.98)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95));
}

.fullbleed-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFB6C1 20%, #FF1493 45%, #FFD700 80%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.85);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 1)) drop-shadow(0 0 35px rgba(255, 20, 147, 0.75)) drop-shadow(0 0 14px rgba(255, 215, 0, 0.6));
    animation: goldShimmer 5s ease infinite;
    position: relative;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fullbleed-subtitle {
    font-size: 17.5px;
    color: #FFFFFF !important;
    max-width: 640px;
    line-height: 1.65;
    font-weight: 500;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.95));
}

.fullbleed-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fullbleed-btn-primary {
    background: linear-gradient(135deg, #FF4D6D 0%, #E91E63 100%) !important;
    color: #FFFFFF !important;
    padding: 18px 42px !important;
    border-radius: 99px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    border: none !important;
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.55) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.fullbleed-btn-primary:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 20px 45px rgba(233, 30, 99, 0.75) !important;
    color: #FFFFFF !important;
}

.fullbleed-btn-glass {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    color: #FFFFFF !important;
    padding: 18px 36px !important;
    border-radius: 99px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.fullbleed-btn-glass:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: #FFFFFF !important;
    transform: translateY(-3px) !important;
}



.text-pink { color: #F472B6 !important; }
.text-emerald { color: #10B981 !important; }
.text-gold { color: #FBBF24 !important; }

@media (max-width: 991px) {
    .fullbleed-title { font-size: 36px; }
    .hud-bar-container { flex-wrap: wrap; border-radius: 24px; padding: 16px; gap: 12px; }
    .hud-divider { display: none; }
    .hero-fullbleed-stage { padding: 60px 0 160px 0; }
}

/* --- 6. Section Headers --- */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--charcoal);
    position: relative;
    padding-left: 14px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--berry-pink);
    border-radius: 2px;
}

.section-link {
    font-size: 13px;
    color: var(--berry-pink);
    font-weight: 600;
}

.section-link:hover {
    text-decoration: underline;
}

/* --- 7. Product Card & AI Match Badges --- */
.wigvo-ai-match-badge,
.badge-match {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(14, 7, 18, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    color: #FFFFFF !important;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.wigvo-ai-match-badge i,
.badge-match i {
    color: #FBBF24 !important;
    font-size: 12px;
}

.shopee-card:hover .wigvo-ai-match-badge,
.product-card:hover .badge-match {
    background: rgba(233, 30, 99, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5) !important;
}

/* --- 8. Real-Time 24h Order Progress Timeline --- */
.wigvo-timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 10px;
    background: #faf5f8;
    border-radius: 16px;
    border: 1px solid rgba(233, 30, 99, 0.12);
    overflow-x: auto;
}

.wigvo-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 70px;
    position: relative;
    z-index: 2;
}

.wigvo-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.wigvo-timeline-step.active .wigvo-step-icon {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.35);
}

.wigvo-step-title {
    font-size: 11px;
    font-weight: 800;
    color: #475569;
    margin-top: 6px;
    white-space: nowrap;
}

.wigvo-timeline-step.active .wigvo-step-title {
    color: #e91e63;
}

.wigvo-step-time {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 2px;
}

.wigvo-timeline-line {
    height: 3px;
    flex-grow: 1;
    background: #cbd5e1;
    margin: 0 -6px 20px -6px;
    transition: all 0.3s ease;
}

.wigvo-timeline-line.active {
    background: linear-gradient(90deg, #e91e63, #f43f5e);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: #ddd;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--light-bg);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--berry-pink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
}

.product-badge.new {
    background: var(--charcoal);
}

.product-badge.sale {
    background: #f44336;
}

.product-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.product-wishlist:hover {
    background: var(--berry-pink);
    color: var(--white);
}

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, .85);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.product-info {
    padding: 12px 14px 14px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--berry-pink);
}

.product-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-rating {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.product-rating span {
    color: #f59e0b;
}

/* --- 8. Flash Sale Bar --- */
.flash-bar {
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 0;
}

.flash-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flash-label .fire {
    font-size: 22px;
}

.countdown {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 20px;
}

.countdown-box {
    background: var(--berry-pink);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 800;
    min-width: 48px;
    text-align: center;
}

.countdown-sep {
    font-size: 20px;
    font-weight: 800;
}

/* --- 9. Category Pills --- */
.cat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: var(--radius);
    background: var(--light-bg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.cat-pill:hover {
    border-color: var(--berry-pink);
    background: #fff0f4;
    color: var(--berry-pink);
}

.cat-pill-icon {
    font-size: 30px;
}

.cat-pill-name {
    font-size: 13px;
    font-weight: 600;
}

/* --- 10. Promo Banners --- */
.promo-banner {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    padding: 24px;
}

.promo-banner-1 {
    background: linear-gradient(135deg, #1a0a11, #3d0020);
}

.promo-banner-2 {
    background: linear-gradient(135deg, #0a1628, #0d2545);
}

.promo-banner-text {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.promo-banner-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.promo-banner-text p {
    font-size: 13px;
    opacity: .8;
    margin-bottom: 14px;
}

.promo-btn {
    display: inline-block;
    background: var(--white);
    color: var(--charcoal);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.promo-btn:hover {
    background: var(--berry-pink);
    color: var(--white);
}

/* --- 11. Footer --- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .75);
    padding: 48px 0 0;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--berry-pink);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--berry-pink);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--rose-gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer-bottom {
    margin-top: 36px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

/* --- 12. Page hero (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal), #2d0a1e);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 32px;
}

.page-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
}

.page-hero p {
    opacity: .7;
    font-size: 14px;
}

/* --- 13. Breadcrumb --- */
.breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--berry-pink);
}

.breadcrumb span {
    color: var(--charcoal);
    font-weight: 600;
}

/* --- 14. Filter Sidebar --- */
.filter-sidebar {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--white);
}

.filter-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    cursor: pointer;
}

.filter-check input {
    accent-color: var(--berry-pink);
}

/* --- 15. Sort Bar --- */
.sort-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 13px;
}

.sort-bar label {
    font-weight: 600;
    white-space: nowrap;
}

.sort-bar select {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    outline: none;
    font-family: var(--font-main);
}

.sort-bar select:focus {
    border-color: var(--berry-pink);
}

/* --- 16. Product Detail --- */
.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 3/4;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--berry-pink);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-detail-sku {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--berry-pink);
    margin-bottom: 4px;
}

.product-detail-price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 16px;
}

.product-detail-rating {
    font-size: 13px;
    margin-bottom: 16px;
}

.product-detail-rating span {
    color: #f59e0b;
}

.option-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.option-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.option-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
    font-family: var(--font-main);
}

.option-btn.active,
.option-btn:hover {
    border-color: var(--berry-pink);
    color: var(--berry-pink);
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.qty-box button {
    width: 36px;
    height: 40px;
    border: none;
    background: var(--light-bg);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.qty-box button:hover {
    background: var(--berry-pink);
    color: var(--white);
}

.qty-box input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    font-family: var(--font-main);
}

.btn-add-cart {
    flex: 1;
    padding: 13px;
    background: var(--berry-pink);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-add-cart:hover {
    background: var(--berry-dark);
}

.btn-buy-now {
    flex: 1;
    padding: 13px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-buy-now:hover {
    background: #333;
}

/* --- 17. Cart Table --- */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-product-img {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-product-name {
    font-size: 14px;
    font-weight: 600;
}

.cart-product-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.cart-remove {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.cart-remove:hover {
    color: #f44336;
}

.cart-summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--white);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row:last-child {
    border-bottom: none;
}

.cart-summary-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--berry-pink);
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--berry-pink);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-family: var(--font-main);
    margin-top: 16px;
}

.btn-checkout:hover {
    background: var(--berry-dark);
}

/* --- 18. Auth Form --- */
.auth-card {
    max-width: 440px;
    margin: 60px auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.auth-logo {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px;
}

.auth-logo span {
    color: var(--berry-pink);
}

.auth-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.form-input:focus {
    border-color: var(--berry-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, .1);
}

.form-group {
    margin-bottom: 16px;
}

.btn-form {
    width: 100%;
    padding: 13px;
    background: var(--berry-pink);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    margin-top: 8px;
}

.btn-form:hover {
    background: var(--berry-dark);
}

.auth-divider {
    text-align: center;
    margin: 16px 0;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-switch {
    text-align: center;
    font-size: 13px;
    margin-top: 16px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--berry-pink);
    font-weight: 700;
}

/* --- 19. AI Chat --- */
.chat-container {
    max-width: 700px;
    margin: 40px auto;
}

.chat-header {
    background: linear-gradient(135deg, var(--charcoal), #2d0a1e);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--berry-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.chat-info-name {
    font-size: 16px;
    font-weight: 700;
}

.chat-info-status {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.chat-messages {
    background: var(--light-bg);
    padding: 24px;
    min-height: 360px;
    max-height: 480px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.msg-bot {
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.msg-user {
    background: var(--berry-pink);
    color: var(--white);
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.chat-input-row {
    display: flex;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    background: var(--white);
}

.chat-input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    outline: none;
    font-family: var(--font-main);
}

.chat-send {
    background: var(--berry-pink);
    color: var(--white);
    border: none;
    padding: 0 22px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.chat-send:hover {
    background: var(--berry-dark);
}

/* --- 20. Responsive --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-img-wrap {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .cat-nav-inner {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .cat-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .header-logo {
        font-size: 22px;
    }

    .hero-title {
        font-size: 28px;
    }

    .product-detail-name {
        font-size: 20px;
    }
}

/* FIX THEME/WOOCOMMERCE ICON INJECTION CONFLICTS */
.header-actions a::before,
.header-actions a::after {
    display: none !important;
    content: none !important;
}

.header-actions .action-icon i::before {
    display: inline-block !important;
}

/* Top Announcement Bar (Smooth Infinite Marquee Ticker) */
.announce-bar-premium {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 7px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    z-index: 1040;
}

.announce-marquee-track {
    display: flex;
    width: max-content;
    animation: wigvoMarquee 28s linear infinite;
}

.announce-marquee-track:hover {
    animation-play-state: paused;
}

.announce-marquee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}

.announce-marquee-content span {
    color: #ffffff !important;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.announce-marquee-content .marquee-divider {
    color: var(--berry-pink) !important;
    font-size: 13px;
}

@keyframes wigvoMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Header Desktop vs Mobile media query visibility */
@media (min-width: 992px) {
    .site-header-desktop {
        display: block !important;
    }

    .site-header-mobile {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .site-header-desktop {
        display: none !important;
    }

    .site-header-mobile {
        display: block !important;
    }
}

/* ============================================================
   1. DESKTOP / PC HEADER STYLES (>= 992px)
   ============================================================ */
.site-header-desktop {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eaeaea;
    z-index: 1030;
}

.desktop-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 74px;
}

.desktop-header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.desktop-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.desktop-nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #1d1b1f;
    text-decoration: none;
    letter-spacing: 1.5px;
    padding: 10px 0;
    position: relative;
    white-space: nowrap !important;
    transition: color 0.25s ease;
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: var(--berry-pink);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.desktop-nav-link:hover,
.desktop-nav-link.active {
    color: var(--berry-pink);
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after {
    width: 100%;
}

.desktop-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Luxury Expandable Desktop Search */
.desktop-search-expandable {
    position: relative;
    display: flex;
    align-items: center;
}

.search-trigger-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f7;
    border: none;
    color: #1d1b1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.search-trigger-btn:hover,
.desktop-search-expandable.active .search-trigger-btn {
    background: var(--berry-pink);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(248, 93, 153, 0.3);
}

.search-input-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--berry-pink);
    border-radius: 99px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
}

.desktop-search-expandable.active .search-input-wrap {
    width: 270px;
    opacity: 1;
    visibility: visible;
}

.search-input-wrap input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 13.5px;
    background: transparent;
    color: #111111;
}

.search-submit-btn {
    background: var(--berry-pink);
    color: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.search-submit-btn:hover {
    background: #d63384;
}

/* ============================================================
   2. MOBILE BROWSER HEADER STYLES (< 992px)
   ============================================================ */
.site-header-mobile {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eaeaea;
    z-index: 1030;
}

.announce-bar-mobile {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.mobile-header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
}

.mobile-menu-toggle-btn,
.mobile-action-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #1d1b1f;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-search-dropdown {
    display: none;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 16px;
}

.mobile-search-dropdown.active {
    display: block;
}

.mobile-search-dropdown form {
    display: flex;
    gap: 8px;
}

.mobile-search-dropdown input {
    flex: 1;
    background: #f5f5f7;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
}

.mobile-search-dropdown button {
    background: var(--berry-pink);
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
}

/* Old Header Legacy Fallbacks */
.header-logo-premium {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.header-logo-premium span {
    color: var(--berry-pink);
}

/* Right Actions */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

.header-search-compact {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
    width: 180px;
    transition: border-color 0.2s;
}

.header-search-compact:focus-within {
    border-color: #000;
}

.header-search-compact input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    background: transparent;
}

.header-search-compact button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    padding: 0 8px 0 0;
}

.action-btn {
    color: #333;
    font-size: 22px;
    text-decoration: none;
    transition: 0.2s;
    line-height: 1;
}

.action-btn:hover {
    color: #000;
    transform: scale(1.05);
}

.cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge-premium {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--berry-pink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* BLOCK WOOCOMMERCE ROGUE ICON INJECTIONS */
.header-right a::before,
.header-right a::after {
    display: none !important;
    content: none !important;
}

.header-right .action-btn i::before {
    display: inline-block !important;
}

@media (max-width: 991px) {
    .header-left {
        display: none;
    }

    .header-search-compact {
        display: none;
    }

    .modern-header-inner {
        height: 60px;
    }
}


/* =========================================

/* ============================================================
   PURE VANILLA CSS — PRODUCT DETAIL PAGE (NO BOOTSTRAP DEPENDENCY)
   ============================================================ */

.pd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
    font-family: var(--font-main, 'Plus Jakarta Sans', sans-serif);
    color: #111827;
    box-sizing: border-box;
}

/* Breadcrumb */
.pd-breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pd-breadcrumb a:hover {
    color: #111827;
}

.pd-breadcrumb span {
    color: #111827;
    font-weight: 600;
}

/* Main Grid Layout */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 991px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Gallery */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-gallery-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-badge-sale {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #111827;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}

.pd-gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.pd-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.pd-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.pd-thumb {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.pd-thumb:hover,
.pd-thumb.active {
    opacity: 1;
    border-color: #111827;
}

/* Product Info Right Column */
.pd-info {
    display: flex;
    flex-direction: column;
}

.pd-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.pd-reviews {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.pd-review-count {
    color: #6b7280;
}

.pd-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.pd-price,
.pd-price .woocommerce-Price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
}

.pd-price .woocommerce-Price-currencySymbol {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 4px;
}

.pd-old-price,
.pd-old-price .woocommerce-Price-amount {
    font-size: 1.35rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
}

.pd-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 28px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 20px;
}

/* Options */
.pd-options-group {
    margin-bottom: 20px;
}

.pd-option-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pd-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-option-btn {
    border: 1.5px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.pd-option-btn:hover {
    border-color: #111827;
    background: #f9fafb;
}

.pd-option-btn.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

/* Form Action Row */
.pd-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.pd-qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    height: 52px;
    width: 120px;
    flex-shrink: 0;
    background: #ffffff;
    overflow: hidden;
}

.pd-qty-selector button {
    background: transparent;
    border: none;
    width: 38px;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    transition: background 0.15s ease;
}

.pd-qty-selector button:hover {
    background: #f3f4f6;
}

.pd-qty-selector input {
    border: none;
    width: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    padding: 0;
    background: transparent;
    appearance: textfield;
}

.pd-qty-selector input::-webkit-outer-spin-button,
.pd-qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pd-qty-selector input:focus {
    outline: none;
}

.pd-btn-submit {
    flex: 1;
    height: 52px;
    background-color: var(--berry-pink, #e91e63);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.35);
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
}

.pd-btn-submit:hover {
    background-color: var(--berry-dark, #c2185b);
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.45);
    transform: translateY(-1px);
}

.pd-btn-wishlist {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    border-radius: 8px;
    font-size: 1.25rem;
    color: #374151;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease;
}

.pd-btn-wishlist:hover {
    border-color: var(--berry-pink, #e91e63);
    color: var(--berry-pink, #e91e63);
    background: #fff5f8;
}

/* Features List */
.pd-features {
    border-top: 1px solid #f3f4f6;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pd-feature-item i {
    font-size: 24px;
    color: #111827;
    width: 32px;
    text-align: center;
}

.pd-feature-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.pd-feature-item p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

/* Tabs Section */
.pd-tabs-wrapper {
    margin-top: 56px;
}

.pd-tab-headers {
    display: flex;
    gap: 36px;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 24px;
}

.pd-tab-link {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #9ca3af;
    padding: 0 0 16px 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    transition: color 0.2s ease;
}

.pd-tab-link:hover {
    color: #111827;
}

.pd-tab-link.active {
    color: #111827;
}

.pd-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--berry-pink, #e91e63);
    border-radius: 2px 2px 0 0;
}

.pd-tab-panel {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    display: none;
}

.pd-tab-panel.active {
    display: block;
}

.pd-tab-panel p {
    margin-bottom: 12px;
}

/* Form Action Row Pixel-Perfect Alignment */
.pd-action-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 28px !important;
    margin-bottom: 32px !important;
}

.pd-qty-selector {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    height: 52px !important;
    width: 120px !important;
    flex-shrink: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.pd-qty-selector button {
    background: transparent !important;
    border: none !important;
    width: 36px !important;
    height: 100% !important;
    font-size: 14px !important;
    color: #111827 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    transition: background 0.15s ease !important;
}

.pd-qty-selector button i {
    font-size: 14px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pd-qty-selector button:hover {
    background: #f3f4f6 !important;
}

.pd-qty-selector input {
    border: none !important;
    width: 48px !important;
    height: 100% !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    line-height: 52px !important;
    -moz-appearance: textfield !important;
}

.pd-qty-selector input::-webkit-outer-spin-button,
.pd-qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.pd-qty-selector input:focus {
    outline: none !important;
}

.pd-btn-submit {
    flex: 1 !important;
    height: 52px !important;
    background-color: var(--berry-pink, #e91e63) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.3) !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 24px !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.pd-btn-submit i {
    font-size: 18px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.pd-btn-submit:hover {
    background-color: var(--berry-dark, #c2185b) !important;
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4) !important;
    transform: translateY(-1px) !important;
}

.pd-btn-tryon {
    flex: 1 !important;
    height: 52px !important;
    background: linear-gradient(135deg, #701a75 0%, #4c0519 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(112, 26, 117, 0.3) !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 20px !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.pd-btn-tryon i {
    font-size: 18px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.pd-btn-tryon:hover {
    background: linear-gradient(135deg, #581c87 0%, #310410 100%) !important;
    box-shadow: 0 6px 20px rgba(112, 26, 117, 0.4) !important;
    transform: translateY(-1px) !important;
}

.pd-btn-tryon.disabled {
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

.pd-btn-wishlist {
    width: 52px !important;
    height: 52px !important;
    flex-shrink: 0 !important;
    border: 1.5px solid #e5e7eb !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    font-size: 1.25rem !important;
    color: #374151 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

.pd-btn-wishlist i {
    font-size: 20px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pd-btn-wishlist:hover {
    border-color: var(--berry-pink, #e91e63) !important;
    color: var(--berry-pink, #e91e63) !important;
    background: #fff5f8 !important;
}

/* ============================================================

/* ============================================================
   WIGVO LUXURY DEALS — E-COMMERCE GRID (DIGITAL COUTURE PALETTE)
   ============================================================ */

.shopee-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* 1. Flash Sale Section */
.shopee-flash-section {
    background: #ffffff;
    padding: 24px 0 32px 0;
    margin-bottom: 32px;
}

.shopee-flash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, #141414 0%, #2b0c1e 60%, var(--berry-pink) 100%);
    border-radius: 12px 12px 0 0;
    color: #ffffff;
}

.shopee-flash-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.shopee-flash-title .flash-icon {
    color: #ffeb3b;
    font-size: 1.4rem;
}

.shopee-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.shopee-countdown .timer-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', monospace;
    font-size: 15px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shopee-see-all {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
}

.shopee-see-all:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Grid Layout for Cards */
.shopee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    background: #f8f8f8;
    padding: 16px;
    border-radius: 0 0 12px 12px;
}

@media (max-width: 576px) {
    .shopee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
}

/* Card Styling - Luxury Digital Couture */
.shopee-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.shopee-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 36px -6px rgba(233, 30, 99, 0.18);
    border-color: rgba(233, 30, 99, 0.35);
}

.shopee-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F8F6F4;
}

.shopee-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shopee-card:hover .shopee-img-box img {
    transform: scale(1.08);
}

/* Badges on Image */
.shopee-mall-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(18, 12, 18, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.shopee-favorite-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.92), rgba(216, 27, 96, 0.95));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    z-index: 3;
}

.shopee-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 10, 16, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 3;
}

/* Card Body */
.shopee-card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    background: #ffffff;
}

.shopee-title {
    font-size: 14.5px;
    line-height: 1.4;
    color: #1A1618;
    font-weight: 700;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
    transition: color 0.2s ease;
}

.shopee-card:hover .shopee-title {
    color: var(--berry-pink);
}

.shopee-badge-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.shopee-tag-freeship {
    background: rgba(16, 185, 129, 0.08) !important;
    color: #059669 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.shopee-tag-voucher {
    background: rgba(233, 30, 99, 0.08) !important;
    color: #D81B60 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(233, 30, 99, 0.25) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.shopee-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.shopee-price,
.shopee-price .woocommerce-Price-amount {
    color: var(--berry-pink) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -0.3px;
}

.shopee-old-price,
.shopee-old-price .woocommerce-Price-amount {
    color: #9CA3AF !important;
    font-size: 12.5px !important;
    text-decoration: line-through !important;
}

/* Progress Bar for Stock */
.shopee-progress-bar {
    position: relative;
    height: 18px;
    background: #fdf2f7;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 4px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.shopee-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1E121E 0%, var(--berry-pink) 100%);
    border-radius: 10px;
}

.shopee-progress-text {
    position: relative;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Meta Row (Stars & Sold Count) */
.shopee-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8A7078;
    margin-top: 6px;
}

.shopee-stars {
    color: #f59e0b;
    font-weight: 700;
}

.shopee-sold {
    color: #6b7280;
    font-weight: 500;
}

/* 2. Daily Discoveries / Tabs Section */
.shopee-discover-section {
    background: #f8f8f8;
    padding: 24px 0 48px 0;
}

.shopee-tab-header {
    display: flex;
    background: #ffffff;
    border-bottom: 3px solid var(--berry-pink);
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.shopee-tab-item {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    font-size: 15px;
    font-weight: 800;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shopee-tab-item.active {
    color: var(--berry-pink);
    background: #fff5f8;
}

.shopee-tab-item:hover {
    color: var(--berry-pink);
}

/* ============================================================
   WIGVO ULTRA EYE-CATCHING DEALS & CATEGORY BUBBLES
   ============================================================ */

/* 1. Category Circle Bubbles (Instagram / Shopee Story Luxury Style) */
.cat-bubble-wrapper {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cat-bubble-wrapper::-webkit-scrollbar {
    display: none;
}

.cat-bubble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    flex-shrink: 0;
    width: 100px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.cat-bubble-item:hover {
    transform: translateY(-6px) scale(1.06);
}

.cat-bubble-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3.5px;
    background: linear-gradient(135deg, #ff4d6d 0%, #e91e63 45%, #f59e0b 100%);
    box-shadow: 0 8px 22px -2px rgba(244, 63, 94, 0.35), 0 0 14px rgba(233, 30, 99, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.cat-bubble-item:hover .cat-bubble-ring {
    box-shadow: 0 12px 30px -2px rgba(244, 63, 94, 0.55), 0 0 22px rgba(233, 30, 99, 0.45);
}

.cat-bubble-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #18181b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2.5px solid #ffffff;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cat-bubble-item:hover .cat-bubble-inner {
    background: #121215;
    transform: scale(1.04);
}

.cat-bubble-inner i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.cat-bubble-item:hover .cat-bubble-inner i {
    transform: scale(1.15) rotate(4deg);
}

.cat-bubble-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #18181b;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
}

.cat-bubble-item:hover .cat-bubble-title {
    color: #e91e63;
}

@media (max-width: 768px) {
    .cat-bubble-wrapper {
        justify-content: flex-start;
        gap: 18px;
        padding: 16px 10px;
    }
    .cat-bubble-item {
        width: 85px;
    }
    .cat-bubble-ring {
        width: 72px;
        height: 72px;
    }
    .cat-bubble-inner {
        font-size: 24px;
    }
    .cat-bubble-title {
        font-size: 12px;
    }
}

/* 2. Eye-Catching Product Card Enhancements */
.shopee-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eeeeee;
}

.shopee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.18);
    border-color: var(--berry-pink);
}

.shopee-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fdfdfd;
}

.shopee-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Floating Quick View Overlay Button on Hover - Luxury Frosted Pill */
.shopee-quick-view-btn {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    height: 40px;
    background: rgba(22, 16, 22, 0.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.shopee-card:hover .shopee-quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.shopee-quick-view-btn:hover {
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 24px rgba(233, 30, 99, 0.45);
    color: #ffffff;
}

/* Floating Wishlist Heart Icon */
.shopee-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #4A3E3D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shopee-wishlist-btn:hover {
    background: #ffffff;
    color: #E91E63;
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.25);
}

.shopee-wishlist-btn.active {
    background: #E91E63;
    color: #ffffff;
    border-color: #E91E63;
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.35);
}

.shopee-wishlist-btn.active i::before {
    content: "\f415";
    /* bi-heart-fill */
}

/* Animated Progress Bar */
.shopee-progress-bar {
    position: relative;
    height: 22px;
    background: #ffe4ed;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
    text-align: center;
    border: 1px solid rgba(216, 27, 96, 0.25);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopee-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #d81b60 0%, #ff4081 100%);
    border-radius: 12px;
    transition: width 0.6s ease-in-out;
    box-shadow: 0 0 8px rgba(216, 27, 96, 0.4);
}

.shopee-progress-text {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 800;
    color: #4a001f;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Flash Header Glowing Effects */
.shopee-flash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, #141414 0%, #2b0c1e 50%, var(--berry-pink) 100%);
    border-radius: 14px 14px 0 0;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
}

.shopee-flash-title {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.shopee-flash-title .flash-icon {
    color: #ffeb3b;
    font-size: 1.6rem;
    animation: flashPulse 1.5s infinite alternate ease-in-out;
}

@keyframes flashPulse {
    from {
        transform: scale(1);
        filter: drop-shadow(0 0 2px #ffeb3b);
    }

    to {
        transform: scale(1.25);
        filter: drop-shadow(0 0 8px #ffeb3b);
    }
}

/* ============================================================
   PURE VANILLA CSS — SHOP CATALOG (NO BOOTSTRAP DEPENDENCY)
   ============================================================ */

.shop-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.shop-hero-banner {
    background: linear-gradient(135deg, #141414 0%, #2b0c1e 100%);
    color: #ffffff;
    padding: 48px 0;
    text-align: center;
}

.shop-hero-banner h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.shop-hero-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
}

/* Shop Layout (Sidebar + Main) */
.shop-main-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    margin-top: 24px;
    margin-bottom: 56px;
    align-items: start;
}

@media (max-width: 868px) {
    .shop-main-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shop-sidebar {
        display: none;
    }
}

/* Sidebar Filters */
.shop-sidebar {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.filter-group {
    margin-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 20px;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group-label {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}

.filter-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--berry-pink);
    cursor: pointer;
}

.shop-filter-submit {
    width: 100%;
    height: 44px;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-filter-submit:hover {
    background: var(--berry-pink);
}

/* Sort Toolbar */
.shop-sort-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 14px 20px;
    margin-bottom: 20px;
}

.shop-product-count {
    font-size: 14px;
    color: #4b5563;
}

.shop-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #111827;
}

.shop-sort-select {
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

.shop-sort-select:focus {
    border-color: var(--berry-pink);
}

/* ============================================================
   PURE VANILLA CSS — CART PAGE (NO BOOTSTRAP DEPENDENCY)
   ============================================================ */

.cart-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 20px;
    box-sizing: border-box;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.cart-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cart-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

/* ============================================================
   FIX SHOP CATALOG GRID & HERO DISPLAY
   ============================================================ */

.shop-hero-banner {
    background: linear-gradient(135deg, #141414 0%, #2b0c1e 100%);
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

.shop-hero-banner h1 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.shop-hero-banner p {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* 3-Column Grid for Shop Catalog */
.shop-grid,
.shopee-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 1024px) {

    .shop-grid,
    .shopee-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

@media (max-width: 576px) {

    .shop-grid,
    .shopee-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

/* Flash Sale Grid on Homepage (4 Columns) */
.shopee-flash-section .shopee-grid,
.shopee-discover-section .shopee-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 992px) {

    .shopee-flash-section .shopee-grid,
    .shopee-discover-section .shopee-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 576px) {

    .shopee-flash-section .shopee-grid,
    .shopee-discover-section .shopee-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================================
   WIGVO AI BEAUTY STYLIST — PURE VANILLA LUXURY CONSOLE
   ============================================================ */

.ai-stylist-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 20px;
    box-sizing: border-box;
}

.ai-stylist-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .ai-stylist-layout {
        grid-template-columns: 1fr;
    }
}

/* Left Sidebar Panel */
.ai-sidebar-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-card-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.ai-assistant-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 16px;
}

.ai-avatar-glow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #141414 0%, var(--berry-pink) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    position: relative;
}

.ai-avatar-glow::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.ai-status-text {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
}

.ai-status-sub {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

/* Quick Topic Buttons */
.ai-topic-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 12px;
}

.ai-topic-btn {
    width: 100%;
    text-align: left;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-topic-btn:hover {
    background: #fff5f8;
    border-color: var(--berry-pink);
    color: var(--berry-pink);
    transform: translateX(3px);
}

/* Right Main Console */
.ai-console-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 650px;
}

.ai-console-header {
    background: linear-gradient(135deg, #141414 0%, #2b0c1e 100%);
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-console-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-clear-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ai-clear-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Messages Scroll Box */
.ai-messages-wrapper {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ai-msg-row {
    display: flex;
    gap: 12px;
    max-width: 85%;
}

.ai-msg-row.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #141414;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.ai-msg-row.bot .ai-msg-avatar {
    background: var(--berry-pink);
}

.ai-msg-content {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #1f2937;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ai-msg-row.user .ai-msg-content {
    background: #141414;
    color: #ffffff;
    border-color: #141414;
}

/* Embedded Mini Product Card inside Chat Bubble */
.ai-mini-product-card {
    display: flex;
    gap: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.ai-mini-product-card:hover {
    border-color: var(--berry-pink);
}

.ai-mini-product-card img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
}

.ai-mini-product-info {
    flex: 1;
}

.ai-mini-product-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.ai-mini-product-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--berry-pink);
}

/* Prompt Chips Bar */
.ai-chips-bar {
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border-top: 1px solid #eee;
    overflow-x: auto;
}

.ai-chip {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.ai-chip:hover {
    background: var(--berry-pink);
    color: #ffffff;
    border-color: var(--berry-pink);
}

/* Console Input Bar */
.ai-input-bar {
    padding: 14px 20px;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    display: flex;
    gap: 12px;
    align-items: center;
}

.ai-input-field {
    flex: 1;
    height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.ai-input-field:focus {
    border-color: var(--berry-pink);
}

.ai-send-btn {
    height: 46px;
    padding: 0 24px;
    background: var(--berry-pink);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-send-btn:hover {
    opacity: 0.9;
}

/* Fix Sync My Beauty Passport Button Centering */
.ai-sync-btn {
    width: 100% !important;
    height: 42px !important;
    background: #141414 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    box-sizing: border-box !important;
    padding: 0 16px !important;
    margin: 0 !important;
}

.ai-sync-btn:hover {
    background: var(--berry-pink) !important;
}

/* Fix Category Bubble Ring Icons (Bulletproof Luxury Sunset Gradient) */
.cat-bubble-ring {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    padding: 3.5px !important;
    background: linear-gradient(135deg, #ff4d6d 0%, #e91e63 45%, #f59e0b 100%) !important;
    box-shadow: 0 8px 22px -2px rgba(244, 63, 94, 0.35), 0 0 14px rgba(233, 30, 99, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

.cat-bubble-inner {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    background: #18181b !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    border: 2.5px solid #ffffff !important;
    box-sizing: border-box !important;
    transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.cat-bubble-item:hover .cat-bubble-inner {
    background: #121215 !important;
    transform: scale(1.04) !important;
}

.cat-bubble-inner i {
    color: #ffffff !important;
}

/* ============================================================
   PURE VANILLA CSS — USER PROFILE PAGE
   ============================================================ */

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 868px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.profile-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .profile-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-item-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.profile-item-label {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.profile-item-value {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

/* ============================================================
   SPACIOUS FULL-WIDTH CONTAINER LAYOUT ("BUNG RA RỘNG RÃI")
   ============================================================ */

.shop-container,
.cart-container,
.shopee-container,
.ai-stylist-container,
.pd-container,
.container {
    width: 100% !important;
    max-width: 1480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 36px !important;
    padding-right: 36px !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {

    .shop-container,
    .cart-container,
    .shopee-container,
    .ai-stylist-container,
    .pd-container,
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Expanded Shop Catalog Grid (4 Columns on Wide Screen) */
.shop-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
}

@media (max-width: 1280px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 868px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* Expanded Profile Layout */
.profile-layout {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 36px !important;
    width: 100% !important;
}

/* Fix Product Gallery Image Sharpness */
.pd-gallery-main img {
    width: 100% !important;
    height: auto !important;
    max-height: 650px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    image-rendering: -webkit-optimize-contrast !important;
}

/* OVERRIDE THEME STYLES FOR HERO BANNER TEXT COLOR */
.hero-banner h1,
.hero-banner h1.hero-title,
h1.hero-title,
.hero-title {
    color: #ffffff !important;
}

.hero-banner h1 em,
.hero-title em {
    color: var(--rose-gold) !important;
}

.hero-subtitle,
.hero-banner p,
.hero-banner .hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ── WIGVO CUSTOMER REVIEW SYSTEM ── */
.review-summary-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.overall-score {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #141414;
}

.stars-gold i {
    color: #f59e0b;
    font-size: 16px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rating-bar-item .progress {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: #f1f5f9;
}

.star-rating-picker {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    cursor: pointer;
}

.star-rating-picker .star-item {
    color: #cbd5e1;
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating-picker .star-item:hover,
.star-rating-picker .star-item.active {
    color: #f59e0b;
    transform: scale(1.1);
}

.review-item-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #141414;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Force Ultra High Resolution Image Sharpness across all Product Cards */
.shopee-img-box img,
.match-product-card img,
.shop-product-card img,
.pd-gallery-main img {
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
}

/* ==========================================================================
   📱 WIGVO MOBILE RESPONSIVE OPTIMIZATION (COMPREHENSIVE MOBILE EXPERIENCE)
   ========================================================================== */
@media (max-width: 768px) {

    /* Touch-friendly Viewport & Margins */
    body {
        font-size: 14px;
    }

    .shop-container,
    .cart-container,
    .pd-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Product Grids: Perfect 2-column mobile grid (Shopee / Instagram style) */
    .shopee-grid,
    .shop-catalog-grid,
    .stories-grid-3col,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Product Cards Mobile Spacing */
    .shopee-card,
    .shop-product-card {
        border-radius: 12px !important;
    }

    .shopee-card-title,
    .product-card-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
        height: 34px !important;
    }

    /* Hero Banner Mobile Adjustment */
    .hero-banner-inner,
    .shop-hero-banner {
        padding: 24px 16px !important;
        text-align: center;
    }

    /* Single Product Detail Mobile Stack */
    .pd-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Cart & Checkout Layout Mobile Stack */
    .cart-layout,
    .checkout-layout-grid,
    .profile-layout,
    .club-split-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* WigVo Club & Profile Cards Mobile Touch Targets */
    .club-info-grid,
    .benefits-rows-grid {
        grid-template-columns: 1fr !important;
    }

    /* Filter Sidebar Mobile Toggle Support */
    .shop-sidebar {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* Mobile Buttons & Inputs Touch Targets (Min 44px height) */
    button,
    input,
    select,
    .pd-btn-submit {
        min-height: 44px;
    }
}

@media (max-width: 991px) {

    /* Mobile Header Layout Optimization */
    .modern-header-inner {
        height: auto !important;
        padding: 8px 0 !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .header-center {
        order: 1 !important;
    }

    .header-right {
        order: 2 !important;
        gap: 10px !important;
    }

    .header-left {
        order: 3 !important;
        width: 100% !important;
        gap: 16px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 6px 0 2px 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        scrollbar-width: none !important;
    }

    .header-left::-webkit-scrollbar {
        display: none !important;
    }

    .header-left .nav-link {
        font-size: 11.5px !important;
        letter-spacing: 0.5px !important;
        padding: 4px 10px !important;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 20px;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 576px) {

    /* Ultra Small Mobile Screen Adjustment */
    .shopee-grid,
    .shop-catalog-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .header-search-compact input {
        width: 90px !important;
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
}

/* ==========================================================================
   📱 WIGVO LUXURY MOBILE SLIDE DRAWER MENU
   ========================================================================== */
.wigvo-mobile-toggle {
    background: transparent;
    border: none;
    font-size: 26px;
    color: var(--charcoal);
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wigvo-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wigvo-mobile-drawer.active {
    visibility: visible;
    opacity: 1;
}

.wigvo-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.wigvo-mobile-content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.wigvo-mobile-drawer.active .wigvo-mobile-content {
    left: 0;
}

.wigvo-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.wigvo-mobile-close {
    background: #f5f5f7;
    border: none;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.wigvo-mobile-search {
    margin-bottom: 20px;
}

.wigvo-mobile-search form {
    display: flex !important;
    align-items: center !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 2px 6px 2px 14px !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
}

.wigvo-mobile-search form:focus-within {
    border-color: var(--berry-pink) !important;
    box-shadow: 0 0 0 3px rgba(248, 93, 153, 0.15) !important;
    background: #ffffff !important;
}

.wigvo-mobile-search input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    padding: 10px 0 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    box-shadow: none !important;
}

.wigvo-mobile-search button {
    background: var(--berry-pink) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
    transition: all 0.2s ease !important;
}

.wigvo-mobile-search button:hover {
    background: var(--berry-dark) !important;
    transform: scale(1.04) !important;
}

.wigvo-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    overflow-y: auto;
}

.wigvo-mobile-link {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    color: #1d1b1f;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wigvo-mobile-link:hover,
.wigvo-mobile-link.active {
    background: rgba(248, 93, 153, 0.1);
    color: var(--berry-pink);
}

.wigvo-mobile-footer {
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* ==========================================================================
   💎 WOOCOMMERCE DYNAMIC VARIATION FORM STYLING
   ========================================================================== */
.pd-variable-cart-wrap form.variations_form {
    margin-top: 15px;
    margin-bottom: 25px;
}

.pd-variable-cart-wrap table.variations {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.pd-variable-cart-wrap table.variations td.label {
    font-size: 13px;
    font-weight: 700;
    color: #1d1b1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    width: 100px;
    padding-right: 10px;
}

.pd-variable-cart-wrap table.variations td.value {
    vertical-align: middle;
}

.pd-variable-cart-wrap table.variations select {
    width: 100%;
    max-width: 320px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    font-size: 14px;
    font-weight: 600;
    color: #1d1b1f;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-variable-cart-wrap table.variations select:focus {
    border-color: var(--berry-pink);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(248, 93, 153, 0.15);
}

.pd-variable-cart-wrap .reset_variations {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    margin-left: 10px;
    display: inline-block;
}

.pd-variable-cart-wrap .woocommerce-variation-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--berry-pink);
    margin: 15px 0;
}

.pd-variable-cart-wrap .single_variation_wrap {
    margin-top: 15px;
}

.pd-variable-cart-wrap .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pd-variable-cart-wrap .woocommerce-variation-add-to-cart input.qty {
    width: 70px;
    height: 48px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
}

.pd-variable-cart-wrap button.single_add_to_cart_button {
    background: linear-gradient(135deg, var(--berry-pink) 0%, #d63384 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(248, 93, 153, 0.3) !important;
    height: 48px;
}

.pd-variable-cart-wrap button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 93, 153, 0.45) !important;
}

/* ==========================================================================
   ✨ LUXURY PRODUCT DETAILS TRUST BADGES (2x2 GRID)
   ========================================================================== */
.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f5;
}

.pd-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fdfdfd;
    border: 1px solid #f0f0f5;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.pd-feature-card:hover {
    background: #ffffff;
    border-color: rgba(248, 93, 153, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.pd-feature-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 93, 153, 0.08);
    color: var(--berry-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.pd-feature-card:hover .pd-feature-icon-wrap {
    background: var(--berry-pink);
    color: #ffffff;
}

.pd-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pd-feature-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #1d1b1f;
    line-height: 1.25;
}

.pd-feature-text p {
    font-size: 11.5px;
    color: #71717a;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .pd-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pd-feature-card {
        padding: 10px 8px;
        gap: 8px;
    }

    .pd-feature-icon-wrap {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .pd-feature-text strong {
        font-size: 11.5px;
    }

    .pd-feature-text p {
        font-size: 10px;
    }
}

/* ==========================================================================
   ✨ LUXURY SHOP FILTER SUBMIT BUTTON
   ========================================================================== */
.shop-filter-submit,
#apply-filter-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, var(--berry-pink) 0%, #d63384 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 20px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(248, 93, 153, 0.35) !important;
    margin-top: 20px !important;
    box-sizing: border-box !important;
}

.shop-filter-submit:hover,
#apply-filter-btn:hover {
    background: linear-gradient(135deg, #e04883 0%, #b8226b 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(248, 93, 153, 0.5) !important;
}

/* ==========================================================================
   ✨ DYNAMIC SALE / REGULAR / OUT-OF-STOCK STATUS BANNERS
   ========================================================================== */
.pd-status-banner {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    transition: all 0.25s ease;
}

/* Status 1: Sale / Flash Deal (Berry Flame Progress Bar) */
.pd-status-banner.status-sale {
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef3 100%);
    border: 1px solid rgba(248, 93, 153, 0.25);
}

.pd-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.pd-sale-badge-fire {
    font-weight: 800;
    color: var(--berry-pink);
    font-size: 12.5px;
    letter-spacing: 0.5px;
}

.pd-sale-sold-count {
    font-size: 12px;
    color: #4b5563;
}

.pd-sale-sold-count strong {
    color: #111827;
}

.pd-status-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(248, 93, 153, 0.15);
    border-radius: 99px;
    overflow: hidden;
}

.pd-status-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4d6d 0%, var(--berry-pink) 100%);
    border-radius: 99px;
    transition: width 0.5s ease;
}

/* Status 2: Regular Price (Green Check Ready Stock) */
.pd-status-banner.status-regular {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.pd-stock-ready {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
}

.pd-stock-ready i {
    font-size: 16px;
    color: #16a34a;
}

/* Status 3: Out of Stock (Amber Warning) */
.pd-status-banner.status-outofstock {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
}

.pd-status-banner.status-outofstock i {
    font-size: 16px;
    color: #d97706;
}

/* ==========================================================================
   ✨ LUXURY RESET FILTER BUTTONS
   ========================================================================== */
.shop-filter-top-reset {
    background: rgba(248, 93, 153, 0.08) !important;
    color: var(--berry-pink) !important;
    border: 1px solid rgba(248, 93, 153, 0.2) !important;
    border-radius: 99px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.25s ease !important;
}

.shop-filter-top-reset:hover {
    background: var(--berry-pink) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(248, 93, 153, 0.3) !important;
}

.shop-filter-top-reset i {
    font-size: 11.5px;
    transition: transform 0.3s ease;
}

.shop-filter-top-reset:hover i {
    transform: rotate(-180deg);
}

.shop-filter-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.shop-filter-actions-row .shop-filter-submit {
    margin-top: 0 !important;
    flex: 1;
}

.shop-filter-reset-btn {
    background: #f4f4f5 !important;
    color: #3f3f46 !important;
    border: 1px solid #e4e4e7 !important;
    border-radius: 14px !important;
    padding: 13px 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0;
}

.shop-filter-reset-btn:hover {
    background: #e4e4e7 !important;
    color: #000000 !important;
    border-color: #d4d4d8 !important;
}

.shop-filter-reset-btn i {
    transition: transform 0.3s ease;
}

.shop-filter-reset-btn:hover i {
    transform: rotate(-180deg);
}

/* ==========================================================================
   ✨ REMAINING STOCK BADGES ON PRODUCT CARDS
   ========================================================================== */
.shopee-stock-row {
    margin-top: 8px;
    font-size: 11.5px;
    font-weight: 700;
}

.shopee-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.shopee-stock-badge.low-stock {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.shopee-stock-badge.in-stock {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.shopee-stock-badge.out-of-stock {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

/* ==========================================================================
   ✨ LUXURY SHOP CATALOG PAGINATION PILLS
   ========================================================================== */
.shop-pagination-wrap {
    margin-top: 36px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-pagination-pills {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1.5px solid rgba(248, 93, 153, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.shop-pagination-pills .page-pill {
    background: transparent;
    border: 1px solid transparent;
    color: #4b5563;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.shop-pagination-pills .page-pill:hover:not(.disabled) {
    background: rgba(248, 93, 153, 0.1);
    color: var(--berry-pink);
    border-color: rgba(248, 93, 153, 0.25);
}

.shop-pagination-pills .page-pill.active {
    background: linear-gradient(135deg, var(--berry-pink) 0%, #b8226b 100%);
    color: #ffffff;
    border-color: var(--berry-pink);
    box-shadow: 0 4px 14px rgba(248, 93, 153, 0.4);
}

.shop-pagination-pills .page-pill.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==========================================================================
   ✨ BESTSELLER DIAGONAL CORNER RIBBON & COMPACT CARD STYLING
   ========================================================================== */
.shopee-card.bestseller-card {
    border: 1.5px solid rgba(248, 93, 153, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.shopee-card.bestseller-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(248, 93, 153, 0.2) !important;
    border-color: var(--berry-pink) !important;
}

.shopee-card.bestseller-card .shopee-img-box {
    position: relative !important;
    overflow: hidden !important;
}

.bestseller-corner-ribbon {
    position: absolute !important;
    top: 14px !important;
    right: -32px !important;
    width: 120px !important;
    background: linear-gradient(135deg, #ff4d6d 0%, #d81b60 100%) !important;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    padding: 4px 0 !important;
    transform: rotate(45deg) !important;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.4) !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.bestseller-corner-ribbon span {
    display: block !important;
    text-transform: uppercase !important;
}

/* ==========================================================================
   📱 WIGVO MOBILE RESPONSIVENESS & TOUCH ADAPTATION (MAX-WIDTH: 768px & 480px)
   ========================================================================== */

@media (max-width: 768px) {

    /* Container & Layout */
    .container,
    .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Product Grid Layouts - 2 Columns on Mobile */
    .shopee-product-grid,
    .shop-grid,
    .grid-4-col {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .shopee-card {
        border-radius: 12px !important;
    }

    .shopee-card-body {
        padding: 10px !important;
    }

    .shopee-title {
        font-size: 12.5px !important;
        line-height: 1.35 !important;
        height: 34px !important;
    }

    /* Header Mobile Adjustments */
    .header-inner {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .header-search {
        order: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 6px !important;
    }

    /* Checkout & Cart Forms Stacking */
    .checkout-form-grid,
    .cart-layout-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Hero Banners */
    .hero-banner-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    /* Touch Guidelines (44px Minimum height for touch buttons) */
    .btn-mobile-touch,
    button,
    .shopee-quick-view-btn {
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {

    .shopee-product-grid,
    .shop-grid {
        gap: 8px !important;
    }

    .shopee-price {
        font-size: 14px !important;
    }

    .shopee-tag-freeship,
    .shopee-tag-voucher {
        font-size: 9.5px !important;
        padding: 2px 4px !important;
    }
}

/* Mobile Drawer Footer Spacing Fix */
.wigvo-mobile-footer {
    padding-top: 20px !important;
    padding-bottom: 12px !important;
    border-top: 1px solid #f1f5f9 !important;
    margin-top: 16px !important;
}

.wigvo-mobile-footer .mobile-account-btn {
    margin-bottom: 18px !important;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.25) !important;
}

.wigvo-mobile-footer .mobile-logout-btn {
    margin-top: 12px !important;
    padding: 8px 0 !important;
    display: block !important;
}

@media (max-width: 768px) {
    .mobile-tab-pills {
        display: flex !important;
    }

    .profile-tab-btn.active {
        background: var(--berry-pink, #e91e63) !important;
        color: #ffffff !important;
        border-color: var(--berry-pink, #e91e63) !important;
    }
}