/* ═══════════════════════════════════════════════════════════════
   IMK PRODUCT DETAIL PAGE  —  imk-product-detail.css
   Scoped under body.imk-storefront .imk-pdp-page
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset old container padding ───────────────────────────── */
body.imk-storefront .imk-pdp-page > .container,
body.imk-storefront .imk-pdp-page > #wrapper > .container {
    padding-top: 0 !important;
}
body.imk-storefront .imk-pdp-page .nav-breadcrumb { display: none !important; }
body.imk-storefront .imk-pdp-page .product-description { display: none !important; }
body.imk-storefront .imk-pdp-page .section-related-products { display: none !important; }
body.imk-storefront .imk-pdp-page .row-bn { display: none !important; }
body.imk-storefront .imk-pdp-page .product-details-container {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.imk-storefront .imk-pdp-page .product-content-details .row-custom.meta { display: none !important; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
body.imk-storefront .imk-pdp-breadcrumb {
    padding: 16px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 28px;
}
body.imk-storefront .imk-pdp-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
body.imk-storefront .imk-pdp-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6B7280;
}
body.imk-storefront .imk-pdp-breadcrumb a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
}
body.imk-storefront .imk-pdp-breadcrumb a:hover { color: #fff; }
body.imk-storefront .imk-pdp-breadcrumb .sep {
    color: #374151;
    padding: 0 6px;
    font-size: 11px;
}
body.imk-storefront .imk-pdp-breadcrumb .current { color: #E5E7EB; font-weight: 500; }

/* ── Product Overview 2-col grid ────────────────────────────── */
body.imk-storefront .imk-pdp-overview {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 40px;
}
@media (max-width: 991.98px) {
    body.imk-storefront .imk-pdp-overview {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ── Gallery (left col) ─────────────────────────────────────── */
body.imk-storefront .imk-pdp-gallery {
    position: sticky;
    top: 80px;
}

/* product-slider-container: flex row with thumbs on left */
body.imk-storefront .imk-pdp-gallery .product-slider-container {
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

/* LEFT thumb panel */
body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
    flex: 0 0 74px !important;
    width: 74px !important;
}

/* RIGHT main image panel */
body.imk-storefront .imk-pdp-gallery .product-slider-container .right {
    flex: 1 1 auto !important;
    min-width: 0;
}

/* Main image wrapper */
body.imk-storefront .imk-pdp-gallery .product-slider-container .right .product-slider-content {
    background: #111827 !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 2px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}

body.imk-storefront .imk-pdp-gallery .product-slider .item {
    padding: 20px !important;
    background: #111827;
}

body.imk-storefront .imk-pdp-gallery .product-slider .item a {
    display: block;
    width: 100%;
}

body.imk-storefront .imk-pdp-gallery .img-product-slider {
    width: auto !important;
    height: 440px !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    background: transparent !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 auto !important;
}

/* Hide blur bg images */
body.imk-storefront .imk-pdp-gallery .img-bg { display: none !important; }

/* Thumb items */
body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
    width: 66px !important;
    height: 66px !important;
    border-radius: 10px !important;
    border: 1.5px solid rgba(255,255,255,0.09) !important;
    background: #111827 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
    overflow: hidden;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s;
}
body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item.active .item-inner,
body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item:hover .item-inner {
    border-color: #E30022 !important;
    box-shadow: 0 0 0 2px rgba(227,0,34,0.15);
}
body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .img-thumbnail {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    background: transparent !important;
}

/* Slider nav buttons */
body.imk-storefront .imk-pdp-gallery .product-slider-nav {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
body.imk-storefront .imk-pdp-gallery .product-slider-nav button,
body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider-nav button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s;
}
body.imk-storefront .imk-pdp-gallery .product-slider-nav button:hover,
body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider-nav button:hover {
    background: #E30022;
    border-color: #E30022;
}

/* Video/audio button row */
body.imk-storefront .imk-pdp-gallery .row-custom.text-center {
    margin-top: 12px;
}
body.imk-storefront .imk-pdp-gallery .btn-video-preview {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ccc;
    border-radius: 10px;
    font-size: 13px;
    padding: 8px 16px;
    transition: all 0.15s;
}
body.imk-storefront .imk-pdp-gallery .btn-video-preview:hover {
    background: #E30022;
    border-color: #E30022;
    color: #fff;
}

/* YouTube embed */
body.imk-storefront .imk-pdp-youtube {
    margin-top: 16px;
}

/* ── Product Details (right col) ────────────────────────────── */
body.imk-storefront .imk-pdp-details .product-content-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body.imk-storefront .imk-pdp-mobile-tabs,
body.imk-storefront .imk-pdp-mobile-cta-stack,
body.imk-storefront .imk-pdp-mobile-sticky-bar {
    display: none;
}

/* Title Area */
body.imk-storefront .imk-pdp-title-area {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 22px;
}

body.imk-storefront .imk-pdp-details .product-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #F9FAFB !important;
    margin: 0 0 12px !important;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

body.imk-storefront .imk-pdp-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    margin-top: 6px;
}

/* Rating */
body.imk-storefront .imk-pdp-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FBBF24;
    font-size: 13px;
}
body.imk-storefront .imk-pdp-rating .imk-pdp-rating-count {
    color: #6B7280;
    margin-left: 2px;
}

/* SKU / product code */
body.imk-storefront .imk-pdp-sku {
    color: #6B7280;
    font-size: 12px;
    margin-left: auto;
}

/* Admin edit button */
body.imk-storefront .imk-pdp-meta-row .dropdown .edit_front {
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.07) !important;
    color: #9CA3AF !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    height: auto !important;
}

/* Status badges */
body.imk-storefront .imk-pdp-details .badge-product-status {
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 12px;
}

/* Download button for digital */
body.imk-storefront .imk-pdp-details .btn-instant-download,
body.imk-storefront .imk-pdp-details .label-instant-download {
    margin-bottom: 14px;
    border-radius: 12px;
}

/* ── Price Area ─────────────────────────────────────────────── */
body.imk-storefront .imk-pdp-price-area {
    margin-bottom: 18px;
}

body.imk-storefront .imk-pdp-price-shell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

body.imk-storefront .imk-pdp-price-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

body.imk-storefront .imk-pdp-price-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

body.imk-storefront .imk-pdp-price-caption {
    color: #94A3B8;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.imk-storefront .imk-pdp-price-area #product_details_price_container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

/* lbl-price base */
body.imk-storefront .imk-pdp-price-area .lbl-price {
    display: inline-flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    color: #E30022 !important;
    font-size: 36px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(227,0,34,0.3);
}

/* Original (strikethrough) price */
body.imk-storefront .imk-pdp-price-area .discount-original-price {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
    text-decoration: line-through !important;
    text-decoration-color: #6B7280 !important;
    display: inline-flex;
    align-items: flex-end;
    margin-bottom: 4px;
}
body.imk-storefront .imk-pdp-price-area .discount-original-price .price-line { display: none !important; }

/* Discount rate badge */
body.imk-storefront .imk-pdp-price-area .discount-rate {
    display: inline-flex !important;
    align-items: center;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    background: rgba(227,0,34,0.15) !important;
    color: #E30022 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 4px;
    border: none !important;
}

/* Bank offer price */
body.imk-storefront .imk-pdp-price-area .bank-price-credo,
body.imk-storefront .imk-pdp-price-area .bank-price-tbc,
body.imk-storefront .imk-pdp-price-area .bank-price-bog,
body.imk-storefront .imk-pdp-price-area .bank-price-liberty {
    font-size: 13px;
    color: #9CA3AF;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
body.imk-storefront .imk-pdp-price-area .bank_price {
    font-size: 18px;
    font-weight: 700;
    color: #E30022;
}

/* Sold label */
body.imk-storefront .imk-pdp-price-area .lbl-sold {
    display: inline-block;
    background: rgba(239,68,68,0.15);
    color: #EF4444;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 8px;
}

/* ── Stock status ───────────────────────────────────────────── */
body.imk-storefront .imk-pdp-stock {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 40px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
}
body.imk-storefront .imk-pdp-stock.in-stock { color: #10B981; background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.25); }
body.imk-storefront .imk-pdp-stock.in-stock i { color: #10B981; }
body.imk-storefront .imk-pdp-stock.out-stock { color: #EF4444; background: rgba(239,68,68,0.08); border-color: rgba(239,68,68,0.25); }
body.imk-storefront .imk-pdp-stock.out-stock i { color: #EF4444; }
body.imk-storefront .imk-pdp-stock .imk-pdp-warranty {
    color: #9CA3AF;
    font-weight: 400;
    font-size: 13px;
}

/* ── Variations ─────────────────────────────────────────────── */
body.imk-storefront .imk-pdp-details .product-variations { margin-bottom: 22px; }
body.imk-storefront .imk-pdp-details .row-product-variation.item-variation { gap: 8px; }

/* ── Gifts ──────────────────────────────────────────────────── */
body.imk-storefront .imk-pdp-gifts {
    margin-bottom: 18px;
}
body.imk-storefront .imk-pdp-gifts .imk-pdp-gifts-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 10px;
}
body.imk-storefront .imk-pdp-details .product-gifts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
body.imk-storefront .imk-pdp-details .gift-box {
    border-radius: 12px;
    background: #111827;
    border: 1.5px solid rgba(255,255,255,0.08);
    padding: 10px;
    width: 90px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s;
}
body.imk-storefront .imk-pdp-details .gift-box:hover,
body.imk-storefront .imk-pdp-details input[type="radio"]:checked + .gift-box {
    border-color: #E30022;
}
body.imk-storefront .imk-pdp-details .gift-box img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}
body.imk-storefront .imk-pdp-details .gift-box p,
body.imk-storefront .imk-pdp-details .gift-box a {
    font-size: 10px;
    color: #9CA3AF;
    margin: 4px 0 0;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

body.imk-storefront .imk-pdp-purchase-flow {
    width: 100%;
    display: flex;
    flex-direction: column;
}
body.imk-storefront .imk-pdp-purchase-hero,
body.imk-storefront .imk-pdp-configurator-card,
body.imk-storefront .imk-pdp-checkout-card,
body.imk-storefront .imk-pdp-price-stock-row {
    width: 100%;
}
body.imk-storefront .imk-pdp-price-stock-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
body.imk-storefront .imk-pdp-section-head,
body.imk-storefront .imk-pdp-selection-summary {
    display: none;
}

/* Actions row: items that should span full width */
body.imk-storefront .imk-pdp-title-area,
body.imk-storefront .imk-pdp-price-area,
body.imk-storefront .imk-pdp-actions,
body.imk-storefront .imk-pdp-pay-panel,
body.imk-storefront .imk-pdp-gifts,
body.imk-storefront .imk-pdp-details .product-variations,
body.imk-storefront .imk-pdp-details #response_messages {
    width: 100%;
    align-self: stretch;
}

/* ── Actions row: Qty + Buy + Wishlist ──────────────────────── */
body.imk-storefront .imk-pdp-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

/* Qty spinner */
body.imk-storefront .imk-pdp-details .number-spinner {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: #1A202C;
    height: 52px;
    min-width: 120px;
    flex-shrink: 0;
}
body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-minus,
body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-plus {
    width: 40px !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    color: #9CA3AF !important;
    font-family: "Noto Sans Georgian", "BPG Arial Caps", sans-serif !important;
    cursor: pointer;
    font-size: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
    padding: 0 !important;
}
body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-minus:hover,
body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-plus:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.07) !important;
}
body.imk-storefront .imk-pdp-details .number-spinner .form-control {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-family: "Noto Sans Georgian", "BPG Arial Caps", sans-serif !important;
    font-weight: 700 !important;
    text-align: center !important;
    font-size: 15px !important;
    box-shadow: none !important;
    width: 40px !important;
    padding: 0 !important;
}

/* Main buy button wrapper */
body.imk-storefront .imk-pdp-main-buy { flex: 1 1 auto; }

body.imk-storefront .imk-pdp-mobile-cta-stack {
    width: 100%;
    gap: 10px;
    margin: -6px 0 22px;
}

body.imk-storefront .imk-pdp-mobile-primary,
body.imk-storefront .imk-pdp-mobile-secondary,
body.imk-storefront .imk-pdp-mobile-sticky-action {
    width: 100%;
}

/* Style the buy_now div (which is: div#buy_now_popup.btn) */
body.imk-storefront .imk-pdp-main-buy #buy_now_popup,
body.imk-storefront .imk-pdp-main-buy .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: 100% !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #C8001E 0%, #E30022 50%, #FF3652 100%) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 24px rgba(227,0,34,0.35), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    transition: transform 0.18s, box-shadow 0.18s !important;
    letter-spacing: 0.02em;
    text-transform: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
body.imk-storefront .imk-pdp-main-buy #buy_now_popup:hover,
body.imk-storefront .imk-pdp-main-buy .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(227,0,34,0.5), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart,
body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart,
body.imk-storefront .imk-pdp-mobile-sticky-action .btn,
body.imk-storefront .imk-pdp-mobile-secondary .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: 100% !important;
    min-height: 54px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s !important;
}

body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart,
body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart,
body.imk-storefront .imk-pdp-mobile-sticky-action .btn {
    background: linear-gradient(135deg, #C8001E 0%, #E30022 50%, #FF3652 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(227,0,34,0.28), inset 0 1px 0 rgba(255,255,255,0.14) !important;
}

body.imk-storefront .imk-pdp-mobile-secondary .btn {
    background: #0B0F19 !important;
    border: 1.5px solid rgba(227,0,34,0.55) !important;
    color: #F3F4F6 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart:hover,
body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart:hover,
body.imk-storefront .imk-pdp-mobile-sticky-action .btn:hover,
body.imk-storefront .imk-pdp-mobile-secondary .btn:hover {
    transform: translateY(-1px) !important;
}

body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart .btn-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist button */
body.imk-storefront .imk-pdp-actions .btn-wishlist {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: #1A202C !important;
    border: 1.5px solid rgba(255,255,255,0.12) !important;
    color: #9CA3AF !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none !important;
    font-size: 20px !important;
    flex-shrink: 0;
}
body.imk-storefront .imk-pdp-actions .btn-wishlist:hover {
    color: #E30022 !important;
    border-color: #E30022 !important;
}
body.imk-storefront .imk-pdp-actions .btn-wishlist .icon-heart { color: #E30022 !important; }

/* ── Payment Panel ──────────────────────────────────────────── */
body.imk-storefront .imk-pdp-pay-panel {
    background: #0F1724;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* Fast payments row */
body.imk-storefront .imk-pdp-fast-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.imk-storefront .imk-pay-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 10px;
    background: #1A202C;
    border: 1.5px solid rgba(255,255,255,0.10);
    color: #C9D1DA;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}
body.imk-storefront .imk-pay-label:hover {
    border-color: #E30022;
    color: #fff;
    background: rgba(227,0,34,0.07);
    box-shadow: 0 0 0 2px rgba(227,0,34,0.1);
}
body.imk-storefront .imk-pay-label .imk-pay-discount {
    background: rgba(227,0,34,0.18);
    color: #E30022;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
}

/* Bank installments section */
body.imk-storefront .imk-pdp-banks {
    padding: 16px;
}
body.imk-storefront .imk-pdp-banks-title {
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
body.imk-storefront .imk-pdp-banks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

body.imk-storefront .imk-bank-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: #0B0F19;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
}
body.imk-storefront .imk-bank-card:hover {
    border-color: rgba(227,0,34,0.45);
    box-shadow: 0 0 0 3px rgba(227,0,34,0.08);
    transform: translateY(-1px);
}

/* Bank colour dots */
body.imk-storefront .imk-bank-card .bank-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-bottom: 2px;
    flex-shrink: 0;
}
body.imk-storefront .imk-logo-credo  { background: #00A651; }
body.imk-storefront .imk-logo-tbc    { background: #005CA9; }
body.imk-storefront .imk-logo-bog    { background: #FF6B00; }
body.imk-storefront .imk-logo-liberty{ background: #8B2BE2; }

body.imk-storefront .imk-bank-card .bank-name {
    font-size: 12px;
    font-weight: 700;
    color: #E5E7EB;
}
body.imk-storefront .imk-bank-card .bank-cta {
    font-size: 11px;
    color: #E30022;
    font-weight: 600;
}
body.imk-storefront .imk-bank-card .bank-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(227,0,34,0.18);
    color: #E30022;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

/* Hide old installment labels (visual only – they still trigger modals) */
body.imk-storefront .imk-pdp-page .installment { display: none !important; }
body.imk-storefront .imk-pdp-page .product-add-to-cart-container { display: none !important; }
body.imk-storefront .imk-pdp-page .product-alt-info { display: none !important; }
body.imk-storefront .imk-pdp-page .row-custom.details { display: none !important; }
body.imk-storefront .imk-pdp-page .view_loan { display: none !important; }
body.imk-storefront .imk-pdp-page .row-custom.price { display: none !important; }
body.imk-storefront .imk-pdp-page .row-custom.edit-btn { display: none !important; }

/* Demo URL */
body.imk-storefront .imk-pdp-details .btn-live-preview {
    border-radius: 12px;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.07);
    color: #D1D5DB;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
}

/* ── Features Strip ─────────────────────────────────────────── */
body.imk-storefront .imk-pdp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}
@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

body.imk-storefront .imk-pdp-feature-item {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s, transform 0.2s;
}
body.imk-storefront .imk-pdp-feature-item:hover {
    border-color: rgba(227,0,34,0.25);
    transform: translateY(-2px);
}
body.imk-storefront .imk-pdp-feature-item .feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(227,0,34,0.12);
    border: 1px solid rgba(227,0,34,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E30022;
    font-size: 19px;
    flex-shrink: 0;
}
body.imk-storefront .imk-pdp-feature-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #F9FAFB;
    margin: 0 0 3px;
}
body.imk-storefront .imk-pdp-feature-item p {
    font-size: 11px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

/* ── Info 3-col grid ────────────────────────────────────────── */
body.imk-storefront .imk-pdp-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 48px;
}
@media (max-width: 991.98px) {
    body.imk-storefront .imk-pdp-info-grid {
        grid-template-columns: 1fr;
    }
}

body.imk-storefront .imk-pdp-info-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
body.imk-storefront .imk-pdp-info-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #F9FAFB;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
    color: #9CA3AF;
}

/* Description body */
body.imk-storefront .imk-pdp-desc-body {
    font-size: 13px;
    line-height: 1.75;
    color: #9CA3AF;
    overflow: hidden;
    max-height: none;
}
body.imk-storefront .imk-pdp-desc-body p { color: #9CA3AF; font-size: 13px; }
body.imk-storefront .imk-pdp-desc-body ul li { color: #9CA3AF; font-size: 13px; }

/* Specs table */
body.imk-storefront .imk-pdp-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
body.imk-storefront .imk-pdp-specs-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.12s;
}
body.imk-storefront .imk-pdp-specs-table tr:last-child { border-bottom: none; }
body.imk-storefront .imk-pdp-specs-table tr:hover { background: rgba(255,255,255,0.03); }
body.imk-storefront .imk-pdp-specs-table .spec-key {
    padding: 9px 12px 9px 0;
    color: #6B7280;
    font-weight: 600;
    vertical-align: top;
    width: 45%;
}
body.imk-storefront .imk-pdp-specs-table .spec-val {
    padding: 9px 0;
    color: #D1D5DB;
    vertical-align: top;
}

body.imk-storefront .imk-pdp-embedded-list {
    max-height: 360px;
    overflow: auto;
}

/* Delivery list */
body.imk-storefront .imk-pdp-delivery-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
body.imk-storefront .imk-pdp-delivery-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
body.imk-storefront .imk-pdp-delivery-list .d-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(227,0,34,0.1);
    border: 1px solid rgba(227,0,34,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E30022;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
}
body.imk-storefront .imk-pdp-delivery-list h4 {
    font-size: 13px;
    font-weight: 700;
    color: #F9FAFB;
    margin: 0 0 4px;
}
body.imk-storefront .imk-pdp-delivery-list p {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* ── Related Products section ───────────────────────────────── */
body.imk-storefront .imk-pdp-related {
    margin-bottom: 48px;
}
body.imk-storefront .imk-pdp-related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
body.imk-storefront .imk-pdp-related-head h2 {
    font-size: 18px;
    font-weight: 800;
    color: #F9FAFB;
    margin: 0;
    letter-spacing: -0.01em;
}
body.imk-storefront .imk-pdp-related-head a {
    color: #E30022;
    text-decoration: none;
    transition: opacity 0.15s;
}
body.imk-storefront .imk-pdp-related-head a:hover { opacity: 0.8; }

body.imk-storefront .imk-pdp-related-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
}
body.imk-storefront .imk-pdp-related-scroll::-webkit-scrollbar {
    height: 4px;
}
body.imk-storefront .imk-pdp-related-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
}
body.imk-storefront .imk-pdp-related-scroll .col-product {
    flex: 0 0 210px;
    width: 210px;
    padding: 0;
}

/* ── Reviews section ────────────────────────────────────────── */
body.imk-storefront .imk-pdp-reviews {
    margin-bottom: 40px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px;
}
body.imk-storefront .imk-pdp-reviews h2 {
    font-size: 18px;
    font-weight: 800;
    color: #F9FAFB;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Comments section ───────────────────────────────────────── */
body.imk-storefront .imk-pdp-comments {
    margin-bottom: 40px;
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px;
}
body.imk-storefront .imk-pdp-comments h2 {
    font-size: 18px;
    font-weight: 800;
    color: #F9FAFB;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
body.imk-storefront .imk-pdp-comment-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
body.imk-storefront .imk-pdp-comment-form h4 {
    font-size: 14px;
    font-weight: 700;
    color: #F9FAFB;
    margin: 0 0 16px;
}
body.imk-storefront .imk-pdp-comment-form .form-control {
    background: #0B0F19 !important;
    border: 1.5px solid rgba(255,255,255,0.1) !important;
    color: #F9FAFB !important;
    border-radius: 12px !important;
    font-size: 13px !important;
}
body.imk-storefront .imk-pdp-comment-form .form-control:focus {
    border-color: #E30022 !important;
    box-shadow: none !important;
}
body.imk-storefront .imk-pdp-comment-form .btn-custom {
    background: #E30022 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    border: none !important;
}
body.imk-storefront .imk-pdp-comment-form .form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* ── Mobile overrides ───────────────────────────────────────── */
@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-page > .container,
    body.imk-storefront .imk-pdp-page > #wrapper > .container {
        padding-bottom: 146px !important;
    }
    body.imk-storefront .imk-pdp-breadcrumb {
        display: none;
    }
    body.imk-storefront .imk-pdp-overview {
        gap: 18px;
        margin-bottom: 22px;
    }
    body.imk-storefront .imk-pdp-gallery {
        position: static;
        top: auto;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider-container {
        flex-direction: column-reverse;
        gap: 12px;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider-container .right {
        width: 100%;
        max-width: calc(100vw - 32px);
        min-width: 0;
    }
    body.imk-storefront .imk-pdp-gallery #product_slider,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-list,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-track,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide,
    body.imk-storefront .imk-pdp-gallery #product_slider .item {
        width: 100% !important;
        max-width: 100% !important;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider-container .right .product-slider-content {
        border-radius: 26px !important;
        background:
            radial-gradient(circle at 50% 16%, rgba(255, 24, 92, 0.16), transparent 32%),
            linear-gradient(180deg, #111827, #0b1220) !important;
        box-shadow: 0 20px 52px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider .item {
        padding: 18px 18px 16px !important;
        min-height: 308px !important;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider .item a {
        min-height: 274px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    body.imk-storefront .imk-pdp-details .product-title {
        font-size: clamp(1.85rem, 8.1vw, 2.45rem) !important;
        line-height: 1.04 !important;
        margin-bottom: 8px !important;
        letter-spacing: -0.035em;
    }
    body.imk-storefront .imk-pdp-title-area {
        padding: 0 0 14px;
        margin-bottom: 14px;
    }
    body.imk-storefront .imk-pdp-meta-row {
        gap: 8px;
        margin-top: 0;
    }
    body.imk-storefront .imk-pdp-sku {
        width: 100%;
        margin-left: 0;
    }
    body.imk-storefront .imk-pdp-price-area .lbl-price {
        font-size: 28px !important;
    }
    body.imk-storefront .imk-pdp-price-area {
        margin-bottom: 14px;
    }
    body.imk-storefront .imk-pdp-price-area #product_details_price_container {
        gap: 8px;
    }
    body.imk-storefront .imk-pdp-price-area .discount-original-price {
        font-size: 15px !important;
    }
    body.imk-storefront .imk-pdp-stock {
        margin-bottom: 16px;
        padding: 8px 12px;
        border-radius: 999px;
    }
    body.imk-storefront .imk-pdp-details .label-product-variation,
    body.imk-storefront .imk-pdp-details .product-variations .control-label {
        display: block;
        color: #D1D5DB;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    body.imk-storefront .imk-pdp-details .custom-control-variation {
        margin: 0 8px 10px 0;
    }
    body.imk-storefront .imk-pdp-details .custom-control-variation .custom-control-label {
        background: #111827;
        border: 1.5px solid rgba(255,255,255,0.09);
        border-radius: 12px;
        color: #E5E7EB !important;
        min-width: 72px;
        min-height: 46px;
        padding: 12px 16px;
        font-size: 13px;
        line-height: 1.1;
    }
    body.imk-storefront .imk-pdp-details .custom-control-variation .custom-control-label-image {
        padding: 4px;
        min-width: 0;
        min-height: 0;
    }
    body.imk-storefront .imk-pdp-details .custom-control-variation .custom-control-label-image .img-cnt {
        width: 54px;
        height: 54px;
    }
    body.imk-storefront .imk-pdp-details .custom-control-variation .label-variation-color {
        padding: 4px !important;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        min-width: 48px;
        min-height: 48px;
    }
    body.imk-storefront .imk-pdp-details .custom-control-variation .label-variation-color span {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.12);
    }
    body.imk-storefront .imk-pdp-details .custom-control-input:checked + .custom-control-label {
        border-color: #E30022;
        box-shadow: 0 0 0 2px rgba(227,0,34,0.12);
        color: #fff !important;
    }
    body.imk-storefront .imk-pdp-details .custom-select,
    body.imk-storefront .imk-pdp-details .form-input {
        background: #111827 !important;
        border: 1.5px solid rgba(255,255,255,0.1) !important;
        border-radius: 14px !important;
        color: #F9FAFB !important;
        min-height: 48px;
    }
    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        width: auto !important;
        height: 268px !important;
        filter: drop-shadow(0 28px 36px rgba(0,0,0,0.28));
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto !important;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
        flex: none !important;
        width: 100% !important;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 2px 2px;
    }
    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
        margin-bottom: 0 !important;
        flex-shrink: 0;
        width: 66px !important;
        height: 66px !important;
        border-radius: 16px !important;
    }
    body.imk-storefront .imk-pdp-details .product-content-details {
        width: 100%;
    }
    body.imk-storefront .imk-pdp-title-area,
    body.imk-storefront .imk-pdp-price-area,
    body.imk-storefront .imk-pdp-stock,
    body.imk-storefront .imk-pdp-details .product-variations,
    body.imk-storefront .imk-pdp-actions,
    body.imk-storefront .imk-pdp-pay-panel,
    body.imk-storefront .imk-pdp-gifts,
    body.imk-storefront .imk-pdp-mobile-cta-stack {
        width: 100%;
    }
    body.imk-storefront .imk-pdp-price-area,
    body.imk-storefront .imk-pdp-stock,
    body.imk-storefront .imk-pdp-details .product-variations,
    body.imk-storefront .imk-pdp-actions,
    body.imk-storefront .imk-pdp-pay-panel,
    body.imk-storefront .imk-pdp-gifts,
    body.imk-storefront .imk-pdp-mobile-cta-stack,
    body.imk-storefront .imk-pdp-title-area {
        padding-left: 16px;
        padding-right: 16px;
    }
    body.imk-storefront .imk-pdp-price-area {
        margin-bottom: 12px;
    }
    body.imk-storefront .imk-pdp-price-area #product_details_price_container {
        gap: 10px;
        align-items: center;
    }
    body.imk-storefront .imk-pdp-price-area .lbl-price {
        font-size: 32px !important;
        letter-spacing: -0.045em;
    }
    body.imk-storefront .imk-pdp-price-area .discount-rate {
        min-height: 32px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12px;
    }
    body.imk-storefront .imk-pdp-stock {
        display: inline-flex;
        width: auto;
        margin-bottom: 14px;
        padding: 10px 14px;
        border-radius: 999px;
    }
    body.imk-storefront .imk-pdp-actions {
        align-items: stretch;
        gap: 12px;
        margin-bottom: 14px;
    }
    body.imk-storefront .imk-pdp-details .number-spinner {
        flex: 0 0 118px;
        min-width: 118px;
        width: 118px;
        height: 56px;
    }
    body.imk-storefront .imk-pdp-details .number-spinner .form-control,
    body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-minus,
    body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-plus {
        min-height: 56px;
    }
    body.imk-storefront .imk-pdp-actions .btn-wishlist {
        width: 56px !important;
        height: 56px !important;
        border-radius: 18px !important;
    }
    body.imk-storefront .imk-pdp-main-buy {
        display: none;
    }
    body.imk-storefront .imk-pdp-mobile-secondary {
        display: none;
    }
    body.imk-storefront .imk-pdp-actions.is-wishlist-only {
        justify-content: flex-end;
        gap: 0;
        margin-top: -2px;
        margin-bottom: 8px;
    }
    body.imk-storefront .imk-pdp-actions.is-wishlist-only .btn-wishlist {
        width: 46px !important;
        height: 46px !important;
        border-radius: 14px !important;
    }
    body.imk-storefront .imk-pdp-mobile-cta-stack {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0 0 12px;
    }
    body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart,
    body.imk-storefront .imk-pdp-mobile-secondary .btn {
        min-height: 58px !important;
        border-radius: 18px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
    }
    body.imk-storefront .imk-pdp-mobile-secondary .btn {
        background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(11,16,24,0.98)) !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        color: #f8fafc !important;
        box-shadow: none !important;
    }
    body.imk-storefront .imk-pdp-fast-payments {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: wrap;
        overflow-x: auto;
        gap: 10px;
        padding: 14px;
    }
    body.imk-storefront .imk-pay-label {
        min-height: 54px;
        padding: 12px 14px;
        font-size: 12px;
        line-height: 1.35;
    }
    body.imk-storefront .imk-pdp-banks {
        padding: 14px;
    }
    body.imk-storefront .imk-pdp-banks-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 2px 2px 6px;
    }
    body.imk-storefront .imk-bank-card {
        flex: 0 0 196px;
        min-height: 124px;
        border-radius: 18px;
    }
    body.imk-storefront .imk-pdp-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        background: transparent;
        border: 0;
        border-radius: 0;
        overflow: visible;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    body.imk-storefront .imk-pdp-feature-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px 14px 13px;
        border: 1px solid rgba(255,255,255,0.08);
        border-right: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(17,24,39,0.96), rgba(10,14,22,0.98));
        box-shadow: 0 14px 30px rgba(0,0,0,0.18);
        min-width: 0;
    }
    body.imk-storefront .imk-pdp-feature-item:last-child {
        border-right: 1px solid rgba(255,255,255,0.08);
    }
    body.imk-storefront .imk-pdp-feature-item .feat-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 17px;
    }
    body.imk-storefront .imk-pdp-feature-item h4 {
        font-size: 12px;
        line-height: 1.25;
        margin-bottom: 2px;
    }
    body.imk-storefront .imk-pdp-feature-item p {
        font-size: 10px;
        line-height: 1.35;
    }
    body.imk-storefront .imk-pdp-mobile-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        margin-bottom: 14px;
        padding: 0 16px 2px;
    }
    body.imk-storefront .imk-pdp-mobile-tab {
        min-width: 0;
        border: 1px solid rgba(255,255,255,0.09);
        background: #0F1724;
        color: #9CA3AF;
        border-radius: 16px;
        padding: 12px 10px;
        font-size: 11px;
        font-weight: 700;
        min-height: 52px;
        white-space: normal;
        transition: color 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
    }
    body.imk-storefront .imk-pdp-mobile-tab.is-active {
        color: #F9FAFB;
        border-color: rgba(227,0,34,0.55);
        background: rgba(227,0,34,0.10);
        box-shadow: 0 0 0 1px rgba(227,0,34,0.12) inset;
    }
    body.imk-storefront .imk-pdp-info-grid {
        display: block;
        margin-bottom: 26px;
        padding: 0 16px;
    }
    body.imk-storefront .imk-pdp-info-card {
        display: none;
        padding: 18px;
        border-radius: 22px;
    }
    body.imk-storefront .imk-pdp-info-card.is-active {
        display: block;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 92px);
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 8px 8px 12px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.09);
        background: rgba(7,11,18,0.86);
        box-shadow: 0 12px 30px rgba(0,0,0,0.38);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
        backdrop-filter: blur(10px) saturate(120%);
        z-index: 96;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-bar.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-price {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px 10px;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-current {
        color: #F43F5E;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.03em;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-old {
        color: #6B7280;
        font-size: 13px;
        text-decoration: line-through;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-discount {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(227,0,34,0.16);
        color: #F43F5E;
        font-size: 11px;
        font-weight: 700;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-action {
        flex: 0 0 49%;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-action .btn,
    body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart {
        min-height: 54px !important;
        border-radius: 18px !important;
        font-size: 14px !important;
    }
    body.imk-storefront .imk-pdp-purchase-flow {
        gap: 14px;
    }
    body.imk-storefront .imk-pdp-purchase-hero,
    body.imk-storefront .imk-pdp-configurator-card,
    body.imk-storefront .imk-pdp-checkout-card {
        margin: 0 16px;
        padding: 18px 16px;
        border-radius: 28px;
        border: 1px solid rgba(255,255,255,0.09);
        box-shadow: 0 22px 44px rgba(0,0,0,0.28);
    }
    body.imk-storefront .imk-pdp-purchase-hero {
        background:
            radial-gradient(circle at top right, rgba(255, 54, 110, 0.18), transparent 34%),
            linear-gradient(180deg, rgba(18,24,38,0.98), rgba(8,11,18,0.98));
    }
    body.imk-storefront .imk-pdp-configurator-card {
        background:
            radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 32%),
            linear-gradient(180deg, rgba(14,20,34,0.98), rgba(7,11,19,0.98));
    }
    body.imk-storefront .imk-pdp-checkout-card {
        background:
            radial-gradient(circle at bottom right, rgba(227, 0, 34, 0.12), transparent 30%),
            linear-gradient(180deg, rgba(15,20,34,0.98), rgba(7,10,18,0.98));
    }
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-title-area,
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-area,
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-stock,
    body.imk-storefront .imk-pdp-configurator-card .product-variations,
    body.imk-storefront .imk-pdp-configurator-card .imk-pdp-gifts,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-cta-stack,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel,
    body.imk-storefront .imk-pdp-checkout-card .row-custom.m-b-15 {
        padding-left: 0;
        padding-right: 0;
    }
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-title-area {
        margin-bottom: 14px;
        padding-bottom: 0;
        border-bottom: none;
    }
    body.imk-storefront .imk-pdp-price-stock-row {
        gap: 10px;
    }
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-area,
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-stock {
        margin-bottom: 0;
    }
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-stock {
        align-self: flex-start;
    }
    body.imk-storefront .imk-pdp-section-head,
    body.imk-storefront .imk-pdp-selection-summary {
        display: block;
    }
    body.imk-storefront .imk-pdp-section-head {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }
    body.imk-storefront .imk-pdp-section-head-inline {
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    body.imk-storefront .imk-pdp-section-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 82px;
        padding: 7px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.07);
        color: #F8FAFC;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
        flex-shrink: 0;
    }
    body.imk-storefront .imk-pdp-section-copy {
        min-width: 0;
        flex: 1 1 auto;
    }
    body.imk-storefront .imk-pdp-section-copy h2 {
        margin: 0 0 4px;
        color: #F8FAFC;
        font-size: 18px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.025em;
    }
    body.imk-storefront .imk-pdp-section-copy p {
        margin: 0;
        color: #94A3B8;
        font-size: 12px;
        line-height: 1.45;
    }
    body.imk-storefront .imk-pdp-selection-summary-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    body.imk-storefront .imk-pdp-selection-chip {
        min-width: 0;
        padding: 12px 14px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.08);
        background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }
    body.imk-storefront .imk-pdp-selection-chip-label {
        display: block;
        margin-bottom: 6px;
        color: #94A3B8;
        font-size: 10px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }
    body.imk-storefront .imk-pdp-selection-chip-value {
        display: block;
        min-width: 0;
        color: #F8FAFC;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    body.imk-storefront .imk-pdp-configurator-card .product-variations {
        margin-bottom: 0;
    }
    body.imk-storefront .imk-pdp-configurator-card .row-product-variation.item-variation {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-group {
        padding: 14px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(11,17,29,0.96), rgba(5,9,16,0.98));
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-group-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px !important;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-group-title-stack {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        min-width: 0;
        flex: 1 1 auto;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-step {
        width: 32px;
        height: 32px;
        border-radius: 11px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(227,0,34,0.92), rgba(255,78,112,0.92));
        color: #fff;
        font-size: 12px;
        font-weight: 900;
        box-shadow: 0 10px 18px rgba(227,0,34,0.22);
        flex-shrink: 0;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-group-copy {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-group-helper {
        color: #94A3B8;
        font-size: 12px;
        line-height: 1.35;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-current {
        display: inline-flex;
        align-items: center;
        max-width: 48%;
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(255,255,255,0.06);
        color: #F8FAFC;
        font-size: 13px !important;
        font-weight: 800 !important;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-options,
    body.imk-storefront .imk-pdp-configurator-card .product-variation-checkbox {
        display: grid !important;
        gap: 10px;
        align-items: stretch;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-options-color {
        grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-options-chip,
    body.imk-storefront .imk-pdp-configurator-card .product-variation-checkbox {
        grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    }
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation {
        width: 100%;
        min-width: 0;
        margin: 0 !important;
    }
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .custom-control-label {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        padding: 13px 14px;
        border-radius: 18px;
        background: rgba(7,12,20,0.86);
        border: 1.5px solid rgba(255,255,255,0.08);
        display: flex !important;
        align-items: center !important;
        justify-content: center;
        text-align: center;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    }
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .label-variation-color {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 60px !important;
        height: auto !important;
        padding: 12px 14px !important;
        border-radius: 18px !important;
        justify-content: flex-start;
    }
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .label-variation-color > span,
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .label-variation-color .variation-color-chip {
        width: auto;
        height: auto;
        border: 0;
    }
    body.imk-storefront .imk-pdp-configurator-card .variation-color-chip {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    body.imk-storefront .imk-pdp-configurator-card .variation-color-box {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        background: var(--imk-variation-color, #fff);
        box-shadow: 0 0 0 4px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(0,0,0,0.26);
    }
    body.imk-storefront .imk-pdp-configurator-card .variation-color-name {
        font-size: 13px;
        font-weight: 700;
    }
    body.imk-storefront .imk-pdp-configurator-card .custom-control-input:checked + .custom-control-label {
        transform: translateY(-1px);
        border-color: rgba(255,104,136,0.72);
        background: linear-gradient(180deg, rgba(227,0,34,0.18), rgba(84,17,28,0.12));
        color: #fff !important;
        box-shadow: 0 12px 24px rgba(227,0,34,0.12), inset 0 0 0 1px rgba(255,255,255,0.08);
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-pdp-gifts {
        margin-bottom: 0;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    body.imk-storefront .imk-pdp-checkout-card .row-custom.m-b-15 {
        margin-bottom: 12px !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 56px;
        align-items: center;
        gap: 10px;
        padding: 12px;
        margin-bottom: 14px;
        border-radius: 22px;
        background: rgba(5,10,18,0.58);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.is-wishlist-only {
        grid-template-columns: 56px;
        justify-content: end;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner {
        width: 100%;
        min-width: 0;
        height: 58px;
        flex: 1 1 auto;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        background: linear-gradient(180deg, rgba(19,27,42,0.98), rgba(10,15,24,0.98));
        border: 1px solid rgba(255,255,255,0.10);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner .btn-spinner-minus,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner .btn-spinner-plus {
        width: 100% !important;
        min-width: 0;
        min-height: 58px;
        color: #F8FAFC !important;
        font-family: "Noto Sans Georgian", "BPG Arial Caps", sans-serif !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        background: rgba(255,255,255,0.04) !important;
        border: 0 !important;
        box-shadow: none !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner .btn-spinner-minus {
        border-right: 1px solid rgba(255,255,255,0.08) !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner .btn-spinner-plus {
        border-left: 1px solid rgba(255,255,255,0.08) !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .number-spinner .form-control {
        width: 100% !important;
        min-width: 0;
        height: 100%;
        color: #F8FAFC !important;
        font-family: "Noto Sans Georgian", "BPG Arial Caps", sans-serif !important;
        font-size: 18px !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em;
        background: transparent !important;
        border: 0 !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .btn-wishlist {
        justify-self: end;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-cta-stack {
        margin: 0 0 16px;
        gap: 12px;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-primary .btn-product-cart,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-secondary .btn {
        min-height: 60px !important;
        border-radius: 20px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-primary .btn-product-cart {
        box-shadow: 0 16px 30px rgba(227,0,34,0.26), inset 0 1px 0 rgba(255,255,255,0.14) !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-secondary .btn {
        background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(10,14,22,0.98)) !important;
        border: 1px solid rgba(255,255,255,0.10) !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel {
        margin-bottom: 0;
        padding: 14px;
        border-radius: 22px;
        background: rgba(4,10,18,0.6);
        border-color: rgba(255,255,255,0.08);
        box-shadow: none;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-fast-payments {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 0 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        margin-bottom: 14px;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pay-label {
        min-height: 58px;
        padding: 12px 14px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(19,27,42,0.98), rgba(11,16,25,0.98));
        border: 1px solid rgba(255,255,255,0.10);
        color: #E5E7EB;
        white-space: normal;
        line-height: 1.35;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-banks {
        padding: 0;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-banks-title {
        margin-bottom: 10px;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-banks-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        overflow: visible;
        padding: 0;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-bank-card {
        min-height: 132px;
        padding: 16px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(12,18,30,0.98), rgba(6,10,18,0.98));
        border: 1px solid rgba(255,255,255,0.08);
    }
    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        left: 16px;
        right: 16px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
        padding: 10px;
        border-radius: 22px;
        background: rgba(7,11,18,0.92);
        box-shadow: 0 18px 40px rgba(0,0,0,0.42);
    }
    body.imk-storefront .imk-pdp-related {
        margin-bottom: 28px;
        padding: 0 16px;
    }
    body.imk-storefront .imk-pdp-related-head {
        margin-bottom: 14px;
    }
    body.imk-storefront .imk-pdp-related-head h2 {
        font-size: 22px;
        line-height: 1.05;
    }
    body.imk-storefront .imk-pdp-related-scroll {
        gap: 12px;
        padding-bottom: 6px;
    }
    body.imk-storefront .imk-pdp-related-scroll .col-product {
        flex: 0 0 188px;
        width: 188px;
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card {
        padding: 10px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(15,22,36,0.98), rgba(9,14,24,0.98));
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 14px 30px rgba(0,0,0,0.2);
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .img-product-container {
        min-height: 156px;
        padding: 10px;
        border-radius: 14px;
        background: #111827;
        border: 1px solid rgba(255,255,255,0.06);
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .img-product-container > a {
        min-height: 132px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .imk-card-details {
        gap: 8px;
        padding-top: 10px;
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .product-title,
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .product-title a {
        font-size: 13px;
        line-height: 1.35;
        color: #E5E7EB;
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .imk-card-price-original {
        font-size: 11px;
        color: #6B7280;
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .imk-card-price-current {
        font-size: 16px;
        color: #F9FAFB;
    }
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .imk-card-view-btn {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }
    body.imk-storefront .imk-pdp-comments,
    body.imk-storefront .imk-pdp-reviews {
        margin: 0 16px 28px;
        padding: 22px 18px;
        border-radius: 22px;
    }
}

@media (max-width: 479.98px) {
    body.imk-storefront .imk-pdp-gallery .product-slider .item {
        min-height: 286px !important;
        padding: 16px 14px 14px !important;
    }
    body.imk-storefront .imk-pdp-gallery .product-slider .item a {
        min-height: 254px;
    }
    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        height: 244px !important;
    }
    body.imk-storefront .imk-pdp-details .product-title {
        font-size: clamp(1.68rem, 8.8vw, 2.12rem) !important;
    }
    body.imk-storefront .imk-pdp-actions {
        gap: 10px;
    }
    body.imk-storefront .imk-pdp-purchase-hero,
    body.imk-storefront .imk-pdp-configurator-card,
    body.imk-storefront .imk-pdp-checkout-card {
        margin-left: 12px;
        margin-right: 12px;
        padding: 16px 14px;
        border-radius: 24px;
    }
    body.imk-storefront .imk-pdp-section-head {
        flex-direction: column;
        gap: 10px;
    }
    body.imk-storefront .imk-pdp-selection-summary-grid {
        grid-template-columns: 1fr;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-group-head {
        flex-direction: column;
        align-items: stretch;
    }
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-current {
        align-self: flex-start;
        max-width: 100%;
    }
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions {
        grid-template-columns: minmax(0, 1fr) 52px;
        padding: 10px;
    }
    body.imk-storefront .imk-pdp-details .number-spinner {
        flex-basis: 108px;
        min-width: 108px;
        width: 108px;
    }
    body.imk-storefront .imk-pdp-fast-payments {
        grid-template-columns: 1fr;
    }
    body.imk-storefront .imk-pdp-mobile-tabs {
        grid-template-columns: 1fr;
    }
    body.imk-storefront .imk-pdp-features {
        grid-template-columns: 1fr;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        left: 10px;
        right: 10px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 86px);
        gap: 10px;
    }
    body.imk-storefront .imk-pdp-mobile-sticky-action {
        flex-basis: 50%;
    }
}

/* =============================================================
   MOBILE REDO (DESKTOP UNCHANGED)
   Final authoritative mobile layer for PDP
   ============================================================= */
@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-page > .container,
    body.imk-storefront .imk-pdp-page > #wrapper > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 156px !important;
    }

    body.imk-storefront .imk-pdp-breadcrumb {
        display: none !important;
    }

    body.imk-storefront .imk-pdp-overview {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 18px;
        padding: 0 12px;
    }

    body.imk-storefront .imk-pdp-gallery {
        position: static;
        top: auto;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container {
        display: block !important;
        gap: 0;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .right {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .right .product-slider-content {
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        background: linear-gradient(180deg, #101a2a, #0a111b) !important;
        box-shadow: 0 16px 32px rgba(0,0,0,0.32) !important;
    }

    body.imk-storefront .imk-pdp-gallery #product_slider,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-list,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-track,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide,
    body.imk-storefront .imk-pdp-gallery #product_slider .item {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider .item {
        padding: 12px !important;
        min-height: 254px !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider .item a {
        min-height: 230px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        width: auto !important;
        max-width: 100% !important;
        height: 228px !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        filter: none !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
        width: 100% !important;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 8px 2px 0;
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
        width: 56px !important;
        height: 56px !important;
        border-radius: 12px !important;
        margin-bottom: 0 !important;
    }

    body.imk-storefront .imk-pdp-title-area,
    body.imk-storefront .imk-pdp-price-area,
    body.imk-storefront .imk-pdp-stock,
    body.imk-storefront .imk-pdp-details .product-variations,
    body.imk-storefront .imk-pdp-actions,
    body.imk-storefront .imk-pdp-mobile-cta-stack,
    body.imk-storefront .imk-pdp-pay-panel,
    body.imk-storefront .imk-pdp-gifts {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    body.imk-storefront .imk-pdp-title-area {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    body.imk-storefront .imk-pdp-details .product-title {
        font-size: clamp(1.56rem, 7.6vw, 1.98rem) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.03em;
        margin-bottom: 7px !important;
    }

    body.imk-storefront .imk-pdp-price-area {
        margin-bottom: 10px;
    }

    body.imk-storefront .imk-pdp-price-area #product_details_price_container {
        gap: 8px;
        align-items: center;
    }

    body.imk-storefront .imk-pdp-price-area .lbl-price {
        font-size: 30px !important;
        letter-spacing: -0.04em;
    }

    body.imk-storefront .imk-pdp-stock {
        display: inline-flex;
        width: auto;
        padding: 8px 12px;
        margin-bottom: 10px;
        border-radius: 999px;
    }

    body.imk-storefront .imk-pdp-actions {
        display: grid;
        grid-template-columns: 108px 1fr 48px;
        gap: 8px;
        align-items: stretch;
        margin-bottom: 10px;
    }

    body.imk-storefront .imk-pdp-actions.is-wishlist-only {
        grid-template-columns: 1fr 48px;
        gap: 8px;
    }

    body.imk-storefront .imk-pdp-details .number-spinner {
        width: 108px;
        min-width: 108px;
        height: 48px;
        border-radius: 14px;
    }

    body.imk-storefront .imk-pdp-details .number-spinner .form-control,
    body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-minus,
    body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-plus {
        min-height: 48px;
    }

    body.imk-storefront .imk-pdp-actions .btn-wishlist {
        width: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
        margin: 0 !important;
    }

    body.imk-storefront .imk-pdp-main-buy {
        display: none !important;
    }

    body.imk-storefront .imk-pdp-mobile-cta-stack {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0 0 10px;
    }

    body.imk-storefront .imk-pdp-mobile-secondary {
        display: none !important;
    }

    body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart {
        min-height: 52px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
    }

    body.imk-storefront .imk-pdp-pay-panel {
        margin: 0 12px 14px;
        border-radius: 16px;
        overflow: hidden;
    }

    body.imk-storefront .imk-pdp-fast-payments {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
    }

    body.imk-storefront .imk-pay-label {
        min-height: 46px;
        padding: 8px 10px;
        font-size: 11px;
        line-height: 1.3;
    }

    body.imk-storefront .imk-pdp-banks {
        padding: 10px;
    }

    body.imk-storefront .imk-pdp-banks-grid {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    body.imk-storefront .imk-bank-card {
        flex: 0 0 160px;
        min-height: 104px;
        border-radius: 14px;
    }

    body.imk-storefront .imk-pdp-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0 12px;
        margin-bottom: 12px;
    }

    body.imk-storefront .imk-pdp-feature-item {
        gap: 8px;
        padding: 10px;
        border-radius: 14px;
    }

    body.imk-storefront .imk-pdp-feature-item .feat-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    body.imk-storefront .imk-pdp-feature-item h4 {
        font-size: 11px;
    }

    body.imk-storefront .imk-pdp-feature-item p {
        font-size: 10px;
    }

    body.imk-storefront .imk-pdp-mobile-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 0 12px;
        margin-bottom: 10px;
    }

    body.imk-storefront .imk-pdp-mobile-tab {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 11px;
        white-space: nowrap;
    }

    body.imk-storefront .imk-pdp-info-grid {
        margin-bottom: 14px;
        padding: 0 12px;
    }

    body.imk-storefront .imk-pdp-info-card {
        padding: 14px;
        border-radius: 16px;
    }

    body.imk-storefront .imk-pdp-related {
        padding: 0 12px;
        margin-bottom: 18px;
    }

    body.imk-storefront .imk-pdp-related-head h2 {
        font-size: 20px;
    }

    body.imk-storefront .imk-pdp-related-scroll {
        gap: 10px;
    }

    body.imk-storefront .imk-pdp-related-scroll .col-product {
        flex: 0 0 164px;
        width: 164px;
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card {
        padding: 8px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.08);
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card .img-product-container {
        min-height: 132px;
        padding: 8px;
        border-radius: 12px;
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card .img-product-container > a {
        min-height: 116px;
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card .product-title,
    body.imk-storefront .imk-pdp-related .imk-listing-product-card .product-title a {
        font-size: 12px;
        line-height: 1.35;
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card .imk-card-price-current {
        font-size: 15px;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        left: 8px;
        right: 8px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 74px);
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
        background: rgba(8,12,18,0.95);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 12px 24px rgba(0,0,0,0.35);
        z-index: 95;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-price {
        gap: 4px 6px;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-current {
        font-size: 18px;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-old,
    body.imk-storefront .imk-pdp-mobile-sticky-discount {
        display: none;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-action {
        flex: 1 1 auto;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-action .btn,
    body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart {
        min-height: 46px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
    }

    body.imk-storefront .imk-pdp-comments,
    body.imk-storefront .imk-pdp-reviews {
        margin: 0 12px 18px;
        padding: 16px 14px;
        border-radius: 16px;
    }
}

@media (max-width: 389.98px) {
    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        height: 206px !important;
    }

    body.imk-storefront .imk-pdp-actions {
        grid-template-columns: 96px 1fr 44px;
    }

    body.imk-storefront .imk-pdp-details .number-spinner {
        width: 96px;
        min-width: 96px;
    }

    body.imk-storefront .imk-pdp-actions .btn-wishlist {
        width: 44px !important;
        height: 44px !important;
    }

    body.imk-storefront .imk-pdp-fast-payments {
        grid-template-columns: 1fr;
    }

    body.imk-storefront .imk-pdp-features {
        grid-template-columns: 1fr;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 70px);
    }
}

/* =============================================================
   Mobile PDP system - final layer
   ============================================================= */
@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-page {
        width: 100%;
        max-width: 100vw;
        padding-top: 12px;
        padding-bottom: 24px;
        overflow-x: hidden;
    }

    body.imk-storefront .imk-pdp-page > .container,
    body.imk-storefront .imk-pdp-container {
        width: 100% !important;
        max-width: 100vw !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        padding-bottom: 154px !important;
    }

    body.imk-storefront .imk-pdp-overview {
        gap: 12px;
        padding: 0 12px;
        margin-bottom: 16px;
    }

    body.imk-storefront .imk-pdp-gallery {
        width: 100%;
        overflow: hidden;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container,
    body.imk-storefront .imk-pdp-gallery .product-slider-container .right,
    body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .right .product-slider-content {
        border-radius: 22px !important;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(230, 236, 246, 0.98)) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    body.imk-storefront .imk-pdp-gallery #product_slider,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-list,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-track,
    body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide,
    body.imk-storefront .imk-pdp-gallery #product_slider .item {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider .item {
        min-height: 0 !important;
        padding: 14px !important;
        background: transparent !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider .item a {
        min-height: 0 !important;
        aspect-ratio: 1 / 0.82;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        width: auto !important;
        max-width: 96% !important;
        height: auto !important;
        max-height: min(330px, 67vw) !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        filter: drop-shadow(0 16px 18px rgba(15, 23, 42, 0.12)) !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-nav {
        right: 12px;
        bottom: 12px;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-nav button,
    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider-nav button {
        width: 34px;
        height: 34px;
        border-radius: 13px;
        background: rgba(9, 10, 13, 0.72);
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
        display: flex !important;
        gap: 8px;
        padding: 8px 2px 0;
        overflow-x: auto;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .left::-webkit-scrollbar {
        display: none;
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
        width: 54px !important;
        height: 54px !important;
        border-radius: 14px !important;
        background: #f8fafc !important;
        border-color: rgba(15, 23, 42, 0.1) !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item.active .item-inner {
        border-color: #f43f5e !important;
        box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.16) !important;
    }

    body.imk-storefront .imk-pdp-details {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }

    body.imk-storefront .imk-pdp-details .product-content-details,
    body.imk-storefront .imk-pdp-details #response_product_details,
    body.imk-storefront .imk-pdp-details #form_add_cart {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-title-area,
    body.imk-storefront .imk-pdp-price-area,
    body.imk-storefront .imk-pdp-stock,
    body.imk-storefront .imk-pdp-details .product-variations,
    body.imk-storefront .imk-pdp-actions,
    body.imk-storefront .imk-pdp-mobile-cta-stack,
    body.imk-storefront .imk-pdp-pay-panel,
    body.imk-storefront .imk-pdp-gifts {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    body.imk-storefront .imk-pdp-title-area {
        margin: 0 0 8px;
        padding-top: 2px;
        padding-bottom: 10px;
    }

    body.imk-storefront .imk-pdp-details .product-title {
        max-width: 100%;
        margin: 0 0 8px !important;
        color: #fff !important;
        font-size: clamp(1.45rem, 7.1vw, 1.95rem) !important;
        line-height: 1.12 !important;
        font-weight: 900 !important;
        letter-spacing: 0;
        text-shadow: none;
    }

    body.imk-storefront .imk-pdp-meta-row {
        gap: 7px;
        font-size: 12px;
    }

    body.imk-storefront .imk-pdp-rating {
        min-height: 30px;
        padding: 0 9px;
        border: 1px solid rgba(251, 191, 36, 0.2);
        border-radius: 999px;
        background: rgba(251, 191, 36, 0.08);
    }

    body.imk-storefront .imk-pdp-sku {
        width: auto;
        max-width: 100%;
        margin-left: 0;
        color: #94a3b8;
    }

    body.imk-storefront .imk-pdp-price-area {
        margin-bottom: 8px;
    }

    body.imk-storefront .imk-pdp-price-area #product_details_price_container {
        align-items: baseline;
        gap: 7px 9px;
    }

    body.imk-storefront .imk-pdp-price-area .lbl-price {
        color: #fff !important;
        font-size: clamp(2rem, 9vw, 2.55rem) !important;
        line-height: 0.95 !important;
        font-weight: 950 !important;
        letter-spacing: 0;
        text-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-price-area .lbl-price span {
        color: #fda4af;
        font-size: 0.5em;
        font-family: "Segoe UI Symbol", "Segoe UI", Arial, sans-serif;
    }

    body.imk-storefront .imk-pdp-price-area .discount-original-price,
    body.imk-storefront .imk-pdp-price-area .discount-rate {
        margin-bottom: 0;
    }

    body.imk-storefront .imk-pdp-stock {
        width: fit-content !important;
        max-width: calc(100% - 24px);
        min-height: 36px;
        margin: 0 12px 10px !important;
        padding: 8px 11px !important;
        font-size: 12px;
        line-height: 1.25;
    }

    body.imk-storefront .imk-pdp-details .product-variations {
        margin-bottom: 10px;
    }

    body.imk-storefront .imk-pdp-details .custom-control-variation .custom-control-label,
    body.imk-storefront .imk-pdp-details .custom-select,
    body.imk-storefront .imk-pdp-details .form-input {
        min-height: 44px;
        border-radius: 14px !important;
        font-size: 12px;
    }

    body.imk-storefront .imk-pdp-actions {
        display: grid !important;
        grid-template-columns: 100px minmax(0, 1fr) 46px;
        gap: 8px;
        align-items: stretch;
        margin-bottom: 8px;
    }

    body.imk-storefront .imk-pdp-actions.is-wishlist-only {
        grid-template-columns: minmax(0, 1fr) 46px;
    }

    body.imk-storefront .imk-pdp-details .number-spinner {
        width: 100px !important;
        min-width: 100px !important;
        height: 48px !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, 0.065) !important;
    }

    body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-minus,
    body.imk-storefront .imk-pdp-details .number-spinner .btn-spinner-plus {
        width: 32px !important;
    }

    body.imk-storefront .imk-pdp-actions .btn-wishlist {
        width: 46px !important;
        height: 48px !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, 0.065) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        color: #f8fafc !important;
    }

    body.imk-storefront .imk-pdp-main-buy {
        display: none !important;
    }

    body.imk-storefront .imk-pdp-mobile-cta-stack {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 0 0 10px !important;
    }

    body.imk-storefront .imk-pdp-mobile-primary .btn-product-cart,
    body.imk-storefront .imk-pdp-mobile-primary .btn,
    body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart,
    body.imk-storefront .imk-pdp-mobile-sticky-action .btn {
        min-height: 52px !important;
        border-radius: 16px !important;
        background: linear-gradient(135deg, #f43f5e, #be123c) !important;
        color: #fff !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        box-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-mobile-secondary {
        display: none !important;
    }

    body.imk-storefront .imk-pdp-pay-panel {
        margin: 0 12px 12px !important;
        padding: 0 !important;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: none;
    }

    body.imk-storefront .imk-pdp-fast-payments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 10px;
        gap: 8px;
    }

    body.imk-storefront .imk-pay-label {
        min-width: 0;
        min-height: 44px;
        padding: 8px 9px;
        border-radius: 14px;
        font-size: 11px;
        white-space: normal;
    }

    body.imk-storefront .imk-pdp-banks {
        padding: 10px;
    }

    body.imk-storefront .imk-pdp-banks-title {
        margin-bottom: 8px;
        font-size: 10px;
    }

    body.imk-storefront .imk-pdp-banks-grid {
        display: flex !important;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    body.imk-storefront .imk-pdp-banks-grid::-webkit-scrollbar {
        display: none;
    }

    body.imk-storefront .imk-bank-card {
        flex: 0 0 158px;
        min-height: 102px;
        padding: 12px;
        border-radius: 15px;
        background: rgba(8, 9, 12, 0.62);
    }

    body.imk-storefront .imk-pdp-features {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0 12px;
        margin-bottom: 12px;
        background: transparent;
        border: 0;
    }

    body.imk-storefront .imk-pdp-feature-item {
        min-width: 0;
        min-height: 96px;
        padding: 11px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.09);
        align-items: flex-start;
    }

    body.imk-storefront .imk-pdp-feature-item h4,
    body.imk-storefront .imk-pdp-feature-item p {
        overflow-wrap: anywhere;
    }

    body.imk-storefront .imk-pdp-mobile-tabs {
        display: flex !important;
        gap: 8px;
        margin: 0 0 10px;
        padding: 0 12px 2px;
        overflow-x: auto;
    }

    body.imk-storefront .imk-pdp-mobile-tabs::-webkit-scrollbar {
        display: none;
    }

    body.imk-storefront .imk-pdp-mobile-tab {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.09);
        color: #cbd5e1;
        font-size: 12px;
        font-weight: 850;
    }

    body.imk-storefront .imk-pdp-mobile-tab.is-active {
        background: #f8fafc;
        border-color: #f8fafc;
        color: #101114;
        box-shadow: none;
    }

    body.imk-storefront .imk-pdp-info-grid {
        padding: 0 12px;
        margin-bottom: 16px;
    }

    body.imk-storefront .imk-pdp-info-card {
        padding: 15px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: none;
    }

    body.imk-storefront .imk-pdp-info-card h3 {
        margin-bottom: 12px;
        padding-bottom: 10px;
        font-size: 11px;
    }

    body.imk-storefront .imk-pdp-desc-body {
        max-height: none;
        color: #cbd5e1;
        font-size: 13px;
        line-height: 1.65;
    }

    body.imk-storefront .imk-pdp-specs-table,
    body.imk-storefront .imk-pdp-specs-table .spec-key,
    body.imk-storefront .imk-pdp-specs-table .spec-val {
        font-size: 12px;
        line-height: 1.45;
    }

    body.imk-storefront .imk-pdp-related {
        margin-bottom: 18px;
        padding: 0 12px;
    }

    body.imk-storefront .imk-pdp-related-head {
        margin-bottom: 10px;
    }

    body.imk-storefront .imk-pdp-related-head h2 {
        font-size: 1.25rem;
        line-height: 1.15;
    }

    body.imk-storefront .imk-pdp-related-scroll {
        gap: 10px;
        margin-right: -12px;
        margin-left: -12px;
        padding: 0 12px 10px;
        scroll-snap-type: x proximity;
    }

    body.imk-storefront .imk-pdp-related-scroll .col-product {
        flex: 0 0 170px !important;
        width: 170px !important;
        scroll-snap-align: start;
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card {
        padding: 8px !important;
        border-radius: 17px !important;
        background: rgba(255, 255, 255, 0.055) !important;
        box-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-related .img-product-container {
        padding: 8px !important;
        border-radius: 14px !important;
        background: linear-gradient(145deg, #f8fafc, #e8edf5) !important;
    }

    body.imk-storefront .imk-pdp-related .img-product-container > a {
        aspect-ratio: 1 / 0.9;
        min-height: 0 !important;
    }

    body.imk-storefront .imk-pdp-related .img-product {
        max-height: 118px !important;
    }

    body.imk-storefront .imk-pdp-comments,
    body.imk-storefront .imk-pdp-reviews {
        margin: 0 12px 16px;
        padding: 15px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: none;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        left: 8px;
        right: 8px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 76px);
        min-height: 64px;
        padding: 8px;
        gap: 8px;
        border-radius: 20px;
        background: rgba(12, 13, 16, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        z-index: 117;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-current {
        color: #fff;
        font-size: clamp(1.1rem, 5.4vw, 1.35rem);
        font-weight: 950;
        letter-spacing: 0;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-action {
        flex: 0 0 min(48%, 178px);
    }

    body.imk-storefront .imk-pdp-mobile-sticky-action .btn,
    body.imk-storefront .imk-pdp-mobile-sticky-action .btn-product-cart {
        min-height: 48px !important;
        border-radius: 16px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 389.98px) {
    body.imk-storefront .imk-pdp-gallery .product-slider .item a {
        aspect-ratio: 1 / 0.9;
    }

    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        max-height: 270px !important;
    }

    body.imk-storefront .imk-pdp-actions {
        grid-template-columns: 92px minmax(0, 1fr) 44px;
    }

    body.imk-storefront .imk-pdp-actions.is-wishlist-only {
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    body.imk-storefront .imk-pdp-details .number-spinner {
        width: 92px !important;
        min-width: 92px !important;
    }

    body.imk-storefront .imk-pdp-fast-payments,
    body.imk-storefront .imk-pdp-features {
        grid-template-columns: 1fr;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 72px);
    }
}

/* Bank installment logos - final responsive layer */
body.imk-storefront .imk-pdp-banks {
    padding: 16px !important;
}

body.imk-storefront #wrapper.imk-pdp-page ~ .scrollup {
    display: none !important;
}

body.imk-storefront .imk-pdp-banks-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px !important;
    overflow: visible !important;
    padding: 0 !important;
}

body.imk-storefront .imk-bank-card {
    flex: initial !important;
    min-width: 0 !important;
    min-height: 128px !important;
    padding: 12px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px !important;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.94), rgba(12, 14, 19, 0.86)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.imk-storefront .imk-bank-card .bank-logo {
    width: 100% !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 6px 8px;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff !important;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

body.imk-storefront .imk-bank-card .bank-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 28px;
    object-fit: contain;
}

body.imk-storefront .imk-bank-card .imk-logo-bog img {
    max-height: 30px;
}

body.imk-storefront .imk-bank-card .imk-logo-liberty img {
    width: 86px !important;
    height: 86px !important;
    max-width: none;
    max-height: none;
}

body.imk-storefront .imk-bank-card .bank-name {
    min-height: 34px;
    color: #f8fafc !important;
    font-size: 12px !important;
    line-height: 1.28 !important;
    font-weight: 850 !important;
}

body.imk-storefront .imk-bank-card .bank-cta {
    margin-top: auto;
    color: #f43f5e !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
}

@media (max-width: 991.98px) {
    body.imk-storefront .imk-pdp-banks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.imk-storefront .imk-bank-card {
        min-height: 124px !important;
    }
}

@media (max-width: 389.98px) {
    body.imk-storefront .imk-pdp-banks {
        padding: 10px !important;
    }

    body.imk-storefront .imk-pdp-banks-grid {
        gap: 8px !important;
    }

    body.imk-storefront .imk-bank-card {
        min-height: 118px !important;
        padding: 10px !important;
        border-radius: 14px !important;
    }

    body.imk-storefront .imk-bank-card .bank-logo {
        height: 36px !important;
        padding: 5px 7px;
        border-radius: 11px !important;
    }

    body.imk-storefront .imk-bank-card .bank-logo img {
        max-height: 25px;
    }

    body.imk-storefront .imk-bank-card .bank-name {
        min-height: 30px;
        font-size: 10.5px !important;
    }

    body.imk-storefront .imk-bank-card .bank-cta {
        font-size: 10px !important;
    }
}

    /* Primary product characteristics - final responsive layer */
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs {
        grid-template-columns: repeat(auto-fit, minmax(174px, 1fr)) !important;
        gap: 12px !important;
        margin-bottom: 32px !important;
    }

    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item {
        min-width: 0;
        min-height: 82px;
        padding: 15px 16px !important;
        border-radius: 18px !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 14, 22, 0.96)) !important;
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2) !important;
    }

    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 15px !important;
        background: rgba(244, 63, 94, 0.15) !important;
        border-color: rgba(244, 63, 94, 0.24) !important;
        color: #f43f5e !important;
    }

    body.imk-storefront .imk-pdp-page .imk-pdp-feature-copy {
        min-width: 0;
    }

    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item h4 {
        margin: 0 0 4px !important;
        color: #fff !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
        font-weight: 900 !important;
        letter-spacing: 0 !important;
        overflow-wrap: anywhere;
    }

    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item p {
        margin: 0 !important;
        color: #9ca3af !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
        font-weight: 750 !important;
        overflow-wrap: anywhere;
    }

    @media (max-width: 767.98px) {
        body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs {
            display: grid !important;
            grid-template-columns: repeat(3, minmax(116px, 1fr)) !important;
            gap: 8px !important;
            margin: 0 0 12px !important;
            padding: 0 12px 2px !important;
            overflow-x: auto;
        }

        body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs::-webkit-scrollbar {
            display: none;
        }

        body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item {
            min-height: 72px !important;
            padding: 10px !important;
            gap: 8px !important;
            align-items: center !important;
            box-shadow: none !important;
        }

        body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon {
            width: 34px !important;
            height: 34px !important;
            border-radius: 12px !important;
            font-size: 14px !important;
        }

        body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item h4 {
            font-size: 11px !important;
            line-height: 1.2 !important;
        }

        body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item p {
            font-size: 9.5px !important;
            line-height: 1.25 !important;
        }
    }

    @media (max-width: 389.98px) {
        body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs {
            grid-template-columns: repeat(3, minmax(112px, 1fr)) !important;
        }
    }

/* === IMK: Variation chip improvements === */

body.imk-storefront .imk-pdp-details .row-product-variation.item-variation {
    display: grid;
    gap: 14px;
}

body.imk-storefront .imk-pdp-details .imk-variation-group,
body.imk-storefront .imk-pdp-details .imk-variation-select-group {
    width: 100%;
    padding: 15px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(17,24,39,0.96), rgba(10,14,22,0.98));
    box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

body.imk-storefront .imk-pdp-details .imk-variation-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

body.imk-storefront .imk-pdp-details .imk-variation-current {
    color: #FCA5A5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: right;
}

body.imk-storefront .imk-pdp-details .imk-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.imk-storefront .imk-pdp-details .imk-variation-options .custom-control-variation {
    margin: 0;
    float: none;
    display: block;
}

body.imk-storefront .imk-pdp-details .imk-variation-options .custom-control-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 92px;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 16px;
    text-align: center;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

body.imk-storefront .imk-pdp-details .imk-variation-options .custom-control-label:hover {
    border-color: rgba(255,255,255,0.26);
    cursor: pointer;
    transform: translateY(-1px);
}

body.imk-storefront .imk-pdp-details .custom-control-input:checked + .custom-control-label {
    border-color: #E30022;
    box-shadow: 0 0 0 3px rgba(227,0,34,0.16);
    color: #fff !important;
    background: linear-gradient(180deg, rgba(227,0,34,0.16), rgba(17,24,39,0.98));
}

body.imk-storefront .imk-pdp-details .label-variation-color {
    min-width: 124px !important;
    min-height: 56px !important;
    width: auto;
    height: auto;
    padding: 8px 12px !important;
    border-radius: 18px !important;
}

body.imk-storefront .imk-pdp-details .variation-color-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.imk-storefront .imk-pdp-details .variation-color-box {
    display: block;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--imk-variation-color, #334155);
    border: 2px solid rgba(255,255,255,0.42);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.16), 0 4px 10px rgba(0,0,0,0.22);
}

body.imk-storefront .imk-pdp-details .variation-color-name {
    color: #F9FAFB;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

body.imk-storefront .imk-pdp-details .custom-control-input:checked + .label-variation-color {
    border-color: #E30022 !important;
    box-shadow: 0 0 0 3px rgba(227,0,34,0.22), 0 14px 28px rgba(227,0,34,0.08) !important;
}

body.imk-storefront .imk-pdp-details .custom-control-input:checked + .label-variation-color .variation-color-box {
    border-color: rgba(255,255,255,0.92);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.08), inset 0 1px 2px rgba(255,255,255,0.2);
}

body.imk-storefront .imk-pdp-details .option-out-of-stock {
    opacity: 0.42;
    filter: grayscale(0.15);
}

body.imk-storefront .imk-pdp-gallery #product_slider_container {
    --imk-selected-color: #475569;
}

body.imk-storefront .imk-pdp-gallery .item-empty-preview {
    padding: 0 !important;
    min-height: 0 !important;
}

body.imk-storefront .imk-pdp-gallery .imk-pdp-empty-preview-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

body.imk-storefront .imk-pdp-gallery .imk-pdp-empty-preview {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 34px 24px 28px;
    background:
        radial-gradient(circle at 50% 15%, rgba(255,255,255,0.1), transparent 34%),
        linear-gradient(180deg, #111827, #0b1220);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-shadow {
    width: 180px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15,23,42,0.48), transparent 68%);
    filter: blur(6px);
    display: block;
    margin: 0 auto -18px;
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-shell {
    position: relative;
    display: block;
    width: 214px;
    height: 320px;
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(148,163,184,0.08));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 44px rgba(0,0,0,0.34);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-finish {
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    background:
        linear-gradient(150deg, rgba(255,255,255,0.24), transparent 32%),
        radial-gradient(circle at 32% 18%, rgba(255,255,255,0.22), transparent 24%),
        linear-gradient(180deg, var(--imk-selected-color), #08101c 94%);
    transition: background 0.22s ease;
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-glow {
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 26%);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-camera,
body.imk-storefront .imk-pdp-gallery .imk-empty-device-camera-secondary {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.22), rgba(2,6,23,0.96) 72%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.1), 0 10px 18px rgba(0,0,0,0.22);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-camera-secondary {
    top: 64px;
    left: 18px;
    width: 30px;
    height: 30px;
}

body.imk-storefront .imk-pdp-gallery .imk-empty-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

body.imk-storefront .imk-pdp-gallery .imk-empty-preview-copy strong {
    max-width: 320px;
    color: #F9FAFB;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

body.imk-storefront .imk-pdp-gallery .imk-empty-preview-note {
    color: #FDA4AF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-details .row-product-variation.item-variation {
        gap: 12px;
    }

    body.imk-storefront .imk-pdp-details .imk-variation-group,
    body.imk-storefront .imk-pdp-details .imk-variation-select-group {
        padding: 14px;
        border-radius: 18px;
    }

    body.imk-storefront .imk-pdp-details .imk-variation-group-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    body.imk-storefront .imk-pdp-details .imk-variation-current {
        text-align: left;
        font-size: 11px;
    }

    body.imk-storefront .imk-pdp-details .imk-variation-options {
        gap: 8px;
    }

    body.imk-storefront .imk-pdp-details .imk-variation-options .custom-control-label {
        min-width: 82px;
        min-height: 46px;
        padding: 11px 14px;
        border-radius: 15px;
        font-size: 12px;
    }

    body.imk-storefront .imk-pdp-details .label-variation-color {
        min-width: 108px !important;
        min-height: 54px !important;
    }

    body.imk-storefront .imk-pdp-details .variation-color-box {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    body.imk-storefront .imk-pdp-details .variation-color-name {
        font-size: 12px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-pdp-empty-preview {
        min-height: 300px;
        padding: 24px 18px 22px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-device-shadow {
        width: 140px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-device-shell {
        width: 170px;
        height: 250px;
        border-radius: 28px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-device-finish,
    body.imk-storefront .imk-pdp-gallery .imk-empty-device-glow {
        inset: 8px;
        border-radius: 22px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-device-camera {
        width: 31px;
        height: 31px;
        top: 16px;
        left: 14px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-device-camera-secondary {
        width: 25px;
        height: 25px;
        top: 52px;
        left: 14px;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-preview-copy strong {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        align-items: center !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .number-spinner {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) 48px !important;
        width: auto !important;
        min-width: 0 !important;
        height: 58px !important;
        flex: 1 1 auto !important;
        margin: 0 !important;
        overflow: hidden !important;
        border-radius: 18px !important;
        border: 1px solid rgba(255,255,255,0.12) !important;
        background: linear-gradient(180deg, rgba(19,27,42,0.98), rgba(10,15,24,0.98)) !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
        isolation: isolate;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.has-inline-buy .number-spinner {
        flex: 0 0 132px !important;
        width: 132px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.has-inline-buy .imk-pdp-main-buy {
        display: block !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.has-inline-buy .imk-pdp-main-buy #buy_now_popup,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.has-inline-buy .imk-pdp-main-buy .btn {
        min-height: 58px !important;
        height: 58px !important;
        border-radius: 18px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .btn-spinner-minus,
    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .btn-spinner-plus,
    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .form-control {
        position: relative;
        z-index: 1;
        margin: 0 !important;
        text-indent: 0 !important;
        font-family: "Noto Sans Georgian", "BPG Arial Caps", sans-serif !important;
        -webkit-text-fill-color: currentColor;
    }

    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .btn-spinner-minus,
    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .btn-spinner-plus {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        min-width: 48px !important;
        height: 58px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: rgba(255,255,255,0.04) !important;
        color: #F8FAFC !important;
        font-size: 24px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .btn-spinner-minus {
        border-right: 1px solid rgba(255,255,255,0.08) !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .btn-spinner-plus {
        border-left: 1px solid rgba(255,255,255,0.08) !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .number-spinner > .form-control {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 58px !important;
        padding: 0 6px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #F8FAFC !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        line-height: 58px !important;
        text-align: center !important;
        box-shadow: none !important;
        -webkit-appearance: none;
        appearance: none;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .btn-wishlist {
        flex: 0 0 56px !important;
        width: 56px !important;
        height: 56px !important;
        margin: 0 !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-stock-row {
        width: 100%;
        gap: 12px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-area {
        width: 100%;
        margin: 0 !important;
        padding: 16px !important;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.10);
        background:
            radial-gradient(circle at top right, rgba(244, 63, 94, 0.18), transparent 34%),
            linear-gradient(180deg, rgba(19,27,42,0.98), rgba(8,12,20,0.98));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 32px rgba(0,0,0,0.22);
    }

    body.imk-storefront .imk-pdp-purchase-hero #product_details_price_container {
        width: 100%;
        justify-content: space-between;
        gap: 10px 12px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-shell {
        flex: 1 1 100%;
        gap: 10px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-meta {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .discount-original-price {
        margin-bottom: 0;
        padding-left: 2px;
        color: rgba(226, 232, 240, 0.56) !important;
        font-size: 13px !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero .discount-rate {
        min-height: 32px;
        padding: 0 12px !important;
        border-radius: 999px !important;
        background: rgba(244,63,94,0.14) !important;
        color: #FB7185 !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-main {
        gap: 4px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .lbl-price {
        display: inline-flex;
        align-items: flex-end;
        flex-wrap: nowrap;
        gap: 6px;
        white-space: nowrap;
        color: #FFFFFF !important;
        font-size: clamp(2.15rem, 10vw, 2.9rem) !important;
        line-height: 0.96 !important;
        letter-spacing: -0.05em;
        text-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero .lbl-price span,
    body.imk-storefront .imk-pdp-purchase-hero .lbl-price .csymbol {
        display: inline-flex;
        align-items: flex-end;
        color: #FDA4AF !important;
        font-size: 0.46em;
        font-family: "Segoe UI Symbol", "Segoe UI", Arial, sans-serif !important;
        line-height: 1;
        transform: translateY(-0.05em);
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-caption {
        color: #94A3B8;
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    body.imk-storefront .imk-pdp-purchase-hero .bank-price-credo,
    body.imk-storefront .imk-pdp-purchase-hero .bank-price-tbc,
    body.imk-storefront .imk-pdp-purchase-hero .bank-price-bog,
    body.imk-storefront .imk-pdp-purchase-hero .bank-price-liberty {
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.08);
        color: #CBD5E1;
        font-size: 12px;
        gap: 6px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .bank_price {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 900;
    }

    body.imk-storefront .imk-pdp-purchase-hero .lbl-sold {
        margin: 2px 0 0;
        align-self: flex-start;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-stock {
        margin: 0 !important;
        padding: 10px 14px !important;
        border-radius: 999px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
}

@media (max-width: 479.98px) {
    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-area {
        padding: 14px !important;
        border-radius: 22px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    body.imk-storefront .imk-pdp-purchase-hero .discount-rate {
        min-height: 30px;
    }
}

body.imk-storefront .imk-pdp-gallery {
    --imk-gallery-stage-height: clamp(380px, 45vw, 680px);
    --imk-gallery-stage-padding: clamp(18px, 2.4vw, 30px);
    --imk-gallery-stage-radius: clamp(22px, 2.8vw, 30px);
    --imk-gallery-thumb-size: clamp(110px, 9.6vw, 132px);
}

body.imk-storefront .imk-pdp-gallery .product-slider-container {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: clamp(12px, 1.6vw, 18px) !important;
    align-items: stretch;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    overflow: visible !important;
}

body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
    display: block !important;
    order: 2;
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    align-self: auto;
}

body.imk-storefront .imk-pdp-gallery .product-slider-container .right {
    display: block !important;
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
}

body.imk-storefront .imk-pdp-gallery .product-slider-container .right .product-slider-content {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: var(--imk-gallery-stage-radius) !important;
    background:
        radial-gradient(circle at 50% 12%, rgba(255,255,255,0.12), transparent 34%),
        linear-gradient(180deg, rgba(15,23,42,0.98), rgba(2,6,23,0.98)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 28px 60px rgba(2,6,23,0.28), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    overflow: hidden !important;
}

body.imk-storefront .imk-pdp-gallery #product_slider,
body.imk-storefront .imk-pdp-gallery #product_slider .slick-list,
body.imk-storefront .imk-pdp-gallery #product_slider .slick-track,
body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide,
body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide > div {
    width: 100% !important;
    max-width: 100% !important;
}

body.imk-storefront .imk-pdp-gallery #product_slider .slick-list {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
}

body.imk-storefront .imk-pdp-gallery #product_slider .slick-track,
body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide,
body.imk-storefront .imk-pdp-gallery #product_slider .slick-slide > div {
    height: 100% !important;
}

body.imk-storefront .imk-pdp-gallery .product-slider .item {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: var(--imk-gallery-stage-padding) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
}

body.imk-storefront .imk-pdp-gallery .product-slider .item a,
body.imk-storefront .imk-pdp-gallery .imk-pdp-empty-preview-link {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.imk-storefront .imk-pdp-gallery .img-product-slider {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 22px 38px rgba(15,23,42,0.22)) !important;
    image-rendering: auto !important;
    transform: translateZ(0);
    will-change: transform;
}

body.imk-storefront .imk-pdp-gallery .pdp-zoom-container {
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,0.98), rgba(248,250,252,0.92) 58%, rgba(241,245,249,0.82));
}

body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
    width: var(--imk-gallery-thumb-size) !important;
    height: var(--imk-gallery-thumb-size) !important;
    margin: 0 auto !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 8px !important;
    margin-bottom: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item {
    padding: 0 6px;
}

body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .slick-list {
    margin: 0 -6px;
}

body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .slick-slide > div {
    height: 100%;
}

body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .img-thumbnail {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    image-rendering: auto !important;
}

body.imk-storefront .imk-pdp-gallery .item-empty-preview {
    aspect-ratio: 1 / 1 !important;
    height: 100% !important;
    min-height: 0 !important;
}

body.imk-storefront .imk-pdp-gallery .imk-pdp-empty-preview {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    gap: clamp(14px, 2vw, 20px);
    padding: clamp(22px, 4vw, 34px) clamp(18px, 3vw, 28px);
    border-radius: calc(var(--imk-gallery-stage-radius) - 4px);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-shadow {
    width: clamp(140px, 28vw, 200px);
    height: clamp(22px, 4vw, 32px);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-shell {
    width: clamp(170px, 28vw, 240px);
    height: clamp(248px, 40vw, 352px);
    border-radius: clamp(28px, 4vw, 36px);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-device-finish,
body.imk-storefront .imk-pdp-gallery .imk-empty-device-glow {
    border-radius: clamp(22px, 3vw, 30px);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-preview-copy {
    max-width: min(100%, 340px);
}

body.imk-storefront .imk-pdp-gallery .imk-empty-preview-copy strong {
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    body.imk-storefront .imk-pdp-gallery {
        --imk-gallery-stage-height: clamp(340px, 52vw, 560px);
        --imk-gallery-thumb-size: clamp(96px, 15vw, 112px);
    }
}

@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-gallery {
        --imk-gallery-stage-height: clamp(270px, 82vw, 420px);
        --imk-gallery-stage-padding: clamp(14px, 4vw, 20px);
        --imk-gallery-stage-radius: 24px;
        --imk-gallery-thumb-size: clamp(80px, 20vw, 96px);
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container {
        flex-direction: column-reverse !important;
        gap: 12px !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container,
    body.imk-storefront .imk-pdp-gallery .product-slider-container .right,
    body.imk-storefront .imk-pdp-gallery .product-slider-container .left {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-nav {
        right: 12px;
        bottom: 12px;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-nav button,
    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider-nav button {
        width: 34px;
        height: 34px;
        border-radius: 13px;
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
        border-radius: 14px !important;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-device-shell {
        width: clamp(156px, 42vw, 210px);
        height: clamp(228px, 61vw, 310px);
    }
}

@media (max-width: 479.98px) {
    body.imk-storefront .imk-pdp-gallery {
        --imk-gallery-stage-height: clamp(248px, 86vw, 360px);
        --imk-gallery-thumb-size: clamp(70px, 22vw, 82px);
    }

    body.imk-storefront .imk-pdp-gallery .product-slider .item,
    body.imk-storefront .imk-pdp-gallery .item-empty-preview {
        padding: 14px !important;
    }

    body.imk-storefront .imk-pdp-gallery .imk-empty-preview-copy strong {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    body.imk-storefront .imk-pdp-page > .container,
    body.imk-storefront .imk-pdp-container {
        width: min(1380px, calc(100vw - 48px)) !important;
        max-width: min(1380px, calc(100vw - 48px)) !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body.imk-storefront .imk-pdp-breadcrumb {
        padding-bottom: 18px;
        margin-bottom: 34px;
    }

    body.imk-storefront .imk-pdp-overview {
        grid-template-columns: minmax(460px, 660px) minmax(0, 1fr);
        gap: clamp(32px, 3vw, 46px);
        margin-bottom: 56px;
    }

    body.imk-storefront .imk-pdp-gallery {
        --imk-gallery-stage-height: clamp(420px, 34vw, 580px);
        --imk-gallery-stage-padding: clamp(18px, 2vw, 24px);
        --imk-gallery-stage-radius: 28px;
        --imk-gallery-thumb-size: 120px;
        width: 100%;
        max-width: min(100%, 660px);
        top: 102px;
    }

    body.imk-storefront .imk-pdp-overview > .imk-pdp-gallery {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    body.imk-storefront .imk-pdp-details {
        min-width: 0;
    }

    body.imk-storefront .imk-pdp-purchase-flow {
        gap: 18px;
    }

    body.imk-storefront .imk-pdp-purchase-hero,
    body.imk-storefront .imk-pdp-configurator-card,
    body.imk-storefront .imk-pdp-checkout-card {
        margin: 0;
        padding: 28px 30px;
        border-radius: 30px;
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 26px 56px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255,255,255,0.04);
    }

    body.imk-storefront .imk-pdp-purchase-hero {
        background:
            radial-gradient(circle at top right, rgba(255, 54, 110, 0.16), transparent 34%),
            linear-gradient(180deg, rgba(18,24,38,0.98), rgba(8,11,18,0.98));
    }

    body.imk-storefront .imk-pdp-configurator-card {
        background:
            radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 30%),
            linear-gradient(180deg, rgba(13,19,33,0.98), rgba(7,11,19,0.98));
    }

    body.imk-storefront .imk-pdp-checkout-card {
        background:
            radial-gradient(circle at bottom right, rgba(227, 0, 34, 0.10), transparent 30%),
            linear-gradient(180deg, rgba(15,20,34,0.98), rgba(7,10,18,0.98));
    }

    body.imk-storefront .imk-pdp-title-area {
        padding-bottom: 22px;
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    body.imk-storefront .imk-pdp-details .product-title {
        font-family: "Noto Sans Georgian", "Montserrat", sans-serif !important;
        font-size: clamp(1.35rem, 1.7vw, 1.75rem) !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.01em !important;
        text-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-meta-row {
        gap: 14px 18px;
    }

    body.imk-storefront .imk-pdp-price-stock-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 20px 22px;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-stock {
        align-self: end;
        margin-bottom: 0;
    }

    body.imk-storefront .imk-pdp-section-head {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
    }

    body.imk-storefront .imk-pdp-section-head-inline {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
        margin-bottom: 16px;
    }

    body.imk-storefront .imk-pdp-section-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 92px;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.06);
        color: #F8FAFC;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
        flex-shrink: 0;
    }

    body.imk-storefront .imk-pdp-section-copy {
        min-width: 0;
        flex: 1 1 auto;
    }

    body.imk-storefront .imk-pdp-section-copy h2 {
        margin: 0 0 6px;
        color: #F8FAFC;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }

    body.imk-storefront .imk-pdp-section-copy p {
        margin: 0;
        color: #94A3B8;
        font-size: 13px;
        line-height: 1.5;
    }

    body.imk-storefront .imk-pdp-selection-summary {
        display: block;
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    body.imk-storefront .imk-pdp-selection-summary-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.imk-storefront .imk-pdp-selection-chip {
        min-width: 0;
        padding: 14px 16px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.08);
        background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    body.imk-storefront .imk-pdp-selection-chip-label {
        display: block;
        margin-bottom: 8px;
        color: #94A3B8;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.imk-storefront .imk-pdp-selection-chip-value {
        display: block;
        min-width: 0;
        color: #F8FAFC;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions {
        margin-bottom: 16px;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel {
        margin-bottom: 0;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .left .product-slider-content {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .right {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container .right .product-slider-content {
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        min-height: 0 !important;
        width: 100%;
        max-width: 100%;
        background:
            linear-gradient(145deg, rgba(255,255,255,0.985), rgba(236,241,248,0.98)) !important;
        border: 1px solid rgba(15, 23, 42, 0.08) !important;
        box-shadow: 0 26px 56px rgba(2, 6, 23, 0.16), inset 0 1px 0 rgba(255,255,255,0.72) !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container.imk-pdp-gallery-empty-state .right .product-slider-content {
        background:
            radial-gradient(circle at 24% 18%, rgba(255,255,255,0.14), transparent 24%),
            linear-gradient(180deg, rgba(18,27,42,0.98), rgba(4,8,15,0.99)) !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        box-shadow: 0 30px 64px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container.imk-pdp-gallery-empty-state .item-empty-preview {
        padding: 18px !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-slider-container.imk-pdp-gallery-empty-state .imk-pdp-empty-preview {
        border-radius: calc(var(--imk-gallery-stage-radius) - 6px);
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item .item-inner {
        width: var(--imk-gallery-thumb-size) !important;
        height: var(--imk-gallery-thumb-size) !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        padding: 8px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item.slick-current .item-inner {
        border-color: var(--imk-accent, #ff184f) !important;
        box-shadow: 0 8px 24px rgba(255, 24, 79, 0.3), 0 0 0 3px rgba(255, 24, 79, 0.2) !important;
        transform: scale(1.05);
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider .item:hover .item-inner {
        border-color: var(--imk-accent, #ff184f) !important;
        box-shadow: 0 4px 12px rgba(255, 24, 79, 0.15) !important;
    }

    body.imk-storefront .imk-pdp-gallery .product-thumbnails-slider-nav {
        justify-content: flex-start;
        margin-top: 14px;
    }

    body.imk-storefront .imk-pdp-gallery .img-product-slider {
        filter: drop-shadow(0 18px 30px rgba(15,23,42,0.12)) !important;
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-options,
    body.imk-storefront .imk-pdp-configurator-card .product-variation-checkbox {
        gap: 12px;
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-options-color {
        grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-options-chip,
    body.imk-storefront .imk-pdp-configurator-card .product-variation-checkbox {
        grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
    }

    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .custom-control-label.imk-variation-with-preview,
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .custom-control-label-image.imk-variation-media-option {
        justify-content: flex-start;
        padding: 10px 14px;
        gap: 12px;
        text-align: left;
    }

    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .custom-control-label-image.imk-variation-media-option {
        min-height: 88px;
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-option-preview,
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .custom-control-label-image.imk-variation-media-option .img-cnt {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        overflow: hidden;
        flex: 0 0 58px;
        background: rgba(255,255,255,0.9);
        border: 1px solid rgba(15,23,42,0.08);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-option-preview img,
    body.imk-storefront .imk-pdp-configurator-card .custom-control-variation .custom-control-label-image.imk-variation-media-option .img-cnt img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    body.imk-storefront .imk-pdp-configurator-card .variation-color-chip {
        gap: 10px;
    }

    body.imk-storefront .imk-pdp-configurator-card .label-variation-color.imk-variation-with-preview .variation-color-chip {
        justify-content: flex-start;
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-option-label,
    body.imk-storefront .imk-pdp-configurator-card .imk-variation-media-name {
        display: block;
        min-width: 0;
        color: inherit;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
        white-space: normal;
    }

    body.imk-storefront .imk-pdp-configurator-card .imk-variation-media-copy {
        min-width: 0;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1280px) {
    body.imk-storefront .imk-pdp-page > .container,
    body.imk-storefront .imk-pdp-container {
        width: min(1460px, calc(100vw - 64px)) !important;
        max-width: min(1460px, calc(100vw - 64px)) !important;
    }

    body.imk-storefront .imk-pdp-overview {
        grid-template-columns: minmax(500px, 660px) minmax(0, 1fr);
        gap: clamp(36px, 3.2vw, 52px);
    }

    body.imk-storefront .imk-pdp-gallery {
        --imk-gallery-stage-height: clamp(450px, 33vw, 620px);
        max-width: min(100%, 660px);
        --imk-gallery-thumb-size: clamp(102px, 7.6vw, 124px);
    }
}

@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-overview {
        align-items: stretch !important;
        gap: 12px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    body.imk-storefront .imk-pdp-overview > .imk-pdp-gallery,
    body.imk-storefront .imk-pdp-overview > .imk-pdp-details {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-details,
    body.imk-storefront .imk-pdp-details .product-content-details,
    body.imk-storefront .imk-pdp-details #response_product_details,
    body.imk-storefront .imk-pdp-details #form_add_cart,
    body.imk-storefront .imk-pdp-purchase-flow {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero,
    body.imk-storefront .imk-pdp-configurator-card,
    body.imk-storefront .imk-pdp-checkout-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        align-self: stretch;
        padding: 18px 16px !important;
        border-radius: 24px !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero > *,
    body.imk-storefront .imk-pdp-configurator-card > *,
    body.imk-storefront .imk-pdp-checkout-card > * {
        max-width: 100%;
    }

    body.imk-storefront .imk-pdp-title-area,
    body.imk-storefront .imk-pdp-price-stock-row,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-section-head,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-cta-stack,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel,
    body.imk-storefront .imk-pdp-configurator-card .product-variations,
    body.imk-storefront .imk-pdp-configurator-card .imk-pdp-gifts {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.imk-storefront .imk-pdp-title-area {
        margin-bottom: 12px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.imk-storefront .imk-pdp-details .product-title {
        max-width: 100%;
    }

    body.imk-storefront .imk-pdp-meta-row {
        gap: 10px 12px !important;
    }

    body.imk-storefront .imk-pdp-meta-row .dropdown {
        width: 100%;
        margin-left: 0 !important;
    }

    body.imk-storefront .imk-pdp-meta-row .dropdown .edit_front {
        width: 100%;
        justify-content: center;
    }

    body.imk-storefront .imk-pdp-price-stock-row {
        align-items: stretch !important;
        gap: 12px !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-area {
        padding: 16px !important;
        border-radius: 22px !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero #product_details_price_container {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-stock {
        align-self: flex-start !important;
        max-width: 100%;
    }

    body.imk-storefront .imk-pdp-section-head {
        width: 100%;
        align-items: flex-start;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-cta-stack,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions {
        gap: 10px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.has-inline-buy .number-spinner {
        flex: 0 0 132px !important;
        width: 132px !important;
        max-width: 132px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-main-buy,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-primary,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-secondary {
        min-width: 0;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-primary .btn-product-cart,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-mobile-secondary .btn,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-main-buy #buy_now_popup,
    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-main-buy .btn {
        width: 100% !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel {
        padding: 14px !important;
        border-radius: 20px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-fast-payments {
        gap: 10px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pay-label,
    body.imk-storefront .imk-pdp-checkout-card .imk-bank-card {
        min-width: 0 !important;
    }

    body.imk-storefront .imk-pdp-mobile-sticky-bar {
        left: 14px !important;
        right: 14px !important;
    }
}

@media (max-width: 479.98px) {
    body.imk-storefront .imk-pdp-overview {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    body.imk-storefront .imk-pdp-purchase-hero,
    body.imk-storefront .imk-pdp-configurator-card,
    body.imk-storefront .imk-pdp-checkout-card {
        padding: 16px 14px !important;
        border-radius: 22px !important;
    }

    body.imk-storefront .imk-pdp-section-head {
        flex-direction: column !important;
        gap: 10px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions {
        flex-wrap: wrap !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions.has-inline-buy .number-spinner {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: none !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-main-buy {
        flex: 1 1 calc(100% - 64px) !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-actions .btn-wishlist {
        flex: 0 0 54px !important;
        width: 54px !important;
        height: 54px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-pay-panel {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    body.imk-storefront .imk-pdp-checkout-card .imk-pdp-fast-payments {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-related-scroll .col-product {
        flex: 0 0 178px !important;
        width: 178px !important;
        scroll-snap-align: start;
    }

    body.imk-storefront .imk-pdp-related .imk-listing-product-card {
        padding: 11px !important;
        border-radius: 20px !important;
        background: linear-gradient(180deg, rgba(22,28,42,0.98), rgba(12,16,26,0.98)) !important;
        border: 1px solid rgba(255,255,255,0.09) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06) !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card {
        min-width: 0;
        gap: 8px;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card > a.aspect-square,
    body.imk-storefront .imk-pdp-related .imk-mobile-card > a[href] {
        aspect-ratio: 1 / 0.72 !important;
        max-height: 112px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        border-radius: 13px;
        background: rgba(255,255,255,0.035);
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card > a img {
        max-height: 94px !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-discount {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 24px;
        padding: 0 8px !important;
        border-radius: 7px !important;
        background: #ffd250 !important;
        color: #121620 !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: 0.01em;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-details {
        gap: 7px !important;
        min-width: 0;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-title,
    body.imk-storefront .imk-pdp-related .imk-mobile-card-title a {
        min-height: 32px !important;
        margin: 0 !important;
        color: #f8fafc !important;
        font-size: 11.5px !important;
        line-height: 1.28 !important;
        font-weight: 850 !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden !important;
        text-decoration: none;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-spec {
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
        padding: 6px 9px !important;
        border-radius: 10px !important;
        background: rgba(255,24,92,0.08) !important;
        border: 1px solid rgba(255,24,92,0.22) !important;
        color: #f8fafc !important;
        box-shadow: none !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-spec > span:first-child svg {
        width: 12px !important;
        height: 12px !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-spec > span:last-child {
        min-width: 0;
        color: #cbd5e1 !important;
        font-size: 10.5px !important;
        font-weight: 750 !important;
        line-height: 1.2 !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-price-row {
        display: flex;
        align-items: baseline;
        gap: 6px;
        min-width: 0;
        margin-top: auto !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-price-current {
        display: inline-flex;
        align-items: flex-end;
        gap: 3px;
        color: #ff3d6a !important;
        font-size: 14px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        white-space: nowrap;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-price-current span {
        color: inherit !important;
        font-size: 0.72em !important;
        line-height: 1 !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-price-original {
        color: #64748b !important;
        font-size: 10px !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        white-space: nowrap;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-price-original span {
        color: inherit !important;
        font-size: 1em !important;
    }

    body.imk-storefront .imk-pdp-related .imk-mobile-card-installment {
        display: block;
        width: 100%;
        margin-top: 1px !important;
        padding: 6px 4px !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #ffe066, #ffd250) !important;
        color: #0f1420 !important;
        font-size: 9.5px !important;
        font-weight: 900 !important;
        line-height: 1.15 !important;
        text-align: center !important;
        letter-spacing: 0.01em;
        box-shadow: 0 2px 8px rgba(255,210,80,0.22), inset 0 1px 0 rgba(255,255,255,0.36);
    }
}

/* =================================================================
   PREMIUM MOBILE-FIRST ENHANCEMENTS APPENDED
   ================================================================= */

body.imk-storefront .imk-pdp-purchase-hero .imk-pdp-price-row-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 6px !important;
}

body.imk-storefront .imk-pdp-stock.in-stock {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10B981 !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
}

body.imk-storefront .imk-pdp-stock.in-stock i {
    color: #10B981 !important;
}

@media (max-width: 767.98px) {
    /* Hide desktop banks grid on mobile viewports */
    body.imk-storefront .imk-pdp-banks {
        display: none !important;
    }
}

/* Redesigned Primary Specs capsule bar matching the photo perfectly */
body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    margin: 0 0 20px 0 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    gap: 0 !important;
}

body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item {
    flex: 1 1 0% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 10px !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-height: auto !important;
    width: auto !important;
    min-width: 0 !important;
}

body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* circular icon badge wrapper */
body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 24, 92, 0.1) !important;
    border: 1px solid rgba(255, 24, 92, 0.22) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #ff185c !important;
    fill: none !important;
}

/* copy text styling */
body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    min-width: 0 !important;
}

body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy h4 {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy p {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #9CA3AF !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 575.98px) {
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs {
        padding: 10px 8px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item {
        gap: 6px !important;
        padding: 0 4px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon {
        width: 32px !important;
        height: 32px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon svg {
        width: 15px !important;
        height: 15px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy h4 {
        font-size: 11px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy p {
        font-size: 9px !important;
    }
}


/* ── PREMIUM PDP LITTLE WISHLIST HEART BUTTON ────────────────── */
body.imk-storefront .imk-pdp-little-wishlist {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #9CA3AF !important;
    cursor: pointer !important;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}
body.imk-storefront .imk-pdp-little-wishlist:hover {
    color: #E30022 !important;
    border-color: rgba(227, 0, 34, 0.4) !important;
    background: rgba(227, 0, 34, 0.08) !important;
    transform: scale(1.08) !important;
}
body.imk-storefront .imk-pdp-little-wishlist.item-wishlist {
    color: #E30022 !important;
    border-color: rgba(227, 0, 34, 0.5) !important;
    background: rgba(227, 0, 34, 0.12) !important;
}
body.imk-storefront .imk-pdp-little-wishlist i {
    transition: transform 0.2s ease !important;
}
body.imk-storefront .imk-pdp-little-wishlist.item-wishlist i {
    color: #E30022 !important;
    animation: imkHeartBeat 0.3s ease !important;
}

@keyframes imkHeartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/* ── MOBILE SPECIFICATION CARDS RESIZING & COLLISION FIX ──────── */
@media (max-width: 767.98px) {
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0 !important;
        padding: 10px 8px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-specs::-webkit-scrollbar {
        display: none !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item {
        flex: 1 1 0% !important;
        min-width: 85px !important;
        max-width: 33.33% !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 0 4px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom: none !important;
        border-top: none !important;
        margin: 0 !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item:last-child {
        border-right: none !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .feat-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy {
        gap: 1px !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy h4 {
        font-size: 11px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    body.imk-storefront .imk-pdp-page .imk-pdp-primary-spec-item .imk-pdp-feature-copy p {
        font-size: 9px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

