/* ==========================================================================
   Filter Sidebar (Shop Page)
   ========================================================================== */

.glowvian-shop-layout-new {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 1024px) {
    .glowvian-shop-layout-new {
        grid-template-columns: 1fr;
    }
}

.glowvian-filter-sidebar {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Fix WooCommerce Grid Layout blank space issue */
ul.products::before,
ul.products::after {
    display: none !important;
}

@media (max-width: 1024px) {
    .glowvian-filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 300px;
        z-index: 300;
        max-height: 100vh;
        border-radius: 0;
        transition: left .3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,.15);
    }
    .glowvian-filter-sidebar.open {
        left: 0;
    }
    .glowvian-filter-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 299;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s ease, visibility .3s ease;
    }
    .glowvian-filter-overlay.show {
        opacity: 1;
        visibility: visible;
    }
    .glowvian-filter-close-btn {
        background: none;
        border: none;
        padding: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
    }
}

.glowvian-filter-sidebar-inner {
    padding: 20px;
}

.glowvian-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--glowvian-light);
}

.glowvian-filter-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--glowvian-primary);
    margin: 0;
}

.glowvian-filter-clear-all {
    font-size: 12px;
    color: var(--glowvian-accent);
    font-weight: 500;
}

.glowvian-filter-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glowvian-border);
}

.glowvian-filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.glowvian-filter-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--glowvian-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Price Slider */
.glowvian-price-slider-wrap {
    padding: 8px 0 4px;
}

.glowvian-price-track {
    position: relative;
    height: 4px;
    background: var(--glowvian-border);
    border-radius: 2px;
    margin-bottom: 16px;
}

.glowvian-price-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--glowvian-accent);
    border-radius: 2px;
}

.glowvian-range-thumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: transparent;
    outline: none;
    pointer-events: none;
}

.glowvian-range-thumb::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--glowvian-accent);
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(214,41,118,.3);
    transition: border-color .2s, box-shadow .2s;
}

.glowvian-range-thumb::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 10px rgba(214,41,118,.5);
}

.glowvian-price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--glowvian-primary);
    margin-top: 16px;
}

.glowvian-filter-apply-btn {
    width: 100%;
    padding: 11px;
    background: var(--glowvian-accent);
    color: #fff;
    border: none;
    border-radius: var(--glowvian-radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 16px;
    margin-bottom: 24px;
}

.glowvian-filter-apply-btn:hover {
    background: #b81f60;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214,41,118,.3);
}

/* Checkbox Filter */
.glowvian-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--glowvian-text);
}

.glowvian-filter-checkbox input[type="checkbox"] {
    display: none;
}

.glowvian-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--glowvian-border);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all .2s;
    position: relative;
}

.glowvian-filter-checkbox input:checked ~ .glowvian-checkbox-custom {
    background: var(--glowvian-accent);
    border-color: var(--glowvian-accent);
}

.glowvian-filter-checkbox input:checked ~ .glowvian-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Filter Category List */
.glowvian-filter-cat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.glowvian-filter-cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: var(--glowvian-radius-sm);
    font-size: 13px;
    color: var(--glowvian-text);
    transition: all .15s ease;
}

.glowvian-filter-cat-list a:hover,
.glowvian-filter-cat-list a.active {
    background: rgba(214,41,118,.06);
    color: var(--glowvian-accent);
}

.glowvian-cat-count {
    font-size: 11px;
    background: var(--glowvian-light);
    border-radius: 20px;
    padding: 2px 7px;
    color: var(--glowvian-muted);
}

/* Active Filters Tags */
.glowvian-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.glowvian-active-filters-label {
    font-size: 13px;
    color: var(--glowvian-muted);
}

.glowvian-active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(214,41,118,.08);
    border: 1px solid rgba(214,41,118,.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--glowvian-accent);
    font-weight: 500;
}

.glowvian-active-filter-tag a {
    color: var(--glowvian-accent);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

/* Filter toggle button */
.glowvian-filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--glowvian-light);
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--glowvian-text);
}

@media (max-width: 1024px) {
    .glowvian-filter-toggle-btn {
        display: inline-flex;
    }
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

.glowvian-single-product {
    padding: 0 0 60px;
}

.glowvian-product-hero-strip {
    background: linear-gradient(135deg, var(--glowvian-primary) 0%, #16213e 100%);
    padding: 20px 0;
}

.glowvian-product-hero-strip .glowvian-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

.glowvian-product-hero-strip .glowvian-breadcrumb-nav a {
    color: rgba(255,255,255,.65);
}

.glowvian-product-hero-strip .glowvian-breadcrumb-nav a:hover {
    color: #fff;
}

.glowvian-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
    align-items: start;
}

@media (max-width: 1024px) {
    .glowvian-product-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Product Gallery */
.glowvian-product-gallery {
    position: sticky;
    top: 90px;
}

.glowvian-gallery-main {
    border-radius: var(--glowvian-radius);
    overflow: hidden;
    background: var(--glowvian-light);
    aspect-ratio: 1;
    margin-bottom: 12px;
    cursor: zoom-in;
    position: relative;
}

.glowvian-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.glowvian-gallery-main:hover img {
    transform: scale(1.08);
}

.glowvian-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.glowvian-gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
}

.glowvian-gallery-thumb.active,
.glowvian-gallery-thumb:hover {
    border-color: var(--glowvian-accent);
}

.glowvian-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Summary */
.glowvian-product-summary {
    padding-top: 8px;
}

.glowvian-product-summary .glowvian-product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--glowvian-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.glowvian-product-summary .product_title {
    font-size: 28px;
    font-weight: 800;
    color: var(--glowvian-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.glowvian-product-summary .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.glowvian-product-summary .star-rating {
    color: #f5a623;
    font-size: 14px;
}

.glowvian-product-summary .price {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.glowvian-product-summary .price del {
    font-size: 18px;
    color: var(--glowvian-muted);
    font-weight: 400;
    margin-right: 8px;
}

.glowvian-product-summary .price ins {
    text-decoration: none;
    color: var(--glowvian-accent);
}

.glowvian-product-divider {
    height: 1px;
    background: var(--glowvian-border);
    margin: 20px 0;
}

.glowvian-product-summary .cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
}

.glowvian-product-summary .quantity {
    display: flex;
    align-items: center;
    border: 2px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius-sm);
    overflow: hidden;
    height: 50px;
}

.glowvian-product-summary .qty {
    width: 60px;
    padding: 0 8px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    height: 100%;
}

.glowvian-product-summary .button.single_add_to_cart_button {
    flex: 1;
    min-width: 160px;
    background: #37B34A !important;
    color: #fff !important;
    border: none;
    border-radius: var(--glowvian-radius-sm);
    padding: 0 28px;
    height: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.glowvian-product-summary .button.single_add_to_cart_button:hover {
    background: #2E9E40 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55,179,74,.35);
}

.glowvian-product-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.glowvian-product-stock-badge.in-stock {
    background: rgba(22,163,74,.08);
    color: #16a34a;
}

.glowvian-product-stock-badge.out-of-stock {
    background: rgba(220,38,38,.08);
    color: #dc2626;
}

.glowvian-product-meta-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.glowvian-product-meta-info span {
    font-size: 13px;
    color: var(--glowvian-muted);
}

.glowvian-product-meta-info span strong {
    color: var(--glowvian-text);
}

/* Product Tabs */
.glowvian-product-tabs-section {
    margin-top: 48px;
    border-top: 1px solid var(--glowvian-border);
    padding-top: 40px;
}

.glowvian-product-tabs-section .woocommerce-tabs {
    margin: 0;
    clear: both;
}

.glowvian-product-tabs-section .woocommerce-tabs .tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--glowvian-border);
    margin-bottom: 28px;
    padding: 0;
    list-style: none;
}

.glowvian-product-tabs-section .woocommerce-tabs .tabs li a {
    display: block;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--glowvian-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s ease;
    text-decoration: none;
}

.glowvian-product-tabs-section .woocommerce-tabs .tabs li.active a,
.glowvian-product-tabs-section .woocommerce-tabs .tabs li a:hover {
    color: var(--glowvian-accent);
    border-bottom-color: var(--glowvian-accent);
}

/* Related Products */
.glowvian-related-products {
    margin-top: 48px;
    border-top: 1px solid var(--glowvian-border);
    padding-top: 40px;
}

.glowvian-related-products h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.glowvian-related-products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--glowvian-accent), var(--glowvian-accent-2));
    border-radius: 2px;
}

/* ==========================================================================
   Cart Page
   ========================================================================== */

.glowvian-cart-page {
    padding: 40px 0 80px;
}

.glowvian-cart-hero {
    background: linear-gradient(135deg, var(--glowvian-primary) 0%, #1a4049 100%);
    padding: 28px 0;
    margin-bottom: 36px;
}

.glowvian-cart-hero h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.glowvian-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 1024px) {
    .glowvian-cart-layout {
        grid-template-columns: 1fr;
    }
}

.glowvian-cart-items-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
}

.glowvian-cart-items-header {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px 50px;
    gap: 16px;
    padding: 14px 20px;
    background: var(--glowvian-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--glowvian-muted);
    border-bottom: 1px solid var(--glowvian-border);
}

@media (max-width: 640px) {
    .glowvian-cart-items-header {
        display: none;
    }
}

.woocommerce-cart .woocommerce table.shop_table {
    border: none;
    border-radius: 0;
}

.woocommerce-cart .woocommerce table.shop_table th,
.woocommerce-cart .woocommerce table.shop_table td {
    padding: 20px;
    border-bottom: 1px solid var(--glowvian-border);
}

.woocommerce-cart .woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}

.woocommerce-cart .woocommerce table.shop_table .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glowvian-border);
}

.woocommerce-cart .woocommerce .product-remove a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--glowvian-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glowvian-muted);
    font-size: 16px;
    line-height: 1;
    transition: all .2s;
}

.woocommerce-cart .woocommerce .product-remove a:hover {
    background: #fee2e2;
    color: #dc2626;
}

.woocommerce-cart .woocommerce .quantity input.qty {
    width: 60px;
    height: 38px;
    text-align: center;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius-sm);
    font-weight: 600;
}

.woocommerce-cart .actions button[name="update_cart"] {
    background: var(--glowvian-light);
    border: 1px solid var(--glowvian-border);
    color: var(--glowvian-text);
    padding: 10px 20px;
    border-radius: var(--glowvian-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.woocommerce-cart .actions button[name="update_cart"]:hover {
    background: var(--glowvian-primary);
    color: #fff;
    border-color: var(--glowvian-primary);
}

/* Cart Totals */
.glowvian-cart-summary-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.glowvian-cart-summary-card .cart_totals {
    padding: 24px;
}

.glowvian-cart-summary-card .cart_totals h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--glowvian-border);
}

.glowvian-cart-summary-card table.shop_table {
    width: 100%;
    border: none;
}

.glowvian-cart-summary-card table.shop_table tr th,
.glowvian-cart-summary-card table.shop_table tr td {
    padding: 10px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid var(--glowvian-border);
}

.glowvian-cart-summary-card table.shop_table tr:last-child th,
.glowvian-cart-summary-card table.shop_table tr:last-child td {
    border-bottom: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--glowvian-primary);
}

.glowvian-cart-summary-card .wc-proceed-to-checkout {
    margin-top: 20px;
}

.glowvian-cart-summary-card .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--glowvian-accent);
    color: #fff;
    text-align: center;
    border-radius: var(--glowvian-radius-sm);
    font-weight: 700;
    font-size: 15px;
    transition: all .25s ease;
}

.glowvian-cart-summary-card .wc-proceed-to-checkout .checkout-button:hover {
    background: #b81f60;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214,41,118,.35);
    color: #fff;
}

/* Coupon */
.woocommerce-cart .coupon {
    display: flex;
    gap: 8px;
}

.woocommerce-cart .coupon input[name="coupon_code"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius-sm);
    font-size: 14px;
    outline: none;
}

.woocommerce-cart .coupon input[name="coupon_code"]:focus {
    border-color: var(--glowvian-accent);
}

.woocommerce-cart .coupon button[name="apply_coupon"] {
    padding: 10px 18px;
    background: var(--glowvian-primary);
    color: #fff;
    border: none;
    border-radius: var(--glowvian-radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s;
}

.woocommerce-cart .coupon button[name="apply_coupon"]:hover {
    background: var(--glowvian-accent);
}

/* Daraz Cart link button */
.glowvian-daraz-cart-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: var(--glowvian-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    text-decoration: none;
    transition: all .2s ease;
}

.glowvian-daraz-cart-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,115,22,.35);
}

.glowvian-daraz-cart-banner-text h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.glowvian-daraz-cart-banner-text p {
    color: rgba(255,255,255,.8);
    font-size: 12px;
    margin: 0;
}

.glowvian-daraz-cart-banner-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

/* ==========================================================================
   Daraz-style Cart Page
   ========================================================================== */

.glowvian-daraz-cart-page {
    padding: 28px 0 80px;
}

.glowvian-daraz-cart-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1024px) {
    .glowvian-daraz-cart-layout {
        grid-template-columns: 1fr;
    }
}

.glowvian-daraz-select-all-bar {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.glowvian-daraz-cart-item {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 24px 80px 1fr auto auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
    transition: all .2s ease;
}

.glowvian-daraz-cart-item:hover {
    border-color: rgba(214,41,118,.2);
    box-shadow: var(--glowvian-shadow-sm);
}

.glowvian-daraz-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--glowvian-border);
}

.glowvian-daraz-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.glowvian-daraz-item-info .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--glowvian-accent);
}

.glowvian-daraz-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--glowvian-border);
    border-radius: 6px;
    overflow: hidden;
}

.glowvian-daraz-qty-ctrl button {
    width: 32px;
    height: 32px;
    background: var(--glowvian-light);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--glowvian-text);
    transition: background .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glowvian-daraz-qty-ctrl button:hover {
    background: var(--glowvian-border);
}

.glowvian-daraz-qty-ctrl span {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.glowvian-daraz-summary-sticky {
    position: sticky;
    top: 90px;
}

.glowvian-daraz-summary-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    padding: 24px;
}

.glowvian-daraz-summary-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--glowvian-border);
}

.glowvian-daraz-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glowvian-border);
    color: var(--glowvian-text);
}

.glowvian-daraz-summary-row:last-of-type {
    border-bottom: none;
}

.glowvian-daraz-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: var(--glowvian-primary);
    padding: 14px 0 0;
    margin-top: 6px;
    border-top: 2px solid var(--glowvian-primary);
}

.glowvian-daraz-buy-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, var(--glowvian-accent), #b81f60);
    color: #fff;
    text-align: center;
    border-radius: var(--glowvian-radius-sm);
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: .3px;
}

.glowvian-daraz-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214,41,118,.4);
    color: #fff;
}

/* ==========================================================================
   Checkout Page
   ========================================================================== */

.glowvian-checkout-page {
    padding: 0 0 80px;
}

.glowvian-checkout-hero {
    background: linear-gradient(135deg, var(--glowvian-primary) 0%, #1a4049 100%);
    padding: 28px 0 36px;
    margin-bottom: 36px;
}

.glowvian-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
}

.glowvian-checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}

.glowvian-checkout-step.active {
    color: #fff;
}

.glowvian-checkout-step.done {
    color: rgba(255,255,255,.75);
}

.glowvian-checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.15);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.glowvian-checkout-step.active .glowvian-checkout-step-num {
    background: var(--glowvian-accent);
    color: #fff;
}

.glowvian-checkout-step.done .glowvian-checkout-step-num {
    background: rgba(255,255,255,.3);
}

.glowvian-checkout-step-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,.2);
    margin: 0 8px;
}

.glowvian-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1024px) {
    .glowvian-checkout-layout {
        grid-template-columns: 1fr;
    }
}

.glowvian-checkout-form-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    padding: 28px;
}

.glowvian-checkout-section-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--glowvian-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--glowvian-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.glowvian-checkout-section-title svg {
    color: var(--glowvian-accent);
}

/* WooCommerce form field overrides */
.woocommerce-checkout .form-row {
    margin-bottom: 0;
}

.woocommerce-checkout .form-row label {
    font-size: 13px;
    font-weight: 600;
    color: var(--glowvian-text);
    margin-bottom: 6px;
    display: block;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius-sm);
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    color: var(--glowvian-text);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--glowvian-accent);
    box-shadow: 0 0 0 3px rgba(214,41,118,.08);
}

.woocommerce-checkout #payment {
    background: var(--glowvian-light);
    border-radius: var(--glowvian-radius-sm);
    padding: 20px;
    margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--glowvian-border);
    padding-bottom: 16px;
    margin-bottom: 16px;
    list-style: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glowvian-border);
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.woocommerce-checkout #place_order {
    width: 100%;
    padding: 16px;
    background: var(--glowvian-accent);
    color: #fff;
    border: none;
    border-radius: var(--glowvian-radius-sm);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all .25s ease;
    margin-top: 16px;
}

.woocommerce-checkout #place_order:hover {
    background: #b81f60;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214,41,118,.4);
}

/* Order Review Summary */
.glowvian-order-review-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.glowvian-order-review-head {
    background: var(--glowvian-primary);
    padding: 16px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.glowvian-order-review-body {
    padding: 20px;
}

.woocommerce-checkout #order_review {
    padding: 0;
}

.woocommerce-checkout table#order_review,
.woocommerce-checkout table.woocommerce-checkout-review-order-table {
    width: 100%;
    border: none;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
    padding: 10px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid var(--glowvian-border);
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    font-size: 17px;
    font-weight: 800;
    color: var(--glowvian-accent);
    border-bottom: none;
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */

.glowvian-thankyou-page {
    padding: 60px 0 80px;
}

.glowvian-thankyou-hero {
    text-align: center;
    margin-bottom: 48px;
}

.glowvian-thankyou-animation {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: glowvian-pop .5s cubic-bezier(.34,1.56,.64,1) both;
    box-shadow: 0 0 0 0 rgba(22,163,74,.4);
    animation: glowvian-pop .5s ease both, glowvian-pulse-green 2s .6s ease-in-out infinite;
}

@keyframes glowvian-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes glowvian-pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.3); }
    50% { box-shadow: 0 0 0 16px rgba(22,163,74,0); }
}

.glowvian-thankyou-animation svg {
    color: #fff;
}

.glowvian-thankyou-hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--glowvian-primary);
    margin-bottom: 10px;
}

.glowvian-thankyou-hero p {
    color: var(--glowvian-muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
}

.glowvian-thankyou-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .glowvian-thankyou-layout {
        grid-template-columns: 1fr;
    }
}

.glowvian-order-details-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
}

.glowvian-order-details-head {
    background: linear-gradient(135deg, var(--glowvian-primary), #1a4049);
    padding: 16px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glowvian-order-details-body {
    padding: 24px;
}

.glowvian-order-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.glowvian-order-meta-item {
    padding: 14px;
    background: var(--glowvian-light);
    border-radius: var(--glowvian-radius-sm);
}

.glowvian-order-meta-item .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--glowvian-muted);
    margin-bottom: 4px;
}

.glowvian-order-meta-item .value {
    font-size: 15px;
    font-weight: 700;
    color: var(--glowvian-primary);
}

.glowvian-order-meta-item .value.accent {
    color: var(--glowvian-accent);
}

.glowvian-order-items-list {
    border-top: 1px solid var(--glowvian-border);
    padding-top: 16px;
}

.glowvian-order-items-list h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--glowvian-primary);
}

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

.glowvian-thankyou-item:last-child {
    border-bottom: none;
}

.glowvian-thankyou-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glowvian-border);
    flex-shrink: 0;
}

.glowvian-thankyou-item-info {
    flex: 1;
}

.glowvian-thankyou-item-info .name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.glowvian-thankyou-item-info .qty {
    font-size: 12px;
    color: var(--glowvian-muted);
}

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

/* Order Summary Side */
.glowvian-thankyou-summary-card {
    background: #fff;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.glowvian-thankyou-summary-head {
    background: var(--glowvian-accent);
    padding: 16px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.glowvian-thankyou-summary-body {
    padding: 20px;
}

.glowvian-thankyou-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--glowvian-border);
}

.glowvian-thankyou-total-row:last-child {
    border-bottom: none;
    font-size: 18px;
    font-weight: 800;
    color: var(--glowvian-primary);
    padding-top: 14px;
}

.glowvian-thankyou-cta {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.glowvian-thankyou-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--glowvian-accent);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all .25s ease;
}

.glowvian-thankyou-cta .btn-primary:hover {
    background: #b81f60;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214,41,118,.35);
}

.glowvian-thankyou-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--glowvian-primary);
    color: var(--glowvian-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all .25s ease;
}

.glowvian-thankyou-cta .btn-outline:hover {
    background: var(--glowvian-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Single Product Page (GSP = Glowvian Single Product)
   ========================================================================== */

.gsp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--glowvian-muted);
    padding: 18px 0 14px;
}
.gsp-breadcrumb a { color: var(--glowvian-muted); }
.gsp-breadcrumb a:hover { color: var(--glowvian-accent); }
.gsp-breadcrumb span:last-child { color: var(--glowvian-text); font-weight: 500; }

/* ==========================================================================
   Single Product Layout - Redesigned
   ========================================================================== */
.gsp-page-wrapper {
    background: #f8fafc;
    padding-top: 40px;
    padding-bottom: 60px;
}

.gsp-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 32px;
    margin-bottom: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .gsp-top-grid {
        grid-template-columns: 1fr;
    }
}

.gsp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

/* Image Card */
.gsp-main-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
    background: #f8fafc;
}
.gsp-main-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gsp-thumbs {
    display: flex;
    gap: 12px;
}
.gsp-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}
.gsp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gsp-thumb.active {
    border-color: #0f172a;
}
.gsp-thumb:hover {
    border-color: #64748b;
}

/* Summary Card */
.gsp-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 16px;
}

.gsp-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}
.gsp-sku {
    font-size: 14px;
}
.gsp-sku-label {
    font-weight: 700;
    color: #0f172a;
}
.gsp-sku-val {
    color: #64748b;
}

.gsp-social-icons {
    display: flex;
    gap: 12px;
}
.gsp-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    transition: background 0.2s;
}
.gsp-social-icons a:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.gsp-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.gsp-price-label {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}
.gsp-price-val {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.gsp-price-current {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}
.gsp-price-original {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}
.gsp-price-badge {
    background: #115e59;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
}

.gsp-stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.gsp-stock-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.gsp-stock-val {
    font-size: 13px;
    font-weight: 700;
}
.gsp-stock-val.instock {
    color: #10b981;
}
.gsp-stock-val.outofstock {
    color: #ef4444;
}

/* Short Description */
.gsp-short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 28px;
}
.gsp-short-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gsp-short-desc li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
}
.gsp-short-desc li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 10px;
    color: #3b82f6;
}

/* Add to Cart Area */
.gsp-summary-card .cart {
    margin-bottom: 32px;
}



/* Trust Badges */
.gsp-trust-badges {
    background: #e0f2fe;
    border-radius: 8px;
    padding: 24px 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gsp-trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.gsp-trust-icon {
    color: #0d9488;
}
.gsp-trust-item span {
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

/* Full Description Below */
.gsp-full-desc-card {
    margin-top: 0;
}
.gsp-desc-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 16px;
    margin-top: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
    text-align: center;
}
.gsp-desc-body {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}
.gsp-desc-body h3,
.gsp-desc-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 12px;
}
.gsp-desc-body ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.gsp-desc-body li {
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .gsp-product-top { 
        grid-template-columns: 1fr; 
        gap: 24px; 
        padding: 16px; 
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* --- Gallery --- */
.gsp-gallery-card {
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.gsp-gallery-inner {
    padding: 0 !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0 !important;
    overflow: hidden;
}

.gsp-main-img-wrap {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    width: 100%;
    aspect-ratio: 1; /* Maintain square shape for main image */
    display: flex;
    align-items: center;
    justify-content: center;
}
.gsp-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gsp-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: .3px;
}

/* Thumbnails */
.gsp-thumb {
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    opacity: 0.7;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gsp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gsp-thumb:hover {
    opacity: 1;
}
.splide__slide.is-active .gsp-thumb {
    border-color: #3b82f6; /* Matching reference blue border */
    opacity: 1;
}

/* Splide custom arrows */
.splide__arrow {
    background: #fff !important;
    border: 1px solid var(--glowvian-border) !important;
    opacity: 0.9 !important;
}
.splide__arrow:hover {
    opacity: 1 !important;
    background: #f8f9fa !important;
}
/* --- Summary --- */
.gsp-summary {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.gsp-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--glowvian-primary);
    margin: 0 0 12px;
    line-height: 1.4;
}

.gsp-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.gsp-sku { font-size: 13px; color: var(--glowvian-muted); }
.gsp-sku strong { color: var(--glowvian-text); }

.gsp-share-icons { display: flex; gap: 6px; }
.gsp-share-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity .2s;
}
.gsp-share-btn:hover { opacity: .8; color: #fff; }

/* Price */
.gsp-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.gsp-price-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--glowvian-muted);
    white-space: nowrap;
}
.gsp-price-val { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gsp-price-current {
    font-size: 24px;
    font-weight: 800;
    color: var(--glowvian-primary);
}
.gsp-price-current .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.gsp-price-original {
    font-size: 15px;
    color: var(--glowvian-muted);
    text-decoration: line-through;
}
.gsp-price-original .woocommerce-Price-amount { font-size: inherit; }
.gsp-price-badge {
    background: #0f2d3a; /* Dark slate green matching screenshot */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    margin-left: 4px;
}

/* Stock */
.gsp-stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.gsp-stock-label { font-size: 13px; font-weight: 700; color: var(--glowvian-muted); }
.gsp-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
}
.gsp-stock-badge.instock { background: #e8f5e9; color: #2e7d32; }
.gsp-stock-badge.outofstock { background: #fce4ec; color: #c62828; }

/* Short desc */
.gsp-short-desc {
    font-size: 13.5px;
    color: var(--glowvian-text);
    line-height: 1.6;
    margin-bottom: 24px;
}
.gsp-short-desc ul { 
    padding-left: 0; 
    margin: 6px 0 0; 
    list-style: none;
}
.gsp-short-desc li { 
    margin-bottom: 8px; 
    position: relative;
    padding-left: 14px;
}
.gsp-short-desc li::before {
    content: "◆";
    color: #3b82f6;
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 5px;
}
.gsp-short-desc p { margin-bottom: 6px; }

/* WooCommerce Add-to-Cart form overrides */
.gsp-summary .cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.gsp-summary .cart .quantity-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--glowvian-muted);
    margin-bottom: 6px;
    display: block;
}
.gsp-summary .cart .quantity {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--glowvian-border);
    border-radius: 6px;
    overflow: hidden;
    height: 44px;
}
.gsp-summary .qty {
    width: 56px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 700;
    font-size: 15px;
    height: 100%;
}
/* Override quantity +/- via WooCommerce plus/minus buttons */
.gsp-summary .cart .quantity-button {
    width: 36px;
    height: 44px;
    border: none;
    background: var(--glowvian-light);
    font-size: 20px;
    cursor: pointer;
    color: var(--glowvian-text);
    transition: background .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gsp-summary .cart .quantity-button:hover { background: var(--glowvian-border); }

/* Buttons row */
.gsp-summary .cart .button.single_add_to_cart_button {
    flex: 1;
    height: 48px;
    padding: 0 24px;
    background: #37B34A !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, transform .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.gsp-summary .cart .button.single_add_to_cart_button:hover {
    background: #2E9E40 !important;
    transform: translateY(-1px);
}



/* Quantity row: QUANTITY label inline with stepper */
/* Quantity row: QUANTITY label inline with stepper */
.gsp-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.gsp-qty-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Modern Pill-Style Quantity Stepper */
.gsp-qty-row .quantity,
.gsp-summary-card .cart .quantity,
.gsp-summary .cart .quantity {
    display: inline-flex !important;
    align-items: center !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 3px !important;
    height: 42px !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

.gsp-qty-row .quantity:focus-within,
.gsp-summary-card .cart .quantity:focus-within {
    border-color: #1a9e8e !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(26, 158, 142, 0.12) !important;
}

.gsp-qty-row .qty,
.gsp-summary-card .qty,
.gsp-summary .qty {
    width: 46px !important;
    height: 100% !important;
    text-align: center !important;
    border: none !important;
    background: transparent !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #0f172a !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
}

.gsp-qty-row .qty::-webkit-outer-spin-button,
.gsp-qty-row .qty::-webkit-inner-spin-button,
.gsp-summary-card .qty::-webkit-outer-spin-button,
.gsp-summary-card .qty::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }

/* Modern Stepper Buttons */
.gsp-qty-row .qty-minus,
.gsp-qty-row .qty-plus,
.gsp-summary-card .qty-minus,
.gsp-summary-card .qty-plus,
.qty-minus,
.qty-plus {
    width: 34px !important;
    height: 34px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    user-select: none !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

.gsp-qty-row .qty-minus:hover,
.gsp-qty-row .qty-plus:hover,
.gsp-summary-card .qty-minus:hover,
.gsp-summary-card .qty-plus:hover,
.qty-minus:hover,
.qty-plus:hover {
    background: #1a9e8e !important;
    color: #ffffff !important;
    border-color: #1a9e8e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(26, 158, 142, 0.2) !important;
}

.gsp-qty-row .qty-minus:active,
.gsp-qty-row .qty-plus:active,
.gsp-summary-card .qty-minus:active,
.gsp-summary-card .qty-plus:active,
.qty-minus:active,
.qty-plus:active {
    transform: translateY(0) !important;
}

/* Divider above buttons */
.gsp-cart-divider {
    height: 1px;
    background: var(--glowvian-border);
    margin: 14px 0;
}

/* Buttons row: Buy Now & Add to Cart stacked horizontally */
.gsp-btn-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    margin-top: 18px;
}

.gsp-summary .cart {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

/* Buy Now — dark primary action on top */
.gsp-btn-row .gsp-buy-now-btn {
    order: 1;
    width: 100% !important;
    height: 48px !important;
    padding: 0 20px !important;
    background: #1c3d4f !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box !important;
    margin: 0 !important;
}
.gsp-btn-row .gsp-buy-now-btn:hover {
    background: #142d3a !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Add to Cart — logo primary action */
.gsp-btn-row .single_add_to_cart_button {
    order: 2;
    width: 100% !important;
    height: 48px !important;
    padding: 0 20px !important;
    background: #37B34A !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-sizing: border-box !important;
    margin: 0 !important;
}
.gsp-btn-row .single_add_to_cart_button:hover {
    background: #2E9E40 !important;
    transform: translateY(-1px);
}

.gsp-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--glowvian-border);
    border-radius: var(--glowvian-radius);
    overflow: hidden;
    margin-top: 20px;
}
@media (max-width: 640px) {
    .gsp-trust-badges { grid-template-columns: repeat(2, 1fr); }
}
.gsp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    gap: 8px;
    border-right: 1px solid var(--glowvian-border);
    transition: background .2s;
}
.gsp-trust-item:last-child { border-right: none; }
.gsp-trust-item:hover { background: #f9f9f9; }
.gsp-trust-icon {
    color: var(--glowvian-primary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gsp-trust-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--glowvian-text);
    line-height: 1.4;
}

/* --- Bottom Section --- */
.gsp-product-bottom {
    border-top: 1px solid var(--glowvian-border);
    padding-top: 28px;
    margin-bottom: 40px;
}

/* Description */
.gsp-description-section {
    margin-bottom: 32px;
}
.gsp-desc-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--glowvian-accent);
    text-align: center;
    margin-bottom: 20px;
    padding: 14px 0;
    border-bottom: 2px solid var(--glowvian-border);
    position: relative;
}
.gsp-desc-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--glowvian-accent);
}
.gsp-desc-body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--glowvian-text);
}
.gsp-desc-body h3, .gsp-desc-body h4 {
    color: var(--glowvian-primary);
    margin: 20px 0 8px;
    font-size: 15px;
    font-weight: 700;
}
.gsp-desc-body ul { padding-left: 20px; margin-bottom: 12px; }
.gsp-desc-body li { margin-bottom: 5px; }
.gsp-desc-body p { margin-bottom: 10px; }

/* WooCommerce tabs override */
.gsp-product-bottom .woocommerce-tabs ul.tabs {
    display: flex;
    border-bottom: 2px solid var(--glowvian-border);
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    gap: 0;
}
.gsp-product-bottom .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 14px;
    color: var(--glowvian-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.gsp-product-bottom .woocommerce-tabs ul.tabs li.active a,
.gsp-product-bottom .woocommerce-tabs ul.tabs li a:hover {
    color: var(--glowvian-accent);
    border-bottom-color: var(--glowvian-accent);
}

/* Related Products */
.gsp-related-section .related.products { margin-top: 0; }
.gsp-related-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--glowvian-border);
    position: relative;
}
.gsp-related-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: var(--glowvian-accent);
}

/* ==========================================================================
   Drawer Cart (Production Grade Slide-Out Cart)
   ========================================================================== */
.glowvian-drawer-cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glowvian-drawer-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}
.glowvian-drawer-cart {
    position: fixed;
    top: 0; right: -460px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.glowvian-drawer-cart.open {
    right: 0;
}

/* Header */
.glowvian-drawer-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
}
.glowvian-drawer-cart-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.glowvian-drawer-cart-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}
.glowvian-drawer-count-badge {
    background: #f1f5f9;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}
.glowvian-drawer-cart-close {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}
.glowvian-drawer-cart-close:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
    transform: rotate(90deg);
}

/* Cash on Delivery Banner */
.glowvian-free-shipping-box,
.glowvian-cod-banner {
    background: #f0fdfa;
    border-bottom: 1px solid #ccfbf1;
    padding: 12px 20px;
    flex-shrink: 0;
}
.glowvian-fs-text {
    font-size: 13px;
    color: #334155;
    margin: 0;
    text-align: center;
}

/* Content Container */
.glowvian-drawer-cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}
.glowvian-drawer-cart .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Items List */
.glowvian-drawer-items-list {
    flex: 1;
    overflow-y: auto;
    list-style: none !important;
    padding: 0 24px !important;
    margin: 0 !important;
}
.glowvian-mini-cart-item {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 20px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    position: relative;
    transition: opacity 0.2s ease;
}
.glowvian-mini-cart-item.loading {
    opacity: 0.5;
    pointer-events: none;
}
.glowvian-mci-thumb {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.glowvian-mci-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.glowvian-mci-details {
    flex: 1;
    min-width: 0;
}
.glowvian-mci-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}
.glowvian-mci-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #0f172a;
}
.glowvian-mci-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s;
}
.glowvian-mci-title a:hover {
    color: #1a9e8e;
}
.glowvian-mci-remove {
    background: none !important;
    border: none !important;
    color: #94a3b8 !important;
    cursor: pointer !important;
    padding: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}
.glowvian-mci-remove:hover {
    color: #ef4444 !important;
    background: #fee2e2 !important;
}

/* Stepper inside Drawer Item */
.glowvian-mci-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.glowvian-mci-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #f8fafc;
    padding: 2px;
}
.glowvian-mci-qty-btn {
    width: 26px;
    height: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.glowvian-mci-qty-btn:hover {
    background: #1a9e8e;
    color: #fff;
    border-color: #1a9e8e;
}
.glowvian-mci-qty-num {
    min-width: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}
.glowvian-mci-price {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

/* Drawer Sticky Footer */
.glowvian-drawer-footer {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding: 20px 24px;
    flex-shrink: 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.03);
}
.glowvian-drawer-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.glowvian-subtotal-label {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}
.glowvian-subtotal-amount {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
}
.glowvian-drawer-tax-notice {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 16px 0;
    text-align: center;
}
.glowvian-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.glowvian-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.glowvian-drawer-btn-checkout {
    background: #1a9e8e;
    color: #ffffff !important;
}
.glowvian-drawer-btn-checkout:hover {
    background: #148375;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 158, 142, 0.25);
}
.glowvian-drawer-btn-cart {
    background: #f8fafc;
    color: #334155 !important;
    border: 1px solid #e2e8f0;
}
.glowvian-drawer-btn-cart:hover {
    background: #f1f5f9;
    color: #0f172a !important;
}

/* Empty State */
.glowvian-drawer-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    height: 100%;
}
.glowvian-empty-icon-wrap {
    width: 88px;
    height: 88px;
    background: #f0fdfa;
    color: #1a9e8e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.glowvian-empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.glowvian-empty-subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 24px 0;
    max-width: 260px;
}
.glowvian-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #1a9e8e;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.glowvian-empty-btn:hover {
    background: #148375;
    transform: translateY(-1px);
}

/* Delivery Area Radio Horizontal Layout - Premium Style */
p.gsp-delivery-area span.woocommerce-input-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-top: 12px !important;
}
p.gsp-delivery-area span.woocommerce-input-wrapper input[type="radio"] {
    display: none !important; /* Hide native radio to use custom CSS dots */
}
p.gsp-delivery-area span.woocommerce-input-wrapper label.radio {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    border: 2px solid var(--glowvian-border) !important;
    border-radius: 8px !important;
    background: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--glowvian-text) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
}

/* Custom CSS Radio Dot */
p.gsp-delivery-area span.woocommerce-input-wrapper label.radio::before {
    content: '';
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 10px !important;
    border: 2px solid #ccc !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    background: #fff !important;
    flex-shrink: 0 !important;
}

/* Checked State Styling */
p.gsp-delivery-area span.woocommerce-input-wrapper input[type="radio"]:checked + label.radio {
    border-color: var(--glowvian-primary) !important;
    background: rgba(64, 178, 75, 0.05) !important; /* subtle green background */
    color: var(--glowvian-primary) !important;
}
p.gsp-delivery-area span.woocommerce-input-wrapper input[type="radio"]:checked + label.radio::before {
    border-color: var(--glowvian-primary) !important;
    background: var(--glowvian-primary) !important;
    box-shadow: inset 0 0 0 4px #fff !important; /* Creates the dot effect */
}

/* Hide eye button on product cards */
.glowvian-product-quick-actions a[aria-label="View Product"] {
    display: none !important;
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    .gsp-btn-row {
        gap: 12px;
        margin-top: 18px;
    }
    .gsp-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Hide Terms and Privacy Policy on Checkout */
.woocommerce-terms-and-conditions-wrapper {
    display: none !important;
}

/* Product Card Action Buttons (Eye-catching styling) */
.glowvian-card-buy-now-btn {
    background: #1c3d4f !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    transition: all 0.2s ease !important;
}
.glowvian-card-buy-now-btn:hover {
    background: #102430 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(28, 61, 79, 0.25);
}

.glowvian-card-add-to-cart-btn {
    background: #1a9e8e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    transition: all 0.2s ease !important;
}
.glowvian-card-add-to-cart-btn:hover {
    background: #148375 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(26, 158, 142, 0.25);
}
/* ==========================================================================
   Single Product Button Row 
   ========================================================================== */
@media (min-width: 769px) {
    .gsp-btn-row {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px;
        align-items: center;
    }
    .gsp-btn-row .single_add_to_cart_button,
    .gsp-btn-row .gsp-buy-now-btn {
        flex: 1;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100%;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .gsp-btn-row {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .gsp-btn-row .single_add_to_cart_button,
    .gsp-btn-row .gsp-buy-now-btn {
        flex: 1;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Single Product Image Gallery Fix
   ========================================================================== */
.woocommerce div.product div.images .woocommerce-product-gallery__image {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    margin-bottom: 15px !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    display: block;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 8px; /* Optional: adds a slight curve if desired, remove if purely raw */
}
/* Gallery Thumbnails */
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    list-style: none;
    flex: 1;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    padding: 0 !important;
    border: 1px solid #ddd !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.2s ease;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    border-color: var(--glowvian-accent) !important;
    opacity: 1;
}
/*
Hide
Price
Filter
/*
Hide
Price
Filter
from
Shop
Sidebar
*/

.widget_price_filter,
.wp-block-woocommerce-price-filter {
    display: none !important;
}

/* Global Button Color Overrides for USA Daily Shop Logo Green (#37B34A) */
.single_add_to_cart_button,
button.single_add_to_cart_button,
button[name="add-to-cart"],
.gsp-btn-row .single_add_to_cart_button,
.glowvian-product-summary .button.single_add_to_cart_button,
.gsp-summary .cart .button.single_add_to_cart_button,
.glowvian-card-add-to-cart-btn,
.add_to_cart_button {
    background-color: #37B34A !important;
    background: #37B34A !important;
    color: #ffffff !important;
    border: none !important;
}

.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover,
button[name="add-to-cart"]:hover,
.gsp-btn-row .single_add_to_cart_button:hover,
.glowvian-product-summary .button.single_add_to_cart_button:hover,
.gsp-summary .cart .button.single_add_to_cart_button:hover,
.glowvian-card-add-to-cart-btn:hover,
.add_to_cart_button:hover {
    background-color: #2E9E40 !important;
    background: #2E9E40 !important;
    color: #ffffff !important;
}

.gsp-btn-row .gsp-buy-now-btn,
.gsp-buy-now-btn {
    background-color: #1c3d4f !important;
    background: #1c3d4f !important;
    color: #ffffff !important;
    border: none !important;
}

.gsp-btn-row .gsp-buy-now-btn:hover,
.gsp-buy-now-btn:hover {
    background-color: #142d3a !important;
    background: #142d3a !important;
    color: #ffffff !important;
}
