/* Premium Skincare Concept Online Store - PureCare Premium Layout (v3.0.05) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.adqp-shop-container {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    background-color: #ffffff;
}

/* SECTION 1: SLIDER BANNER CAROUSEL */
.adqp-shop-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2560 / 1280;
    height: auto;
    border-radius: var(--ad-border-radius-global, 16px);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.adqp-shop-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.adqp-shop-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background-color: #0f172a;
}
.adqp-shop-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.adqp-shop-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider buttons styled via Setting 4 (Global Action Icon) */
.adqp-slider-prev,
.adqp-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--ad-action-bg, #ffffff) !important;
    border-radius: var(--ad-action-radius, 50%) !important;
    color: var(--ad-action-icon, #0f172a) !important;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10;
}
.adqp-slider-prev:hover,
.adqp-slider-next:hover {
    transform: translateY(-50%) scale(1.08);
    opacity: 0.95;
}
.adqp-slider-prev { left: 16px; }
.adqp-slider-next { right: 16px; }

.adqp-slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.adqp-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.adqp-slider-dot.is-active {
    background: var(--ad-accent-color, #c29b38);
    transform: scale(1.4);
}

/* SECTION 2: GRID LAYOUT & SIDEBAR */
.adqp-shop-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* Left Sidebar Widget styles */
.adqp-shop-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}

.adqp-shop-widget {
    background: #ffffff;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: var(--ad-border-radius-global, 12px);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}
.adqp-shop-widget h4 {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--ad-heading-color, #0f172a);
    text-transform: capitalize;
    letter-spacing: -0.2px;
    border-bottom: 2px solid var(--ad-accent-color, #c29b38);
    padding-bottom: 8px;
    width: fit-content;
}

/* Search Input */
.adqp-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.adqp-search-input-wrap input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: var(--ad-border-radius-global, 8px);
    font-size: 13px;
    outline: none;
    font-family: inherit;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}
.adqp-search-input-wrap input:focus {
    border-color: var(--ad-primary-color, #0f172a);
    background-color: #ffffff;
}
.adqp-search-input-wrap button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: var(--ad-action-radius, 50%);
    background-color: var(--ad-action-bg, #f1f5f9);
    color: var(--ad-action-icon, #334155);
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Cart widget & items list */
.adqp-cart-items-list {
    max-height: 260px;
    overflow-y: auto;
    margin-bottom: 16px;
    padding-right: 2px;
}
.adqp-cart-items-list::-webkit-scrollbar {
    width: 4px;
}
.adqp-cart-items-list::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}
/* Mobile Filter Bottom Sheet Modal (Matching Screenshot 5) */
.adqp-filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.adqp-filter-modal.is-active {
    opacity: 1;
    visibility: visible;
}
.adqp-filter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
}
.adqp-filter-modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    max-height: 88vh;
    background: #ffffff;
    border-radius: var(--ad-border-radius-global, 24px) var(--ad-border-radius-global, 24px) 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    overflow: hidden;
}
.adqp-filter-modal.is-active .adqp-filter-modal-container {
    transform: translateY(0);
}
.adqp-filter-modal-handle {
    width: 40px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
    margin: 10px auto 4px;
}
.adqp-filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
}
.adqp-filter-modal-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}
.adqp-filter-modal-close {
    width: 32px;
    height: 32px;
    background: var(--ad-action-bg, #f1f5f9) !important;
    border-radius: var(--ad-action-radius, 50%) !important;
    color: var(--ad-action-icon, #0f172a) !important;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.adqp-filter-modal-body {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.adqp-filter-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}
.adqp-filter-options-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--ad-border-radius-global, 16px);
    overflow: hidden;
}
.adqp-filter-radio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.15s ease;
    min-height: 48px;
}
.adqp-filter-radio-row:last-child {
    border-bottom: none;
}
.adqp-filter-radio-row:hover {
    background: #f1f5f9;
}
.adqp-filter-radio-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.adqp-filter-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--ad-primary-color, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
}
.adqp-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.adqp-filter-radio-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.adqp-filter-badge {
    background: #eff6ff;
    color: var(--ad-primary-color, #2563eb);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
}
.adqp-filter-radio-right input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--ad-primary-color, #2563eb);
    cursor: pointer;
}
.adqp-filter-tips-box {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: var(--ad-border-radius-global, 12px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #1e40af;
}
.adqp-filter-modal-footer {
    padding: 16px 20px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 12px;
    position: sticky;
    bottom: 0;
}
.adqp-filter-btn-reset {
    flex: 1;
    height: 46px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--ad-border-radius-global, 12px);
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.adqp-filter-btn-reset:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}
.adqp-filter-btn-apply {
    flex: 2;
    height: 46px;
    background: var(--ad-button-color, var(--ad-primary-color, #2563eb));
    color: var(--ad-button-text-color, #ffffff);
    border: none;
    border-radius: var(--ad-border-radius-global, 12px);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.adqp-filter-btn-apply:hover {
    opacity: 0.92;
}

.adqp-cart-empty {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    padding: 12px 0;
}
.adqp-cart-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
.adqp-cart-item:last-child {
    border-bottom: none !important;
}
.adqp-cart-item img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    border: 1px solid #e2e8f0 !important;
    flex-shrink: 0 !important;
}
.adqp-cart-item-info {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
.adqp-cart-item-name {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.adqp-cart-item-price {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}
.adqp-cart-item-qty {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    background: #f1f5f9 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    border: 1px solid #e2e8f0 !important;
    flex-shrink: 0 !important;
}
.adqp-cart-item-remove {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    border-radius: 50% !important;
    background: #fee2e2 !important;
    color: #ef4444 !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}
.adqp-cart-item-remove:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
}

/* Checkout Button (Setting 3 - Warna Tombol) */
.adqp-btn-checkout,
.adqp-mobile-checkout-btn,
#adqp-checkout-btn {
    width: 100% !important;
    min-height: 46px !important;
    height: 46px !important;
    background-color: var(--ad-button-color, #c29b38) !important;
    background: var(--ad-button-color, #c29b38) !important;
    color: var(--ad-button-text-color, #ffffff) !important;
    font-family: var(--ad-font-button) !important;
    border: 1px solid var(--ad-button-color, #c29b38) !important;
    border-radius: var(--ad-border-radius-global, 12px) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    text-align: center !important;
}
.adqp-btn-checkout:hover,
.adqp-mobile-checkout-btn:hover,
#adqp-checkout-btn:hover {
    background-color: var(--ad-button-hover-color, #a8832a) !important;
    background: var(--ad-button-hover-color, #a8832a) !important;
    color: var(--ad-button-hover-text-color, #ffffff) !important;
    border-color: var(--ad-button-hover-color, #a8832a) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
}

/* Kategori widget list */
.adqp-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.adqp-cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #f8fafc;
}
.adqp-cat-list li:last-child {
    border-bottom: none;
}
.adqp-cat-list li a {
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}
.adqp-cat-list li.is-active a,
.adqp-cat-list li a:hover {
    color: var(--ad-accent-color, #0f172a);
    font-weight: 700;
}
.adqp-cat-count {
    font-size: 10.5px;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 99px;
}
.adqp-cat-list li.is-active .adqp-cat-count,
.adqp-cat-list li:hover .adqp-cat-count {
    background: var(--ad-accent-color, #0f172a);
    color: #ffffff;
}

/* Sort Harga */
.adqp-sort-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.adqp-sort-list li {
    padding: 7px 0;
    font-size: 13px;
    color: #475569;
}
.adqp-sort-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
.adqp-sort-list input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--ad-primary-color, #0f172a);
    width: 15px;
    height: 15px;
}

/* Area Produk */
.adqp-shop-content {
    flex-grow: 1;
    min-width: 0;
}

/* Grid Layout */
.adqp-shop-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0 0 40px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* Product Card Design */
.adqp-shop-card {
    background: #ffffff;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: var(--ad-border-radius-global, 14px);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}
.adqp-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    border-color: var(--ad-border-hover-color, #cbd5e1);
}

.adqp-shop-card-media {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Fixed 1:1 Aspect Ratio */
    background: #f8fafc;
    overflow: hidden;
}
.adqp-shop-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.adqp-shop-card:hover .adqp-shop-card-media img {
    transform: scale(1.05);
}
.adqp-shop-media-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #cbd5e1;
}

.adqp-shop-badge-promo {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
}
.adqp-shop-badge-outofstock {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #64748b;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
}

/* Wishlist Heart Overlay button styled via Setting 4 (Warna & Radius Elemen Pendukung) */
.adqp-shop-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: var(--ad-sec-btn-radius, 50%) !important;
    background-color: var(--ad-sec-btn-bg, rgba(255, 255, 255, 0.9)) !important;
    background: var(--ad-sec-btn-bg, rgba(255, 255, 255, 0.9)) !important;
    color: var(--ad-sec-btn-text, #64748b) !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    z-index: 2;
}
.adqp-shop-wishlist-btn:hover {
    transform: scale(1.1);
}
.adqp-shop-wishlist-btn svg {
    width: 15px !important;
    height: 15px !important;
    stroke: var(--ad-sec-btn-text, #64748b) !important;
    fill: none !important;
}
.adqp-shop-wishlist-btn.active svg {
    stroke: #ef4444 !important;
    fill: #ef4444 !important;
}

.adqp-shop-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.adqp-shop-card-cat {
    font-size: 9.5px;
    font-weight: 800;
    color: var(--ad-accent-color, #c29b38);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.adqp-shop-card-title {
    margin: 0 0 8px 0;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.adqp-shop-card-title a {
    color: var(--ad-heading-color, #0f172a);
    text-decoration: none;
    transition: color 0.2s ease;
}
.adqp-shop-card-title a:hover {
    color: var(--ad-accent-color, #c29b38);
}
.adqp-shop-card-rating {
    font-size: 11.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.adqp-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}
.adqp-rating-count {
    color: #94a3b8;
    font-size: 10.5px;
    font-weight: 600;
}

.adqp-shop-card-price {
    margin-top: auto;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.adqp-sale-price-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--ad-heading-color, #0f172a);
}
.adqp-reg-price-val {
    font-size: 12px;
    color: #94a3b8;
}
.adqp-reg-price-val.strikethrough {
    text-decoration: line-through;
}

/* Buy / Add to Cart Button styled via Setting 3 */
.adqp-btn-add-to-cart {
    width: 100%;
    background-color: var(--ad-button-color, #0f172a) !important;
    color: var(--ad-button-text-color, #ffffff) !important;
    border: none;
    border-radius: var(--ad-border-radius-global, 8px) !important;
    padding: 10px 14px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap !important;
    min-height: 40px;
}
.adqp-btn-add-to-cart:hover:not(:disabled) {
    background-color: var(--ad-button-hover-color, #1e293b) !important;
    color: var(--ad-button-hover-text-color, #ffffff) !important;
}
.adqp-btn-add-to-cart:disabled {
    background-color: #f1f5f9 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
}

/* Pagination links */
.adqp-shop-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}
.adqp-shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: var(--ad-border-radius-global, 8px);
    border: 1px solid var(--ad-border-color, #e2e8f0);
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}
.adqp-shop-pagination .page-numbers:hover {
    border-color: var(--ad-primary-color, #0f172a);
    color: var(--ad-primary-color, #0f172a);
    background: #f8fafc;
}
.adqp-shop-pagination .page-numbers.current {
    background-color: var(--ad-button-color, #0f172a);
    border-color: var(--ad-button-color, #0f172a);
    color: var(--ad-button-text-color, #ffffff);
}

.adqp-shop-no-products {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    padding: 50px 0;
}

/* SECTION 3: CTA CONSULTATION BANNER */
.adqp-shop-cta-section {
    margin-top: 50px;
    background-color: var(--ad-cta-bg-color, #0f172a) !important;
    color: var(--ad-cta-text-color, #ffffff) !important;
    border-radius: var(--ad-border-radius-global, 16px) !important;
    padding: 32px 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.adqp-shop-cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.adqp-shop-cta-text {
    flex: 1 1 280px;
    min-width: 0;
}
.adqp-shop-cta-text h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--ad-cta-text-color, #ffffff);
    letter-spacing: -0.3px;
    line-height: 1.35;
}
.adqp-shop-cta-text p {
    margin: 0;
    font-size: 13.5px;
    color: var(--ad-cta-text-color, #ffffff);
    opacity: 0.88;
    line-height: 1.55;
    max-width: 440px;
}
.adqp-shop-cta-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ad-cta-text-color, #ffffff);
    flex: 0 0 auto;
}
.adqp-shop-cta-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.adqp-shop-cta-btn {
    flex: 0 0 auto;
}
.adqp-btn-cta-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ad-button-color, #c29b38) !important;
    color: var(--ad-button-text-color, #ffffff) !important;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: var(--ad-border-radius-global, 10px) !important;
    font-size: 13.5px;
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    min-height: 44px;
    box-sizing: border-box;
}
.adqp-btn-cta-booking:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: var(--ad-button-text-color, #ffffff) !important;
}
.adqp-btn-cta-booking:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
    .adqp-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .adqp-shop-sidebar {
        width: 220px;
    }
}

/* MOBILE CONTROLS BAR & MOBILE CART PLACEMENT (Default Hidden on Desktop) */
.adqp-mobile-controls-bar {
    display: none !important;
    margin-bottom: 24px;
}
.adqp-mobile-cart-wrap {
    display: none !important;
}

/* Mobile Search Bar (Screenshot 1) */
.adqp-mobile-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.adqp-mobile-search-input {
    width: 100%;
    padding: 12px 48px 12px 18px;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: 99px;
    font-size: 13.5px;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    cursor: pointer;
}
.adqp-mobile-search-submit-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: var(--ad-action-radius, 50%) !important;
    background-color: var(--ad-action-bg, #b48528) !important;
    color: var(--ad-action-icon, #ffffff) !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.adqp-mobile-search-submit-btn svg {
    stroke: var(--ad-action-icon, #ffffff) !important;
}

/* Mobile Category Scroll Container & Cards (Screenshot 1) */
.adqp-mobile-cat-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.adqp-mobile-cat-scroll-wrap {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 10px;
    width: 100%;
}
.adqp-mobile-cat-scroll-wrap::-webkit-scrollbar {
    display: none;
}
.adqp-mobile-cat-card {
    flex-shrink: 0;
    width: 76px;
    height: 84px;
    background: #ffffff;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: var(--ad-border-radius-global, 14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}
.adqp-mobile-cat-card.is-active,
.adqp-mobile-cat-card:hover {
    border-color: var(--ad-accent-color, #b48528);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.adqp-mobile-cat-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}
.adqp-mobile-cat-card.is-active .adqp-mobile-cat-icon {
    background: var(--ad-action-bg, #b48528) !important;
    color: var(--ad-action-icon, #ffffff) !important;
}
.adqp-mobile-cat-card.is-active .adqp-mobile-cat-icon svg {
    stroke: var(--ad-action-icon, #ffffff) !important;
}
.adqp-mobile-cat-label {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 68px;
}
.adqp-mobile-cat-card.is-active .adqp-mobile-cat-label {
    color: var(--ad-accent-color, #b48528);
}
.adqp-mobile-cat-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 5;
}

/* Mobile Sort & Filter Control Row (Screenshot 1) */
.adqp-mobile-sort-filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.adqp-mobile-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}
.adqp-mobile-sort-label {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}
.adqp-mobile-sort-select {
    padding: 8px 28px 8px 12px;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: var(--ad-border-radius-global, 8px);
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    background: #ffffff 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='%23334155' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}
.adqp-mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--ad-border-radius-global, 8px);
    border: 1px solid var(--ad-border-color, #e2e8f0);
    background: #f8fafc;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.adqp-mobile-filter-btn:hover {
    background: #f1f5f9;
}

/* FULL-SCREEN SEARCH MODAL POPUP (Screenshot 3) */
.adqp-search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999999;
    overflow-y: auto;
    padding: 24px 20px 40px;
    box-sizing: border-box;
}
.adqp-search-modal-container {
    max-width: 600px;
    margin: 0 auto;
}
.adqp-search-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.adqp-search-modal-close {
    background: none;
    border: none;
    font-size: 26px;
    font-weight: 400;
    color: #0f172a;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.adqp-search-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Modal Search Form & Input Box */
.adqp-search-modal-form {
    margin-bottom: 28px;
}
.adqp-search-modal-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.adqp-search-modal-input-icon {
    position: absolute;
    left: 18px;
    font-size: 16px;
    color: #64748b;
    pointer-events: none;
}
.adqp-search-modal-input-wrap input {
    width: 100%;
    padding: 14px 54px 14px 48px;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: 99px;
    font-size: 14px;
    outline: none;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}
.adqp-search-modal-input-wrap input:focus {
    border-color: var(--ad-primary-color, #0f172a);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.adqp-search-modal-submit-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: var(--ad-action-radius, 50%) !important;
    background-color: var(--ad-action-bg, #b48528) !important;
    color: var(--ad-action-icon, #ffffff) !important;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Sections */
.adqp-modal-section {
    margin-bottom: 28px;
}
.adqp-modal-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px 0;
    letter-spacing: -0.2px;
}

/* Kategori Populer Scroll (Screenshot 3) */
.adqp-modal-cat-cards-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
}
.adqp-modal-cat-cards-scroll::-webkit-scrollbar {
    display: none;
}
.adqp-modal-cat-card {
    flex-shrink: 0;
    width: 82px;
    height: 90px;
    background: #ffffff;
    border: 1px solid var(--ad-border-color, #e2e8f0);
    border-radius: var(--ad-border-radius-global, 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
    color: #0f172a;
    transition: border-color 0.2s ease;
}
.adqp-modal-cat-card:hover {
    border-color: var(--ad-accent-color, #b48528);
}
.adqp-modal-cat-card-icon {
    font-size: 26px;
}
.adqp-modal-cat-card span {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #334155;
}
.adqp-modal-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}
.adqp-modal-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e2e8f0;
}
.adqp-modal-dots span.is-active {
    background: var(--ad-accent-color, #b48528);
    width: 14px;
    border-radius: 99px;
}

/* Pencarian Populer List (Screenshot 3) */
.adqp-modal-popular-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.adqp-modal-popular-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: var(--ad-border-radius-global, 12px);
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
    transition: background 0.2s ease;
}
.adqp-modal-popular-item:hover {
    background: #f1f5f9;
}
.adqp-modal-popular-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.adqp-trending-icon {
    font-size: 14px;
}
.adqp-trending-arrow {
    font-size: 18px;
    color: #94a3b8;
}

/* Terakhir Dicari List (Screenshot 3) */
.adqp-modal-recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.adqp-modal-clear-recent {
    background: none;
    border: none;
    color: var(--ad-accent-color, #b48528);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
}
.adqp-modal-recent-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.adqp-modal-recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid #f8fafc;
}
.adqp-modal-recent-left {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
}
.adqp-recent-clock {
    font-size: 14px;
    color: #94a3b8;
}
.adqp-modal-recent-remove {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 768px) {
    .adqp-shop-container,
    .adqp-custom-store-wrapper,
    .adqp-shop-shell,
    .adqp-cart-page-wrap,
    .adqp-checkout-page-wrap,
    .adqp-wishlist-page-wrap,
    .adqp-thankyou-page-wrap {
        margin: 0 !important;
        padding: 8px 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
    }
    .adqp-mobile-controls-bar {
        display: block !important;
    }
    .adqp-shop-sidebar {
        display: none !important;
    }
    .adqp-mobile-cart-wrap {
        display: block !important;
        margin-top: 30px;
    }
    .adqp-shop-container,
    .adqp-shop-wrap,
    .adqp-shop-content,
    .adqp-shop-body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .adqp-shop-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 0 24px 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .adqp-shop-card-body {
        padding: 12px;
    }
    .adqp-shop-card-title {
        font-size: 12.5px;
        min-height: 32px;
    }
    .adqp-sale-price-val {
        font-size: 13.5px;
    }
    .adqp-shop-cta-wrap {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 18px;
    }
    .adqp-shop-cta-text {
        width: 100%;
        text-align: center;
    }
    .adqp-shop-cta-text h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .adqp-shop-cta-text p {
        max-width: 100%;
        font-size: 13px;
    }
    .adqp-shop-cta-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 16px;
        width: 100%;
        font-size: 12.5px;
    }
    .adqp-shop-cta-badges span {
        white-space: nowrap;
    }
    .adqp-shop-cta-btn {
        width: 100%;
        margin-top: 4px;
    }
    .adqp-btn-cta-booking {
        display: flex;
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }
    .adqp-shop-cta-section {
        padding: 24px 20px;
        margin-top: 36px;
        border-radius: 14px !important;
    }
}

@media (max-width: 430px) {
    .adqp-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .adqp-btn-add-to-cart {
        padding: 8px 6px !important;
        font-size: 11px !important;
    }
    .adqp-shop-slider-wrap {
        aspect-ratio: 2560 / 1280;
        height: auto;
    }
}

/* CART, CHECKOUT, & THANK YOU PAGES (v3.0.06) */
.adqp-cart-page-wrap,
.adqp-checkout-page-wrap,
.adqp-thankyou-page-wrap {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}
.adqp-cart-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}
.adqp-cart-page-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 35px 0;
}

.adqp-cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
.adqp-cart-page-content {
    min-width: 0;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}
.adqp-cart-page-summary {
    width: 100%;
}

/* Summary Card */
.adqp-summary-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
}
.adqp-summary-card h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid #c29b38;
    padding-bottom: 10px;
    width: fit-content;
}
.adqp-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #475569;
    margin-bottom: 12px;
}

.adqp-btn-back-shop {
    color: #475569;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.adqp-btn-back-shop:hover {
    color: #0f172a;
}
.adqp-btn-clear-cart {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    transition: transform 0.2s ease;
}
.adqp-btn-clear-cart:hover {
    transform: scale(1.03);
}

/* Cart Page Table elements */
.adqp-cart-page-table th {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.adqp-qty-btn-minus:hover,
.adqp-qty-btn-plus:hover {
    background: #e2e8f0 !important;
    color: #0f172a;
}

/* Form Styles */
.adqp-checkout-section-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
}
.adqp-checkout-section-card h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 2px solid #c29b38;
    padding-bottom: 10px;
    width: fit-content;
}
.adqp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.adqp-checkout-form label {
    font-weight: 600;
    font-size: 13px;
    color: #334155;
    display: block;
    margin-bottom: 6px;
}
.adqp-checkout-form input[type="text"],
.adqp-checkout-form input[type="tel"],
.adqp-checkout-form input[type="email"],
.adqp-checkout-form textarea,
.adqp-checkout-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px;
    outline: none;
    font-family: inherit;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}
.adqp-checkout-form input:focus,
.adqp-checkout-form textarea:focus,
.adqp-checkout-form select:focus {
    border-color: #0f172a;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.adqp-req {
    color: #ef4444;
}

/* Shipping & Payment selections cards */
.adqp-shipping-options-list,
.adqp-payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.adqp-shipping-option-item,
.adqp-payment-method-item {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.adqp-shipping-option-item:hover,
.adqp-payment-method-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.adqp-shipping-option-item.active,
.adqp-payment-method-item.active {
    border-color: #c29b38;
    background: #fffdf5;
}
.adqp-shipping-option-item.active strong,
.adqp-payment-method-item.active strong,
.adqp-shipping-option-item.active .adqp-shipping-option-price,
.adqp-payment-method-item.active .adqp-shipping-option-price {
    color: inherit;
}
.adqp-shipping-option-item.active .desc,
.adqp-payment-method-item.active .desc {
    color: inherit;
    opacity: 0.85;
}
.adqp-shipping-option-item input[type="radio"],
.adqp-payment-method-item input[type="radio"] {
    margin-right: 14px;
    accent-color: #c29b38;
    width: 18px;
    height: 18px;
}
.adqp-shipping-option-details,
.adqp-payment-method-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.adqp-shipping-option-details strong,
.adqp-payment-method-details strong {
    font-size: 13.5px;
    color: #0f172a;
}
.adqp-shipping-option-details .desc,
.adqp-payment-method-details .desc {
    font-size: 11px;
    color: #64748b;
}
.adqp-shipping-option-price {
    font-weight: 700;
    font-size: 13.5px;
    color: #0f172a;
}

/* Cart summary inside checkout */
.adqp-checkout-products-list {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 4px;
}
.adqp-checkout-products-list::-webkit-scrollbar {
    width: 4px;
}
.adqp-checkout-products-list::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

/* Thank You Success states */
.adqp-thankyou-success-badge {
    text-align: center;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}
.adqp-thankyou-success-badge .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #10b981;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.adqp-thankyou-success-badge h2 {
    font-size: 22px;
    font-weight: 800;
    color: #065f46;
    margin: 0 0 8px 0;
}
.adqp-thankyou-success-badge p {
    margin: 0;
    font-size: 14.5px;
    color: #065f46;
    max-width: 500px;
    margin: 0 auto;
}

.adqp-thankyou-table {
    width: 100%;
    border-collapse: collapse;
}
.adqp-thankyou-table th {
    text-align: left;
    padding: 10px 0;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}
.adqp-thankyou-table td {
    text-align: right;
    padding: 10px 0;
    color: #0f172a;
    font-weight: 700;
    border-bottom: 1px solid #f1f5f9;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 900px) {
    .adqp-cart-page-layout {
        flex-direction: column;
        gap: 30px;
    }
    .adqp-cart-page-summary {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .adqp-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* CART PAGE FEATURES BAR & RESPONSIVE DESIGN */
.adqp-cart-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .adqp-cart-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .adqp-cart-page-wrap {
        padding: 20px 10px !important;
    }
    .adqp-cart-page-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .adqp-cart-page-summary {
        width: 100% !important;
    }
    .adqp-cart-header-box {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }
    .adqp-promo-code-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
    }
    .adqp-promo-code-bar button {
        width: 100% !important;
        justify-content: center !important;
    }
    .adqp-cart-actions {
        flex-direction: column-reverse !important;
        align-items: stretch !important;
    }
    .adqp-cart-actions a, .adqp-cart-actions button {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .adqp-cart-features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .adqp-cart-page-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

