/*
Theme Name: Vybe POD Theme
Theme URI: 
Author: Antigravity
Author URI: 
Description: A heavy, high-converting, mobile-first WooCommerce theme with Instagram story-style categories and bottom navigation. Built exclusively for print-on-demand streetwear.
Version: 1.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vybe-theme
*/

/* ==========================================================================
   RESET & BASE VARIABLES
   ========================================================================== */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #e53e3e; /* Action color, like red for sale */
    --background-light: #f8f9fa;
    --text-main: #1a202c;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Bottom Nav Height to ensure content isn't hidden */
    --bottom-nav-height: 65px; 
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    padding-bottom: var(--bottom-nav-height); /* Space for bottom nav */
}

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

* {
    box-sizing: border-box;
}

/* ==========================================================================
   HEADER & TOP NAVIGATION
   ========================================================================== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.site-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: none;
}

/* ==========================================================================
   INSTAGRAM STORY STYLE CATEGORIES
   ========================================================================== */
.story-categories-wrapper {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    padding: 15px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.story-categories-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.story-categories-list {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    margin: 0;
    list-style: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 70px;
}

.story-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f0f0f0;
    padding: 3px;
    /* Instagram style gradient border */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
    cursor: pointer;
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff; /* White gap */
}

.story-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR (MOBILE APP FEEL)
   ========================================================================== */
.bottom-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom); /* For iPhone notch */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    transition: color 0.2s;
    flex: 1;
}

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

.nav-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.nav-label {
    font-size: 10px;
    font-weight: 600;
}

/* Hide bottom nav on desktop */
@media (min-width: 768px) {
    .bottom-nav-bar {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   PHASE 2: HEAVY APP-STYLE OVERHAUL
   ========================================================================== */

/* 1. Global Typography & Scrollbar */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
}

/* Hide default scrollbar for App Feel */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

/* 2. Glassmorphism Sticky Header */
.vybe-glass-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* 3. WooCommerce Product Grid (App Style) */
ul.products, .wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 0 15px !important;
    margin: 0 !important;
}

ul.products::before, ul.products::after {
    display: none !important;
    content: none !important;
}

ul.products li.product, .wc-block-grid__product {
    background: #fff;
    border-radius: 12px;
    padding: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    margin: 0 !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    clear: none !important; /* FIX: Prevents empty spaces in grid */
}

ul.products li.product.first, ul.products li.product.last {
    clear: none !important;
}

ul.products li.product img, .wc-block-components-product-image img {
    border-radius: 8px;
    margin-bottom: 10px !important;
    width: 100% !important;
}

ul.products li.product .woocommerce-loop-product__title, .wc-block-components-product-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    margin-bottom: 5px !important;
    line-height: 1.3 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.products li.product .price, .wc-block-components-product-price {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #000 !important;
    margin-bottom: 15px !important;
}

ul.products li.product .price ins, .wc-block-components-product-price .woocommerce-Price-amount {
    color: #e53e3e !important;
    text-decoration: none;
}
ul.products li.product .price del, .wc-block-components-product-price del {
    color: #a0aec0 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

/* Clean Add to Cart Button */
ul.products li.product .button, .wp-block-button__link.add_to_cart_button {
    margin-top: auto !important;
    background: #000 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.2s;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box;
}
ul.products li.product .button:hover, .wp-block-button__link.add_to_cart_button:hover {
    background: #e53e3e !important;
}

/* 4. Checkout & Cart UI Polish */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin: 20px 10px;
}

/* Form Inputs */
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    background: #f8fafc !important;
}
.woocommerce form .form-row input.input-text:focus {
    border-color: #000 !important;
    box-shadow: 0 0 0 1px #000 !important;
    outline: none !important;
}

/* Checkout Button */
#place_order {
    background: #e53e3e !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 18px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    border-top-color: #000 !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   PHASE 3: SINGLE PRODUCT PAGE OVERHAUL
   ========================================================================== */

/* 1. Full-Screen Swipe Gallery */
.single-product div.product {
    background: #fff;
    padding-bottom: 20px;
}
.single-product .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.single-product .woocommerce-product-gallery img {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.single-product .summary.entry-summary {
    padding: 20px 20px 0 !important;
    float: none !important;
    width: 100% !important;
}

/* Hide WooCommerce Zoom/Magnifier icon */
.woocommerce-product-gallery__trigger {
    display: none !important;
}

/* 2. Variation Swatches (Buttons instead of Dropdown) */
.vybe-swatch-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.vybe-swatch-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}
.vybe-swatch-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}
.vybe-swatch-btn:hover {
    border-color: #000;
}

/* Clean up WooCommerce default variation table */
.woocommerce div.product form.cart .variations th {
    display: block;
    text-align: left;
    padding-bottom: 10px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}
.woocommerce div.product form.cart .variations td {
    display: block;
    padding-bottom: 15px;
}

/* 3. Smart Accordions for Details & Shipping */
.vybe-accordion-wrapper {
    margin-top: 30px;
    padding: 0 15px;
}
.wc-tab-accordion-heading {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a202c;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s;
}
.wc-tab-accordion-heading:active {
    background: #f8fafc;
}
.acc-title-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.acc-title {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}
.acc-subtitle {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
    line-height: 1.4;
    text-transform: none;
}
.desc-preview {
    font-style: italic;
    color: #a0aec0;
}
.read-more-text {
    color: #3182ce;
    font-weight: 700;
    font-style: normal;
}
.reviews-preview {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.review-stars-preview {
    letter-spacing: 2px;
}
.review-text-preview {
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
}
.wc-tab-accordion-heading .acc-icon {
    font-weight: 400;
    transition: transform 0.3s;
    color: #a0aec0;
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.wc-tab-accordion-heading.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.wc-tab-accordion-heading.active .svg-arrow {
    transform: rotate(180deg);
    color: #e53e3e;
}
.wc-tab-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
    border: 1px solid #edf2f7;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    opacity: 0;
}
.wc-tab-accordion-panel.active {
    padding: 15px 20px 20px;
    opacity: 1;
}
.wc-tab-accordion-panel h2 {
    display: none; /* Hide duplicate WooCommerce headings */
}
.woocommerce-message::before {
    color: #000 !important;
}

/* ==========================================================================
   PHASE 4.1: SHOP PAGE CATEGORY GRID
   ========================================================================== */
ul.products li.product-category {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
ul.products li.product-category img {
    border-radius: 50% !important; /* Make category images circular for premium look */
    margin: 0 auto 15px !important;
    width: 80% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 3px solid #f8fafc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
ul.products li.product-category .woocommerce-loop-category__title {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #1a202c !important;
    text-transform: uppercase;
    margin: 0 !important;
    padding: 0 !important;
}
ul.products li.product-category .woocommerce-loop-category__title mark {
    background: transparent !important;
    color: #a0aec0 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
}

/* ==========================================================================
   PHASE 5: ULTIMATE SOCIAL PROOF
   ========================================================================== */

/* 1. Live Viewers & 24hr Sales */
.vybe-social-proof {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
}
.vybe-social-proof .sp-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vybe-social-proof .sp-row:first-child {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #cbd5e0;
}
.vybe-live-count {
    color: #e53e3e;
    font-weight: 800;
}
.vybe-bought-count {
    color: #3182ce;
    font-weight: 800;
}

/* 2. Fake Sale Popups (Bottom Corner Toast) */
.vybe-fake-sale-popup {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + 20px);
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
}
.vybe-fake-sale-popup.show {
    transform: translateY(0);
    opacity: 1;
}
.vybe-fake-sale-popup img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}
.vybe-fsp-text {
    flex: 1;
}
.vybe-fsp-text .fsp-name {
    font-size: 12px;
    color: #718096;
    margin-bottom: 4px;
}
.vybe-fsp-text .fsp-name strong {
    color: #1a202c;
    font-weight: 700;
}
.vybe-fsp-text .fsp-product {
    font-size: 13px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vybe-fsp-time {
    font-size: 10px;
    color: #a0aec0;
    margin-top: 4px;
    font-weight: 600;
}

/* 3. Fake Reviews Area */
.vybe-reviews-summary {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}
.vybe-reviews-summary .stars {
    font-size: 24px;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.vybe-reviews-summary .text {
    font-size: 14px;
    font-weight: 700;
    color: #4a5568;
}
.vybe-single-review {
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
}
.vybe-single-review .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.vybe-single-review .reviewer-name {
    font-weight: 800;
    font-size: 14px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 5px;
}
.vybe-single-review .verified-badge {
    color: #38a169;
    font-size: 12px;
}
.vybe-single-review .review-stars {
    color: #fbbf24;
    font-size: 12px;
}
.vybe-single-review .review-body {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}
.review-date {
    font-size: 11px;
    color: #a0aec0;
    margin-top: 6px;
    display: block;
}

/* ==========================================================================
   PHASE 4: CONVERSION SUITE
   ========================================================================== */

/* 1. Fake Scarcity */
.vybe-scarcity {
    background: #fff5f5;
    color: #c53030;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    border: 1px solid #fed7d7;
}

/* 2. Trust Badges */
.vybe-trust-badges {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e2e8f0;
}
.vybe-trust-badges .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    color: #4a5568;
    text-transform: uppercase;
    text-align: center;
    gap: 5px;
}
.vybe-trust-badges .badge .icon {
    font-size: 20px;
}

/* 3. Upsell Block */
.vybe-upsell-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 4px solid #f1f5f9;
}
.upsell-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 15px;
}

/* 4. Sticky Mobile Buy Bar */
.vybe-sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.vybe-sticky-buy-bar.show {
    transform: translateY(0);
}
.vybe-sticky-buy-bar .sticky-price {
    font-weight: 800;
    font-size: 18px;
    color: #000;
}
.vybe-sticky-buy-bar .sticky-price del {
    display: none; /* Keep it clean */
}
.vybe-sticky-btn {
    background: #e53e3e;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 5. Slide-In Cart Drawer */
.vybe-cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.vybe-cart-drawer.open {
    right: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #edf2f7;
}
.drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}
.close-drawer {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #a0aec0;
    padding: 0;
    cursor: pointer;
}
.drawer-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}
.vybe-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.vybe-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   PHASE 6: DESKTOP & RESPONSIVE OPTIMIZATION
   ========================================================================== */
@media (min-width: 768px) {
    /* 1. Grid Configuration */
    ul.products, .wc-block-grid__products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        padding: 40px !important;
        max-width: 1400px;
        margin: 0 auto !important;
    }

    /* 2. Single Product Layout */
    .single-product div.product {
        display: flex !important;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        background: transparent !important;
        gap: 40px;
        align-items: flex-start;
    }
    .single-product .woocommerce-product-gallery {
        flex: 1.2;
        min-width: 400px;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    }
    .single-product .summary.entry-summary {
        flex: 1;
        min-width: 400px;
        padding: 40px !important;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        margin-bottom: 40px !important;
    }
    .vybe-accordion-wrapper {
        padding: 0;
    }

    /* 3. Story Categories */
    .story-categories-wrapper {
        padding: 25px 0;
    }
    .story-categories-list {
        justify-content: center;
        gap: 30px;
    }
    .story-circle {
        width: 80px;
        height: 80px;
    }
    .story-title {
        font-size: 13px;
        max-width: 90px;
    }

    /* 4. Fake Sale Popup */
    .vybe-fake-sale-popup {
        bottom: 30px;
        left: 30px;
        right: auto;
        width: 380px;
        border-radius: 12px;
        border: none;
    }

    /* 5. Sticky Buy Bar */
    .vybe-sticky-buy-bar {
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, 150%);
        width: 100%;
        max-width: 600px;
        border-radius: 100px;
        padding: 15px 30px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        border: 1px solid #edf2f7;
    }
    .vybe-sticky-buy-bar.show {
        transform: translate(-50%, 0);
    }
}

/* ==========================================================================
   UI FIXES: PRODUCT PAGE
   ========================================================================== */
   
/* Fix: Hide the Quantity Box on mobile/desktop to streamline the buying process */
.single-product div.product form.cart .quantity {
    display: none !important;
}

/* Fix: Add breathing room above the Category text */
.product_meta {
    margin-top: 25px;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

/* ==========================================================================
   APP-STYLE PRICING FORMAT
   ========================================================================== */
.vybe-custom-price-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px 0;
}
.vybe-hot-deal-badge {
    background: #047857;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.vybe-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}
.vybe-discount-arrow {
    color: #059669;
    font-size: 18px;
    font-weight: 800;
}
.vybe-price-main del {
    color: #718096;
    font-size: 16px;
    font-weight: 600;
    text-decoration-color: #a0aec0;
}
.vybe-price-main ins {
    color: #1a202c;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}
.product-card .vybe-price-main ins {
    font-size: 18px;
}
.product-card .vybe-discount-arrow {
    font-size: 14px;
}
.product-card .vybe-price-main del {
    font-size: 13px;
}

/* ==========================================================================
   FLIPKART-STYLE CHECKOUT REVIEW
   ========================================================================== */
.vybe-checkout-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #edf2f7;
}

/* Hide the default bottom variation price, we will update the top one via JS */
.woocommerce-variation-price {
    display: none !important;
}

.vybe-checkout-item-card {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
}

.vybe-co-item-image {
    flex-shrink: 0;
    width: 80px;
}

.vybe-co-item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.vybe-co-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vybe-co-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
}

.vybe-co-item-meta {
    font-size: 12px;
    color: #718096;
}

.vybe-co-item-rating {
    font-size: 12px;
}
.vybe-co-item-rating .stars {
    color: #fbbf24;
}
.vybe-co-item-rating .rating-text {
    color: #a0aec0;
}

.vybe-co-item-price {
    font-size: 16px;
    font-weight: 800;
    color: #1a202c;
}

.vybe-co-item-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.vybe-co-item-qty-selector {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 8px;
}

.vybe-co-item-qty-selector label {
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    margin-right: 5px;
    margin-bottom: 0;
}

.vybe-qty-dropdown {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    outline: none;
    cursor: pointer;
    padding-right: 15px; /* space for arrow */
}

.vybe-co-estimated-delivery {
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}

/* Redesign the woo checkout totals table */
.vybe-checkout-totals-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

.vybe-checkout-totals-table th, 
.vybe-checkout-totals-table td {
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    background: transparent !important;
}

.vybe-checkout-totals-table th {
    text-align: left;
    font-weight: 500;
    color: #4a5568;
    font-size: 14px;
}

.vybe-checkout-totals-table td {
    text-align: right;
    font-weight: 700;
    color: #1a202c;
    font-size: 14px;
}

.vybe-checkout-totals-table .order-total th {
    font-size: 16px;
    font-weight: 800;
    color: #1a202c;
    border-bottom: none;
}

.vybe-checkout-totals-table .order-total td {
    font-size: 20px;
    font-weight: 900;
    color: #059669;
    border-bottom: none;
}
}
