/**
 * ASAP Alcohol Delivery - WooCommerce Product Filter Theme
 * Blended dark/light theme with orange accents
 */

/* ===========================
   CSS Variables
   =========================== */
:root {
    --asap-bg-dark: #0E0C0A;
    --asap-bg-card: #171412;
    --asap-bg-lighter: #1f1c19;
    --asap-bg-light: #ffffff;
    --asap-bg-cream: #fafafa;
    --asap-accent: #CF6726;
    --asap-accent-hover: #DC7E43;
    --asap-accent-light: rgba(207, 103, 38, 0.1);
    --asap-text-white: #ffffff;
    --asap-text-dark: #171412;
    --asap-text-light: #cccccc;
    --asap-text-muted: #888888;
    --asap-text-body: #555555;
    --asap-border: #2a2725;
    --asap-border-light: #e5e5e5;
    --asap-font-heading: 'Poppins', Arial, sans-serif;
    --asap-font-body: 'Poppins', Arial, sans-serif;
    --asap-stock-bg: #666666;
}

/* ===========================
   Base Container
   =========================== */
.asap-product-filter-container,
.asap-alc-pf-container,
.asap-drink-section-container,
.asap-category-archive,
.asap-category-listing-container,
.asap-category-tabs-container {
    font-family: var(--asap-font-body);
    box-sizing: border-box;
}

.asap-single-product,
.asap-alc-single-product {
    box-sizing: border-box;
}

.asap-product-filter-container *,
.asap-alc-pf-container *,
.asap-drink-section-container *,
.asap-category-archive *,
.asap-category-listing-container *,
.asap-category-tabs-container * {
    box-sizing: border-box;
}

.asap-single-product *,
.asap-alc-single-product * {
    box-sizing: border-box;
}

/* ===========================
   CATEGORY TABS NAVIGATION (Dark Theme)
   =========================== */
.asap-category-tabs-container {
    background-color: transparent;
    padding: 0;
}

.asap-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid var(--asap-border);
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.asap-category-tab {
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--asap-text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
}

.asap-category-tab:hover {
    color: var(--asap-accent);
}

.asap-category-tab.active {
    color: var(--asap-text-white);
}

.asap-category-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--asap-accent);
}

/* ===========================
   CATEGORY SECTION (Dark Theme)
   =========================== */
.asap-category-section {
    background-color: transparent;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.asap-category-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--asap-text-white);
    margin: 0 0 25px 0;
    padding: 0;
}

.asap-category-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* ===========================
   PRODUCT CARD (Dark Theme)
   =========================== */
.asap-product-card,
.asap-alc-product-card {
    background: #0a0a0a !important;
    border: 1px solid var(--asap-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.asap-product-card:hover,
.asap-alc-product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
    border-color: var(--asap-accent);
}

/* Out of Stock Badge */
.asap-stock-badge,
.asap-alc-stock-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--asap-stock-bg);
    color: var(--asap-text-white);
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.asap-product-card.out-of-stock .asap-card-image,
.asap-alc-product-card.out-of-stock .asap-alc-card-image {
    opacity: 0.6;
}

/* Product Card Image */
.asap-card-image,
.asap-alc-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--asap-bg-card);
}

.asap-card-image a,
.asap-alc-card-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.asap-card-image img,
.asap-alc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asap-product-card:hover .asap-card-image img,
.asap-alc-product-card:hover .asap-alc-card-image img {
    transform: scale(1.05);
}

/* Product Card Info */
.asap-card-info,
.asap-alc-card-info {
    padding: 15px;
}

.asap-card-title,
.asap-alc-card-title {
    font-size: 16px !important;
    font-weight: 500;
    color: var(--asap-text-white) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 42px !important;
}

.asap-card-title a,
.asap-alc-card-title a {
    color: inherit;
    text-decoration: none;
}

.asap-card-title a:hover,
.asap-alc-card-title a:hover {
    color: var(--asap-accent);
}

/* Price and Add Button Row */
.asap-card-footer,
.asap-alc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asap-card-price,
.asap-alc-card-price {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--asap-text-white) !important;
}

.asap-card-price del,
.asap-alc-card-price del {
    color: var(--asap-text-muted);
    font-size: 13px;
    margin-right: 5px;
}

.asap-card-price ins,
.asap-alc-card-price ins {
    text-decoration: none;
    color: var(--asap-accent);
}

/* ADD + Button (Not used but kept for compatibility) */
.asap-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--asap-accent);
    border-radius: 4px;
    color: var(--asap-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.asap-add-btn:hover {
    background-color: var(--asap-accent);
    color: var(--asap-text-white);
}

.asap-add-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===========================
   SINGLE PRODUCT PAGE (White/Light Theme)
   =========================== */
.asap-single-product,
.asap-alc-single-product {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.asap-single-product-container,
.asap-alc-sp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Gallery */
.asap-product-gallery,
.asap-alc-sp-gallery {
    position: relative;
}

.asap-product-main-image,
.asap-alc-sp-main-image {
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.asap-product-main-image img,
.asap-alc-sp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asap-product-thumbnails,
.asap-alc-sp-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.asap-product-thumbnail,
.asap-alc-sp-thumbnail {
    width: 80px;
    aspect-ratio: 1 / 1;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.asap-product-thumbnail:hover,
.asap-product-thumbnail.active,
.asap-alc-sp-thumbnail:hover,
.asap-alc-sp-thumbnail.active {
    border-color: var(--asap-accent);
    background: #fff;
}

.asap-product-thumbnail img,
.asap-alc-sp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Details */
.asap-product-details,
.asap-alc-sp-details {
    padding-top: 20px;
}

.asap-product-category-link,
.asap-alc-sp-category-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--asap-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.asap-product-category-link:hover,
.asap-alc-sp-category-link:hover {
    color: var(--asap-accent-hover);
}

.asap-product-name,
.asap-alc-sp-name {
    font-size: 30px !important;
    font-weight: 600;
    color: #1a1a1a !important;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: 0;
}

.asap-product-price-large,
.asap-alc-sp-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.asap-product-price-large del,
.asap-alc-sp-price del {
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.asap-product-price-large ins,
.asap-alc-sp-price ins {
    text-decoration: none;
    color: var(--asap-accent);
}

.asap-product-stock-status,
.asap-alc-sp-stock {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.asap-product-stock-status.in-stock,
.asap-alc-sp-stock.in-stock {
    background-color: rgba(76, 175, 80, 0.12);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.asap-product-stock-status.out-of-stock,
.asap-alc-sp-stock.out-of-stock {
    background-color: rgba(244, 67, 54, 0.12);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.asap-product-description,
.asap-alc-sp-short-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Order Buttons */
.asap-order-buttons,
.asap-alc-sp-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.asap-btn,
.asap-alc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
}

.asap-btn-icon,
.asap-alc-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.asap-btn-order,
.asap-alc-btn-order {
    background: linear-gradient(135deg, var(--asap-accent) 0%, #e07830 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(207, 103, 38, 0.35);
}

.asap-btn-order span,
.asap-btn-order svg,
.asap-alc-btn-order span,
.asap-alc-btn-order svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.asap-btn-order:hover,
.asap-alc-btn-order:hover {
    background: linear-gradient(135deg, #e07830 0%, var(--asap-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 103, 38, 0.45);
    color: #ffffff;
}

.asap-btn-schedule,
.asap-alc-btn-schedule {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
}

.asap-btn-schedule:hover,
.asap-alc-btn-schedule:hover {
    background: #fff;
    border-color: var(--asap-accent);
    color: var(--asap-accent);
    transform: translateY(-2px);
}

/* Product Meta */
.asap-product-meta,
.asap-alc-sp-meta {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.asap-meta-item,
.asap-alc-sp-meta-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 14px;
}

.asap-meta-label,
.asap-alc-sp-meta-label {
    font-weight: 600;
    color: #333;
    min-width: 100px;
}

.asap-meta-value,
.asap-alc-sp-meta-value {
    color: #666;
}

.asap-meta-value a,
.asap-alc-sp-meta-value a {
    color: var(--asap-accent);
    text-decoration: none;
}

.asap-meta-value a:hover,
.asap-alc-sp-meta-value a:hover {
    text-decoration: underline;
}

/* Product Meta Category & Tag Links - Specific styles to prevent WP conflicts */
.asap-alc-sp-meta-category,
.asap-alc-sp-meta-tags {
    display: flex !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
}

.asap-alc-sp-meta-cat-list,
.asap-alc-sp-meta-tag-list {
    color: #666 !important;
}

.asap-alc-sp-meta-cat-link,
.asap-alc-sp-meta-tag-link {
    color: var(--asap-accent, #CF6726) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.asap-alc-sp-meta-cat-link:hover,
.asap-alc-sp-meta-tag-link:hover {
    text-decoration: underline !important;
    color: var(--asap-accent-hover, #DC7E43) !important;
}

/* Full Description Section */
.asap-full-description,
.asap-alc-sp-full-desc {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #e5e5e5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.asap-description-title,
.asap-alc-sp-desc-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.asap-description-content,
.asap-alc-sp-desc-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.asap-description-content p,
.asap-alc-sp-desc-content p {
    margin-bottom: 15px;
}

.asap-description-content ul,
.asap-description-content ol,
.asap-alc-sp-desc-content ul,
.asap-alc-sp-desc-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.asap-description-content li,
.asap-alc-sp-desc-content li {
    margin-bottom: 8px;
}

.asap-description-content h2,
.asap-description-content h3,
.asap-description-content h4,
.asap-alc-sp-desc-content h2,
.asap-alc-sp-desc-content h3,
.asap-alc-sp-desc-content h4 {
    color: #1a1a1a;
    margin: 20px 0 10px;
}

/* ===========================
   RELATED PRODUCTS (Light Theme for Single Product)
   =========================== */
.asap-single-product .asap-related-products,
.asap-alc-single-product .asap-alc-sp-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.asap-single-product .asap-related-title,
.asap-alc-single-product .asap-alc-sp-related-title,
.asap-alc-sp-related-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 0 30px 0 !important;
}

.asap-single-product .asap-related-grid,
.asap-alc-single-product .asap-alc-sp-related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.asap-single-product .asap-product-card,
.asap-alc-single-product .asap-alc-product-card,
.asap-alc-sp-related .asap-alc-product-card,
.asap-alc-sp-related-grid .asap-alc-product-card {
    background: #f9f9f9 !important;
    border: 1px solid #e5e5e5 !important;
}

.asap-single-product .asap-product-card:hover,
.asap-alc-single-product .asap-alc-product-card:hover,
.asap-alc-sp-related .asap-alc-product-card:hover,
.asap-alc-sp-related-grid .asap-alc-product-card:hover {
    border-color: var(--asap-accent) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.asap-single-product .asap-card-image,
.asap-alc-single-product .asap-alc-card-image,
.asap-alc-sp-related .asap-alc-card-image,
.asap-alc-sp-related-grid .asap-alc-card-image {
    background-color: #fff !important;
}

.asap-single-product .asap-card-info,
.asap-alc-single-product .asap-alc-card-info,
.asap-alc-sp-related .asap-alc-card-info,
.asap-alc-sp-related-grid .asap-alc-card-info {
    background: #f9f9f9 !important;
}

.asap-single-product .asap-card-title,
.asap-alc-single-product .asap-alc-card-title,
.asap-alc-sp-related .asap-alc-card-title,
.asap-alc-sp-related-grid .asap-alc-card-title,
.asap-alc-sp-related .asap-alc-card-title a,
.asap-alc-sp-related-grid .asap-alc-card-title a {
    color: #1a1a1a !important;
}

.asap-single-product .asap-card-price,
.asap-alc-single-product .asap-alc-card-price,
.asap-alc-single-product .asap-alc-sp-related .asap-alc-card-price,
.asap-alc-single-product .asap-alc-sp-related-grid .asap-alc-card-price {
    color: #1a1a1a !important;
}

/* Related products card prices - ensure visibility */
.asap-alc-sp-related .asap-alc-card-price,
.asap-alc-sp-related-grid .asap-alc-card-price,
.asap-alc-sp-related .asap-alc-card-price span,
.asap-alc-sp-related-grid .asap-alc-card-price span,
.asap-alc-sp-related .asap-alc-card-price bdi,
.asap-alc-sp-related-grid .asap-alc-card-price bdi {
    color: #1a1a1a !important;
}

.asap-single-product .asap-stock-badge,
.asap-alc-single-product .asap-alc-stock-badge {
    background-color: rgba(244, 67, 54, 0.9);
}

/* No related products message - Black text */
.asap-single-product .asap-related-grid p,
.asap-single-product .asap-related-products p,
.asap-alc-single-product .asap-alc-sp-related-grid p,
.asap-alc-single-product .asap-alc-sp-related p {
    color: #1a1a1a !important;
}

/* Ensure description text is black - comprehensive rules */
.asap-single-product .asap-description-content,
.asap-single-product .asap-description-content *,
.asap-single-product .asap-product-description,
.asap-single-product .asap-product-description *,
.asap-single-product .asap-full-description,
.asap-single-product .asap-full-description *,
.asap-single-product .asap-full-description p,
.asap-single-product .asap-full-description span,
.asap-single-product .asap-full-description li,
.asap-single-product .asap-full-description ul,
.asap-single-product .asap-full-description ol,
.asap-single-product .asap-product-description p,
.asap-single-product .asap-product-description span,
.asap-single-product .asap-product-description li,
.asap-alc-single-product .asap-alc-sp-desc-content,
.asap-alc-single-product .asap-alc-sp-desc-content *,
.asap-alc-single-product .asap-alc-sp-desc-content p,
.asap-alc-single-product .asap-alc-sp-desc-content span,
.asap-alc-single-product .asap-alc-sp-desc-content li,
.asap-alc-single-product .asap-alc-sp-desc-content ul,
.asap-alc-single-product .asap-alc-sp-desc-content ol,
.asap-alc-single-product .asap-alc-sp-full-desc,
.asap-alc-single-product .asap-alc-sp-full-desc *,
.asap-alc-single-product .asap-alc-sp-full-desc p,
.asap-alc-single-product .asap-alc-sp-full-desc span,
.asap-alc-sp-desc-content,
.asap-alc-sp-desc-content p,
.asap-alc-sp-desc-content span,
.asap-alc-sp-desc-content li {
    color: #333 !important;
}

/* Override any theme or WooCommerce styles on description */
.asap-single-product .asap-product-details .asap-product-description,
.asap-single-product .asap-product-details .asap-product-description p,
.asap-single-product .asap-product-details .asap-product-description span,
.asap-single-product .asap-product-details .asap-product-description div {
    color: #333 !important;
}

/* Default Related Products (Dark Theme) */
.asap-related-products {
    margin-top: 60px !important;
    padding-top: 40px !important;
    border-top: 1px solid var(--asap-border) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.asap-related-title {
    font-size: 24px !important;
    font-weight: 600;
    color: var(--asap-text-white) !important;
    margin: 0 0 30px 0 !important;
    display: block !important;
    visibility: visible !important;
}

.asap-related-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===========================
   MORE CATEGORIES SECTION (Light Theme for Single Product)
   =========================== */
.asap-single-product .asap-more-categories,
.asap-alc-single-product .asap-alc-sp-more-cats {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.asap-single-product .asap-more-categories-title,
.asap-alc-single-product .asap-alc-sp-more-cats-title,
.asap-alc-sp-more-cats-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 0 20px 0 !important;
}

.asap-single-product .asap-category-pill,
.asap-alc-single-product .asap-alc-sp-cat-pill,
.asap-alc-sp-cat-pill {
    background-color: #f5f5f5 !important;
    border: 1px solid #e0e0e0 !important;
    color: #333 !important;
}

.asap-single-product .asap-category-pill:hover,
.asap-alc-single-product .asap-alc-sp-cat-pill:hover,
.asap-alc-sp-cat-pill:hover {
    background-color: var(--asap-accent) !important;
    border-color: var(--asap-accent) !important;
    color: #fff !important;
}

/* Default More Categories (Dark Theme) */
.asap-more-categories,
.asap-alc-sp-more-cats {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--asap-border);
}

.asap-more-categories-title,
.asap-alc-sp-more-cats-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--asap-text-white);
    margin: 0 0 20px 0;
}

.asap-category-pills,
.asap-alc-sp-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.asap-category-pill,
.asap-alc-sp-cat-pill {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--asap-bg-lighter);
    border: 1px solid var(--asap-border);
    border-radius: 25px;
    color: var(--asap-text-white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.asap-category-pill:hover,
.asap-alc-sp-cat-pill:hover {
    background-color: var(--asap-accent);
    border-color: var(--asap-accent);
    color: var(--asap-text-white);
}

/* ===========================
   PRODUCT FILTER (Reference Design)
   =========================== */
.asap-product-filter-container,
.asap-alc-pf-container {
    background: #f5f3f1;
    color: #1f1c19;
    width: 100%;
    padding: 2rem;
    font-family: var(--asap-font-body);
    line-height: 1.6;
}

.asap-filter-header,
.asap-alc-pf-header {
    margin-bottom: 2rem;
}

.asap-filter-header-title,
.asap-alc-pf-header-title {
    display: none;
}

.asap-search-container,
.asap-alc-pf-search {
    width: 100%;
}

.asap-search-icon {
    display: none;
}

.asap-search-input,
.asap-alc-pf-search-input {
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    border: 2px solid #e0dcd8;
    border-radius: 50px;
    color: #1f1c19;
    font-size: 15px;
    font-family: var(--asap-font-body);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.asap-search-input::placeholder,
.asap-alc-pf-search-input::placeholder {
    color: #999;
}

.asap-search-input:focus,
.asap-alc-pf-search-input:focus {
    border-color: var(--asap-accent);
    box-shadow: 0 4px 12px rgba(207, 103, 38, 0.15);
}

.asap-filter-main,
.asap-alc-pf-main {
    display: flex;
    gap: 2rem;
}

.asap-filter-sidebar,
.asap-alc-pf-sidebar {
    flex: 0 0 280px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #d0ccc8;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.asap-sidebar-title,
.asap-alc-pf-sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--asap-accent);
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: normal;
}

.asap-category-filters,
.asap-alc-pf-cat-filters {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.asap-filter-option,
.asap-alc-pf-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 14px;
    color: var(--asap-accent) !important;
}

.asap-filter-option span,
.asap-alc-pf-option span {
    color: var(--asap-accent) !important;
}

.asap-filter-option:hover,
.asap-alc-pf-option:hover {
    color: #DC7E43 !important;
}

.asap-filter-option:hover span,
.asap-alc-pf-option:hover span {
    color: #DC7E43 !important;
}

.asap-filter-option input[type="checkbox"],
.asap-alc-pf-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--asap-accent);
}

.asap-filter-option span.filter-label,
.asap-alc-pf-option span.filter-label {
    flex: 1;
}

.asap-filter-option .asap-filter-count,
.asap-alc-pf-option .asap-alc-pf-filter-count {
    font-size: 12px;
    color: #8b8682;
    margin-left: 5px;
}

/* Clear Filters Button */
.asap-clear-filters,
.asap-alc-pf-clear {
    width: 100%;
    padding: 0.75rem;
    background: #f5f3f1;
    border: 1px solid #d0ccc8;
    border-radius: 6px;
    color: var(--asap-accent);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    margin-top: 1.5rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.asap-clear-filters:hover,
.asap-alc-pf-clear:hover {
    background: #ede9e6;
    border-color: var(--asap-accent);
}

.asap-filter-content,
.asap-alc-pf-content {
    flex: 1;
    min-width: 0;
}

.asap-content-header,
.asap-alc-pf-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 1.5rem;
    border: none;
}

.asap-results-info,
.asap-alc-pf-results-info {
    font-size: 14px;
    color: #6b6662;
}

.asap-controls,
.asap-alc-pf-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asap-view-toggle {
    display: none;
}

.asap-product-sorting,
.asap-alc-pf-sorting {
    padding: 10px 35px 10px 12px;
    background: #fff;
    border: 1px solid #d0ccc8;
    border-radius: 6px;
    color: #1f1c19;
    font-size: 14px;
    font-family: var(--asap-font-body);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.3s ease;
}

.asap-product-sorting:hover,
.asap-product-sorting:focus,
.asap-alc-pf-sorting:hover,
.asap-alc-pf-sorting:focus {
    border-color: var(--asap-accent);
}

.asap-product-sorting option,
.asap-alc-pf-sorting option {
    background-color: #fff;
    color: #1f1c19;
}

/* Products Grid */
.asap-products-grid,
.asap-alc-pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.asap-product-item {
    background: #fff;
    border: 1px solid #d0ccc8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.asap-product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(207, 103, 38, 0.15);
}

.asap-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f9f7f5 0%, #ede9e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #d0ccc8;
    overflow: hidden;
}

.asap-product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

.asap-product-info {
    padding: 1.25rem;
}

.asap-product-category {
    font-size: 0.85rem;
    color: var(--asap-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.asap-product-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    min-height: auto;
}

.asap-product-title a {
    color: #1f1c19;
    text-decoration: none;
    transition: color 0.2s ease;
}

.asap-product-title a:hover {
    color: var(--asap-accent);
}

.asap-product-description {
    font-size: 0.9rem;
    color: #6b6662;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.asap-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asap-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #DC7E43;
}

.asap-product-price del {
    color: #8b8682;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 8px;
}

.asap-product-price ins {
    text-decoration: none;
    color: #DC7E43;
}

/* No Products Message */
.asap-no-products,
.asap-filter-error {
    text-align: center;
    padding: 3rem;
    color: #6b6662;
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #d0ccc8;
}

.asap-no-products h4,
.asap-filter-error h4 {
    color: #1f1c19;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.asap-no-products p,
.asap-filter-error p {
    color: #6b6662;
}

/* Pagination */
.asap-pagination-container,
.asap-alc-pf-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.asap-pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.asap-page-btn,
.asap-alc-pf-page-btn {
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #d0ccc8;
    border-radius: 6px;
    color: #1f1c19;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.asap-page-btn:hover:not(:disabled),
.asap-alc-pf-page-btn:hover:not(:disabled) {
    background: var(--asap-accent);
    color: #fff;
    border-color: var(--asap-accent);
}

.asap-page-btn:disabled,
.asap-alc-pf-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.asap-page-btn.active,
.asap-alc-pf-page-btn.active {
    background: var(--asap-accent);
    color: #fff;
    border-color: var(--asap-accent);
}

.asap-page-btn svg,
.asap-alc-pf-page-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.asap-pagination-info {
    padding: 0.75rem 1rem;
    color: #6b6662;
    font-size: 0.95rem;
}

/* No loading spinner - real-time updates */
.asap-loading-spinner {
    display: none !important;
}

.asap-loading-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* ===========================
   DRINK SECTION (Dark Theme)
   =========================== */
.asap-drink-section-container {
    background-color: transparent;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.asap-drink-section-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.asap-drink-card {
    background: var(--asap-bg-lighter);
    border: 1px solid var(--asap-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asap-drink-card:hover {
    border-color: var(--asap-accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.asap-drink-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.asap-drink-image {
    background-color: var(--asap-bg-card);
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.asap-drink-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asap-drink-card:hover .asap-drink-image img {
    transform: scale(1.05);
}

.asap-drink-category {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--asap-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 10px 15px 5px;
}

.asap-drink-name {
    font-size: 16px !important;
    font-weight: 500;
    color: var(--asap-text-white);
    text-align: center;
    padding: 0 10px;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

.asap-drink-card:hover .asap-drink-name {
    color: var(--asap-accent);
}

.asap-drink-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--asap-text-white);
    text-align: center;
    padding: 0 15px 15px;
}

.asap-drink-price del {
    color: var(--asap-text-muted);
    font-size: 13px;
    margin-right: 5px;
}

.asap-drink-price ins {
    text-decoration: none;
    color: var(--asap-accent);
}

.asap-no-drinks-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--asap-text-light);
}

/* ===========================
   CATEGORY ARCHIVE (Dark Theme)
   =========================== */
.asap-category-archive {
    background-color: transparent;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.asap-archive-header {
    margin-bottom: 30px !important;
}

.asap-archive-title {
    font-size: 28px !important;
    font-weight: 600;
    color: var(--asap-text-white) !important;
    margin: 0 0 10px 0 !important;
}

.asap-archive-description {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--asap-text-light) !important;
    margin: 0 !important;
}

.asap-archive-grid {
    display: grid !important;
    grid-template-columns: repeat(var(--columns, 6), 1fr) !important;
    gap: 20px !important;
}

.asap-archive-card {
    background: var(--asap-bg-lighter) !important;
    border: 1px solid var(--asap-border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s ease;
}

.asap-archive-card:hover {
    border-color: var(--asap-accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.asap-archive-card-link {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.asap-archive-image {
    background-color: var(--asap-bg-card) !important;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.asap-archive-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

.asap-archive-card:hover .asap-archive-image img {
    transform: scale(1.05);
}

.asap-archive-info {
    padding: 15px !important;
    text-align: center !important;
}

.asap-archive-category {
    display: block !important;
    font-size: 11px !important;
    font-weight: 500;
    color: var(--asap-accent) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    margin-bottom: 5px !important;
}

.asap-archive-product-title {
    font-size: 16px !important;
    font-weight: 500;
    color: var(--asap-text-white) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 42px !important;
}

.asap-archive-card:hover .asap-archive-product-title {
    color: var(--asap-accent);
}

.asap-archive-price {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--asap-text-white) !important;
}

.asap-archive-price del {
    color: var(--asap-text-muted);
    font-size: 13px;
    margin-right: 5px;
}

.asap-archive-price ins {
    text-decoration: none;
    color: var(--asap-accent);
}

.asap-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--asap-text-light);
}

/* ===========================
   CATEGORY LISTING (Dark Theme)
   =========================== */
.asap-category-listing-container {
    background-color: transparent;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.asap-category-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.asap-category-listing-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.asap-category-listing-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.asap-category-listing-grid[data-columns="5"] {
    grid-template-columns: repeat(5, 1fr);
}

.asap-category-listing-grid[data-columns="6"] {
    grid-template-columns: repeat(6, 1fr);
}

.asap-category-listing-card {
    background: var(--asap-bg-lighter);
    border: 1px solid var(--asap-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asap-category-listing-card:hover {
    border-color: var(--asap-accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.asap-category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.asap-category-listing-image {
    background-color: var(--asap-bg-card);
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.asap-category-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asap-category-listing-card:hover .asap-category-listing-image img {
    transform: scale(1.05);
}

.asap-category-listing-info {
    padding: 15px;
    text-align: center;
}

.asap-category-listing-title {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--asap-text-white);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 47px;
}

.asap-category-listing-card:hover .asap-category-listing-title {
    color: var(--asap-accent);
}

.asap-category-listing-count {
    font-size: 14px;
    color: var(--asap-text-light);
    font-weight: 400;
}

.asap-no-categories {
    text-align: center;
    padding: 40px;
    color: var(--asap-text-light);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1400px) {
    .asap-products-grid,
    .asap-alc-pf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .asap-category-products-grid,
    .asap-related-grid,
    .asap-alc-sp-related-grid,
    .asap-drink-section-row,
    .asap-archive-grid,
    .asap-category-listing-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .asap-products-grid,
    .asap-alc-pf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .asap-category-products-grid,
    .asap-related-grid,
    .asap-alc-sp-related-grid,
    .asap-drink-section-row,
    .asap-archive-grid,
    .asap-category-listing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .asap-single-product-container,
    .asap-alc-sp-container {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .asap-filter-main,
    .asap-alc-pf-main {
        flex-direction: column;
    }
    .asap-filter-sidebar,
    .asap-alc-pf-sidebar {
        position: static;
        flex: 1;
    }
    .asap-products-grid,
    .asap-alc-pf-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .asap-category-products-grid,
    .asap-related-grid,
    .asap-alc-sp-related-grid,
    .asap-drink-section-row,
    .asap-archive-grid,
    .asap-category-listing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .asap-single-product-container,
    .asap-alc-sp-container {
        grid-template-columns: 1fr;
    }
    .asap-product-gallery,
    .asap-alc-sp-gallery {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .asap-product-filter-container,
    .asap-alc-pf-container {
        padding: 20px 15px;
    }
    .asap-filter-header,
    .asap-alc-pf-header {
        padding: 0 0 15px 0;
        margin-bottom: 15px;
    }
    .asap-filter-header-title,
    .asap-alc-pf-header-title {
        font-size: 18px;
    }
    .asap-search-input,
    .asap-alc-pf-search-input {
        padding: 10px 14px 10px 38px;
        font-size: 14px;
    }
    .asap-sidebar-title,
    .asap-alc-pf-sidebar-title {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .asap-filter-item {
        padding: 6px 12px;
        font-size: 13px;
    }
    .asap-filter-count {
        display: none;
    }
    .asap-category-tabs {
        padding: 0 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .asap-category-tab {
        padding: 15px 18px;
        white-space: nowrap;
        font-size: 13px;
    }
    .asap-products-grid,
    .asap-alc-pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .asap-product-item {
        border-radius: 6px;
    }
    .asap-product-image {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    .asap-product-info {
        padding: 12px;
    }
    .asap-product-title {
        font-size: 13px;
        min-height: 36px;
    }
    .asap-product-price {
        font-size: 14px;
    }
    .asap-category-products-grid,
    .asap-related-grid,
    .asap-alc-sp-related-grid,
    .asap-drink-section-row,
    .asap-archive-grid,
    .asap-category-listing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        display: grid !important;
        visibility: visible !important;
    }
    .asap-card-image,
    .asap-alc-card-image,
    .asap-drink-image {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    .asap-product-main-image,
    .asap-alc-sp-main-image {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    .asap-product-price-large,
    .asap-alc-sp-price {
        font-size: 18px;
    }
    .asap-order-buttons,
    .asap-alc-sp-buttons {
        flex-direction: column;
    }
    .asap-btn,
    .asap-alc-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    .asap-full-description,
    .asap-alc-sp-full-desc {
        padding: 20px;
    }
    .asap-description-title,
    .asap-alc-sp-desc-title {
        font-size: 18px;
    }
    .asap-content-header,
    .asap-alc-pf-content-header {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        padding: 0 0 12px 0;
        margin-bottom: 15px;
    }
    .asap-controls,
    .asap-alc-pf-controls {
        width: 100%;
        justify-content: space-between;
    }
    .asap-page-btn,
    .asap-alc-pf-page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .asap-products-grid,
    .asap-alc-pf-grid,
    .asap-category-products-grid,
    .asap-related-grid,
    .asap-alc-sp-related-grid,
    .asap-drink-section-row,
    .asap-archive-grid,
    .asap-category-listing-grid {
        grid-template-columns: 1fr;
    }
    .asap-product-thumbnails,
    .asap-alc-sp-thumbnails {
        justify-content: center;
    }
    .asap-category-pills,
    .asap-alc-sp-cat-pills {
        justify-content: center;
    }
    .asap-product-price-large,
    .asap-alc-sp-price {
        font-size: 16px;
    }
    .asap-single-product .asap-related-title,
    .asap-alc-single-product .asap-alc-sp-related-title {
        font-size: 16px;
    }
}

/* ===========================
   DRINK CAROUSEL
   =========================== */
.asap-carousel-container {
    background-color: transparent;
    padding: 40px 0;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.asap-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.asap-carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.asap-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.asap-carousel-item {
    flex: 0 0 calc((100% - 80px) / 5);
    min-width: 0;
}

.asap-carousel-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--asap-bg-lighter);
    border: 1px solid var(--asap-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.asap-carousel-link:hover {
    border-color: var(--asap-accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.asap-carousel-image {
    background-color: var(--asap-bg-card);
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.asap-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asap-carousel-link:hover .asap-carousel-image img {
    transform: scale(1.05);
}

.asap-carousel-name {
    font-size: 16px !important;
    font-weight: 500;
    color: var(--asap-text-white) !important;
    text-align: center;
    padding: 10px 10px 5px;
    margin: 0 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 42px !important;
}

.asap-carousel-link:hover .asap-carousel-name {
    color: var(--asap-accent) !important;
}

.asap-carousel-price {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--asap-text-white) !important;
    text-align: center;
    padding: 0 10px 15px;
    margin: 0;
}

.asap-carousel-prev,
.asap-carousel-next {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--asap-bg-lighter);
    border: 1px solid var(--asap-border);
    border-radius: 50%;
    color: var(--asap-text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.asap-carousel-prev:hover,
.asap-carousel-next:hover {
    background: var(--asap-accent);
    border-color: var(--asap-accent);
    transform: scale(1.1);
}

.asap-carousel-prev svg,
.asap-carousel-next svg {
    width: 24px;
    height: 24px;
}

.asap-carousel-empty {
    text-align: center;
    padding: 40px;
    color: var(--asap-text-light);
}

/* Carousel responsive */
@media (max-width: 1400px) {
    .asap-carousel-item {
        flex: 0 0 calc((100% - 60px) / 4);
    }
}

@media (max-width: 1024px) {
    .asap-carousel-item {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .asap-carousel-container {
        padding: 20px 0;
    }

    .asap-carousel-wrapper {
        gap: 10px;
    }

    .asap-carousel-track {
        gap: 12px;
    }

    .asap-carousel-item {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .asap-carousel-prev,
    .asap-carousel-next {
        width: 40px;
        height: 40px;
    }

    .asap-carousel-prev svg,
    .asap-carousel-next svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .asap-carousel-item {
        flex: 0 0 100%;
    }
}

/* ===========================
   ADD-ON MODAL
   =========================== */
.asap-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asap-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.asap-modal-content {
    position: relative;
    background: var(--asap-bg-darker);
    border: 1px solid var(--asap-border);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.asap-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--asap-text-light);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.asap-modal-close:hover {
    color: var(--asap-accent);
}

.asap-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--asap-text-white);
    margin: 0 0 8px 0;
    text-align: center;
}

.asap-modal-subtitle {
    font-size: 14px;
    color: var(--asap-text-light);
    margin: 0 0 25px 0;
    text-align: center;
}

.asap-addon-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.asap-addon-option {
    background: var(--asap-bg-lighter);
    border: 1px solid var(--asap-border);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.asap-addon-option:has(input[type="checkbox"]:checked) {
    border-color: var(--asap-accent);
    background: rgba(196, 137, 59, 0.1);
}

.asap-addon-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.asap-addon-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--asap-accent);
}

.asap-addon-label-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    color: var(--asap-text-white);
    font-size: 16px;
}

.asap-addon-price {
    color: var(--asap-accent);
    font-weight: 600;
    font-size: 16px;
}

.asap-addon-text {
    width: 100%;
    padding: 10px 12px;
    background: var(--asap-bg-darker);
    border: 1px solid var(--asap-border);
    border-radius: 6px;
    color: var(--asap-text-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.asap-addon-text:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.asap-addon-text:enabled:focus {
    outline: none;
    border-color: var(--asap-accent);
    background: var(--asap-bg-card);
}

.asap-addon-text::placeholder {
    color: var(--asap-text-muted);
}

.asap-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.asap-btn-modal {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.asap-btn-skip {
    background: transparent;
    border: 1px solid var(--asap-border) !important;
    color: var(--asap-text-white);
}

.asap-btn-skip:hover {
    background: var(--asap-bg-lighter);
    border-color: var(--asap-text-white) !important;
}

.asap-btn-confirm {
    background: var(--asap-accent);
    color: #fff;
}

.asap-btn-confirm:hover {
    background: #d4a04b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 137, 59, 0.4);
}

/* Add-on availability banner on product page */
.asap-alc-addon-notice {
    background: rgba(196, 137, 59, 0.15) !important;
    border: 1px solid var(--asap-accent, #CF6726) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    margin: 15px 0 !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.asap-alc-addon-notice-text {
    font-size: 16px !important;
    color: #333333 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    display: block !important;
    visibility: visible !important;
}

.asap-alc-addon-notice-text strong {
    color: var(--asap-accent, #CF6726) !important;
    font-weight: 700 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .asap-modal-content {
        padding: 20px;
        max-width: 95%;
    }

    .asap-modal-title {
        font-size: 20px;
    }

    .asap-modal-actions {
        flex-direction: column;
    }

    .asap-btn-modal {
        width: 100%;
    }
}
