@charset "UTF-8";

/**
 * Modern Cart Modal - Apple-Inspired Design
 * 
 * Purpose: Professional, animated cart modal with glassmorphism effects
 * Dependencies: variables.css, reset.css
 * 
 * Features:
 * - Apple-inspired glassmorphism backdrop
 * - Smooth slide-up animation (mobile)
 * - Scale animation (desktop)
 * - Responsive design (mobile-first)
 * - Professional UI/UX
 * 
 * @version 1.0.0
 * @date 2026-01-27
 */

/* ============================================================
   CART MODAL - Base Styles
   ============================================================ */

.nx-cart-modal {
    --modal-backdrop-blur: 20px;
    --modal-backdrop-opacity: 0.5;
    --modal-border-radius: 20px;
    --modal-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --modal-transition: 350ms cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1055 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Hide sidebars when modal is open - Prevent multiple sidebar display */
.nx-cart-modal.show ~ .sidebar,
.nx-cart-modal.show ~ * .sidebar,
body:has(.nx-cart-modal.show) .sidebar,
.nx-cart-modal.show .sidebar {
    display: none !important;
    visibility: hidden !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Ensure only one modal backdrop */
.nx-cart-modal .modal-backdrop {
    position: fixed !important;
    z-index: 1054 !important;
}

.nx-cart-modal .modal-backdrop.show {
    z-index: 1054 !important;
}

/* Ensure modal is on top of everything */
.nx-cart-modal.show {
    z-index: 1055 !important;
}

.nx-cart-modal.show .modal-dialog {
    z-index: 1055 !important;
    position: relative !important;
}

.nx-cart-modal .modal-backdrop {
    background: rgba(0, 0, 0, var(--modal-backdrop-opacity));
    backdrop-filter: blur(var(--modal-backdrop-blur));
    -webkit-backdrop-filter: blur(var(--modal-backdrop-blur));
    transition: opacity var(--modal-transition);
    z-index: 1054 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

@media (max-width: 575px) {
    .nx-cart-modal {
        --modal-backdrop-opacity: 0.6;
        --modal-backdrop-blur: 10px;
    }
    
    .nx-cart-modal .modal-backdrop {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.nx-cart-modal.show .modal-backdrop {
    opacity: 1;
}

/* ============================================================
   MODAL DIALOG - Responsive Container
   ============================================================ */

/* Cart Modal Dialog - Responsive & Centered */
#cartModal {
    z-index: 1055;
}

#cartModal .modal-dialog {
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    pointer-events: none;
    max-height: calc(100% - 2rem) !important;
    position: relative !important;
}

.nx-modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    max-height: calc(100% - 2rem);
    position: relative;
}

@media (max-width: 767px) {
    /* Override any conflicting styles from other CSS files */
    #cartModal {
        z-index: 1055 !important;
        padding: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    #cartModal .modal-dialog {
        margin: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: auto !important;
        margin-bottom: auto !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.75rem !important;
        max-height: calc(100vh - 1.5rem) !important;
        height: auto !important;
        width: calc(100% - 1.5rem) !important;
        max-width: calc(100% - 1.5rem) !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
    }
    
    #cartModal.show .modal-dialog {
        transform: translate(-50%, -50%) !important;
    }
    
    #cartModal .modal-content {
        max-height: calc(100vh - 1.5rem) !important;
        margin: 0 !important;
        width: 100% !important;
        transform: none !important;
    }
    
    .nx-modal-dialog {
        align-items: center;
        justify-content: center;
        padding: 0.75rem;
        max-height: calc(100% - 1.5rem);
        width: calc(100% - 1.5rem);
        max-width: calc(100% - 1.5rem);
    }
}

@media (min-width: 576px) {
    #cartModal .modal-dialog {
        align-items: center !important;
        padding: 1rem !important;
        height: auto !important;
        max-height: calc(100% - 2rem) !important;
        margin: 0 auto !important;
        width: auto !important;
    }
    
    .nx-modal-dialog {
        align-items: center;
        padding: 1rem;
        height: auto;
        max-height: calc(100% - 2rem);
    }
}

@media (min-width: 768px) {
    #cartModal .modal-dialog {
        max-width: min(720px, calc(100vw - 2rem)) !important;
    }
    .nx-modal-dialog {
        max-width: min(720px, calc(100vw - 2rem));
    }
}

@media (min-width: 992px) {
    #cartModal .modal-dialog {
        max-width: min(900px, calc(100vw - 2rem)) !important;
    }
    .nx-modal-dialog {
        max-width: min(900px, calc(100vw - 2rem));
    }
}

@media (min-width: 1200px) {
    #cartModal .modal-dialog {
        max-width: 960px !important;
    }
    .nx-modal-dialog {
        max-width: 960px;
    }
}

/* ============================================================
   MODAL CONTENT - Apple-Inspired Card
   ============================================================ */

.nx-modal-content {
    position: relative;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: var(--modal-border-radius) var(--modal-border-radius) 0 0;
    box-shadow: var(--modal-shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto;
    transform: translateY(100%);
    transition: transform var(--modal-transition);
    will-change: transform;
}

@media (max-width: 575px) {
    #cartModal .modal-content,
    .nx-modal-content {
        background: #ffffff;
        max-height: calc(100vh - 1.5rem) !important;
        border-radius: 20px !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 576px) {
    .nx-modal-content {
        border-radius: var(--modal-border-radius);
        max-height: 85vh;
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
}

.nx-cart-modal.show .nx-modal-content {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .nx-cart-modal.show .nx-modal-content {
        transform: scale(1) translateY(0) !important;
        opacity: 1 !important;
    }
}

@media (min-width: 576px) {
    .nx-cart-modal.show .nx-modal-content {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ============================================================
   MODAL HEADER - Clean & Minimal
   ============================================================ */

.nx-modal-header {
    position: relative;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-shrink: 0;
    z-index: 10;
}

@media (max-width: 575px) {
    .nx-modal-header {
        padding: 1.25rem 1.25rem 1rem;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 20;
    }
}

@media (min-width: 768px) {
    .nx-modal-header {
        padding: 2rem 2rem 1.5rem;
    }
}

.nx-modal-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nx-modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-primary, #0071e3);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .nx-modal-title {
        font-size: 1.5rem;
    }
}

.nx-modal-icon {
    width: 20px;
    height: 20px;
    color: var(--bs-primary, #0071e3);
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.nx-modal-close {
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: none;
    /* background: rgba(0, 0, 0, 0.04); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    color: #1d1d1f;
    flex-shrink: 0;
}

.nx-modal-close:hover,
.nx-modal-close:focus {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.1);
    color: #000;
}

.nx-modal-close:active {
    transform: scale(0.95);
}

.nx-modal-close svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* ============================================================
   MODAL BODY - Scrollable Content
   ============================================================ */

.nx-modal-body {
    position: relative;
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.nx-modal-body::-webkit-scrollbar {
    width: 6px;
}

.nx-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.nx-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.nx-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .nx-modal-body {
        padding: 2rem;
    }
}

/* ============================================================
   MODAL LOADER - Loading State
   ============================================================ */

.nx-modal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    min-height: 200px;
}

.nx-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 113, 227, 0.1);
    border-top-color: var(--bs-primary, #0071e3);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nx-loader-text {
    font-size: 0.875rem;
    color: #6e6e73;
    margin: 0;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE - MOBILE (max-width: 575px)
   ============================================================ */

@media (max-width: 575px) {
    #cartModal .modal-dialog {
        align-items: flex-end !important;
        justify-content: center !important;
        padding: 0 !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        height: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
    }
    #cartModal.show .modal-dialog {
        transform: none !important;
    }
    #cartModal .modal-content {
        max-height: 92vh !important;
        max-height: 92dvh !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .nx-modal-dialog {
        align-items: flex-end;
        padding: 0;
        max-height: 100vh;
        max-height: 100dvh;
    }
    
    .nx-modal-content {
        max-height: 92vh;
        max-height: 92dvh;
        border-radius: 24px 24px 0 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .nx-modal-header {
        padding: 1rem 1rem 0.875rem;
        padding-top: 1.25rem;
        padding-bottom: 0.875rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 20;
    }
    
    .nx-modal-title {
        font-size: 1.0625rem;
        font-weight: 600;
    }
    
    .nx-modal-body {
        padding: 1rem;
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        max-height: calc(95vh - 70px);
        max-height: calc(50dvh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nx-modal-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: rgba(0, 0, 0, 0.06);
    }
    
    .nx-modal-close:active {
        background: rgba(0, 0, 0, 0.12);
    }
    
    /* Mobile swipe indicator */
    .nx-modal-content::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 4px;
        background: rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        z-index: 30;
    }
}

/* Extra small devices – tighter layout */
@media (max-width: 380px) {
    .nx-modal-header {
        padding: 0.875rem 0.75rem 0.75rem;
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }
    .nx-modal-title {
        font-size: 1rem;
    }
    .nx-modal-body {
        padding: 0.75rem;
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }
}

/* ============================================================
   ANIMATIONS - Smooth Transitions
   ============================================================ */

@keyframes modalSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes modalScale {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.nx-cart-modal[aria-hidden="false"] {
    visibility: visible;
}

.nx-cart-modal[aria-hidden="true"] {
    visibility: hidden;
}

/* Focus trap - ensure focus stays within modal */
.nx-modal-content:focus-within {
    outline: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nx-modal-content,
    .nx-modal-backdrop,
    .nx-spinner,
    .nx-modal-icon {
        animation: none !important;
        transition: none !important;
    }
    
    .nx-cart-modal.show .nx-modal-content {
        transform: translateY(0) !important;
    }
    
    @media (min-width: 576px) {
        .nx-cart-modal.show .nx-modal-content {
            transform: scale(1) !important;
        }
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .nx-modal-content {
        border: 2px solid #000;
    }
    
    .nx-modal-header {
        border-bottom: 2px solid #000;
    }
}

/* ============================================================
   DARK MODE SUPPORT (Future)
   ============================================================ */

/* ============================================================
   QUANTITY INPUT GROUP - Layout Alignment
   ============================================================ */

.input-group.quantity.dif-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .input-group.quantity.dif-quantity {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {
    .input-group.quantity.dif-quantity {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

.input-group.quantity.dif-quantity .input-group-prepend,
.input-group.quantity.dif-quantity .input-group-append {
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group.quantity.dif-quantity .input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
}

.input-group.quantity.dif-quantity .qty-input {
    flex: 0 0 50px;
    min-width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 575px) {
    .input-group.quantity.dif-quantity {
        gap: 0.25rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .input-group.quantity.dif-quantity .qty-input {
        flex: 0 0 45px;
        min-width: 45px;
        font-size: 0.9375rem;
    }
}

/* ============================================================
   CART MODAL - Product options layout (same as product_details)
   ============================================================ */

.nx-modal-body .nx-modal-pdp.details-container {
    padding: 0;
    max-width: 100%;
}

.nx-modal-body .nx-modal-pdp .nx-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Modal gallery: all content inside .nx-pdp__media-section (main image + header + thumbs) so nothing escapes or overlaps */
.nx-modal-body .nx-modal-pdp .zoom-wrapper.nx-pdp__gallery {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.nx-modal-body .nx-modal-pdp .nx-pdp__media-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: visible;
    padding: 0;
    margin: 0;
}

.nx-modal-body .nx-modal-pdp .nx-pdp__media-section .nx-zoom-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section .nx-zoom-wrap #zoom_03 {
    width: 100%;
    height: auto;
    max-height: 320px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-hint {
    font-size: 0.75rem;
    color: #86868b;
}

/* In modal: hide "More photos" header, video row, video modal, and gallery thumbnails */
.nx-modal-body .nx-modal-pdp .nx-pdp__media-header,
.nx-modal-body .nx-modal-pdp .nx-pdp__video-row,
.nx-modal-body .nx-modal-pdp #videoModalSimple,
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery.nx-pdp__gallery-thumbs {
    display: none !important;
}

.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery.nx-pdp__gallery-thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    height: 66px;
    gap: 8px;
    padding: 4px 0;
    margin: 0.5rem 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery::-webkit-scrollbar {
    height: 6px;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .elevatezoom-gallery {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .elevatezoom-gallery:hover {
    border-color: rgba(0, 0, 0, 0.15);
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .elevatezoom-gallery.active {
    border: 2px solid #333;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .zoom_image_area_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    padding: 3px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .elevatezoom-gallery.active .zoom_image_area_image {
    border-color: #333;
}

/* ============================================================
   MODAL PRODUCT DETAILS (right side) – Apple theme + glass
   Small to large screen
   ============================================================ */

.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-col {
    position: relative;
}

.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner.desc-outer {
    --nx-glass-bg: rgba(255, 255, 255, 0.65);
    --nx-glass-border: rgba(255, 255, 255, 0.4);
    --nx-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
    padding: 1rem;
    padding-top: 0.5rem;
    border-radius: 16px;
    background: var(--nx-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--nx-glass-border);
    box-shadow: var(--nx-glass-shadow);
}

.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .produt-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #1d1d1f;
    margin-bottom: 0.75rem;
}

.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .product-model,
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .product-category {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #6e6e73;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .product-category a.hover-txt {
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.2s ease;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .product-category a.hover-txt:hover {
    color: #0071e3;
}

.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .thm-devider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.06) 0%, transparent 100%);
    border: none;
    margin: 0.75rem 0 1rem;
}

/* Price block – Apple-style emphasis */
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-price-row {
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    gap: 0.5rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-price-cash {
    font-size: 0.8125rem;
    color: #6e6e73;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-discount-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 149, 0, 0.15);
    color: #c93400;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-price-old {
    font-size: 0.875rem;
    color: #86868b;
}

/* Warranty – subtle glass pill */
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-warranty {
    font-size: 0.875rem;
    color: #6e6e73;
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-warranty-icon {
    color: #34c759;
}

/* Stock */
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner #pro_stock {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .pro-stock-in {
    color: #34c759;
    font-weight: 500;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .pro-stock-out {
    color: #ff3b30;
    font-weight: 500;
}

/* Variant box – frosted glass */
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-variant-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Quantity – glass pill */
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__qty-wrap .nx-pdp__qty.dif-quantity {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__qty-wrap .decrement-btn,
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__qty-wrap .increment-btn {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Action buttons – Apple-style rounded, clear hierarchy */
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__actions {
    margin-top: 1.5rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__actions-row--two-col .buy-now-btn,
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__actions-row--two-col .add-to-cart-btn {
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__actions-row--two-col .buy-now-btn:hover,
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__actions-row--two-col .add-to-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-pdp__actions-row--two-col .add-to-cart-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
    .nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner.desc-outer {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
        --nx-glass-bg: rgba(255, 255, 255, 0.72);
        --nx-glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .produt-title {
        font-size: 1.375rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner .nx-modal-price-current {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    .nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner.desc-outer {
        padding: 1.75rem 1.5rem;
        border-radius: 24px;
    }
}

.nx-modal-body .nx-modal-pdp .desc-outer {
    padding-top: 0;
}

.nx-modal-body .nx-modal-pdp .color-thumb.color-variant {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap {
    margin: 1.25rem 0;
}
/* Quantity: wide bar with distinct center box for number (better UI) */
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty.dif-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
    min-height: 52px;
    padding: 0 0.5rem;
    border: 1px solid #e5e5e7;
    border-radius: 14px;
    background: #f5f5f7;
    gap: 0.5rem;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .decrement-btn,
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .increment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #1d1d1f;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .decrement-btn:hover,
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .increment-btn:hover {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .decrement-btn:active,
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .increment-btn:active {
    transform: scale(0.96);
}
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .decrement-btn i,
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .increment-btn i {
    font-size: 1.125rem;
}
/* Child selector beats Bootstrap .input-group > .form-control (flex/width) — Firefox was shrinking + showing number UI */
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty.dif-quantity > input.nx-pdp__qty-input.qty-input.form-control {
    flex: 0 0 4rem;
    width: 4rem;
    min-width: 4rem;
    max-width: 5rem;
    height: 40px;
    text-align: center;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    background: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1d1d1f;
    box-sizing: border-box;
    overflow: visible;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty-input:focus {
    outline: none;
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.2);
}

/* In modal: keep action bar in flow so it does not cover Select Quantity (override global .bottom-action-bar fixed) */
.nx-modal-body .nx-modal-pdp .nx-pdp__actions.bottom-action-bar {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    box-shadow: none !important;
}

.nx-modal-body .nx-modal-pdp .nx-pdp__actions {
    margin-top: 1.5rem;
}
/* Shop Now & Add To Cart: clearer, touch-friendly buttons */
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn,
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn {
    flex: 1;
    min-width: 140px;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn:active,
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn:active {
    transform: scale(0.98);
}
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn i,
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn i {
    font-size: 1.25rem;
}

/* ----- SS2: Price row, Cash Price, discount badge, strikethrough ----- */
.nx-modal-body .nx-modal-pdp .nx-modal-price-row {
    gap: 0.5rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-price-current {
    color: #1d1d1f;
}
.nx-modal-body .nx-modal-pdp .nx-modal-price-cash {
    font-size: 0.8125rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-discount-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #fd7e14;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}
.nx-modal-body .nx-modal-pdp .nx-modal-price-old {
    font-size: 0.875rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-warranty {
    font-size: 0.875rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-warranty-icon {
    flex-shrink: 0;
    color: #fd7e14;
}

/* ----- SS2: Light grey rounded variant box ----- */
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box {
    background: #f0f0f2;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-group {
    margin-bottom: 0.75rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-group:last-of-type {
    margin-bottom: 0.5rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.35rem;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
/* Oval pills for Color / Size / RAM (SS2) */
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-option {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #d2d2d7;
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1d1d1f;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-option:hover {
    border-color: #86868b;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-option.active {
    border-color: #fd7e14;
    background: #fff5eb;
    color: #1d1d1f;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-option--swatch .nx-variant-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.35rem;
    vertical-align: middle;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-sku-row {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.8125rem;
    color: #1d1d1f;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-sku-label {
    font-weight: 500;
}
.nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-sku-value {
    font-weight: 600;
}

/* ----- SS1: Grid of variant cards (legacy list in modal) ----- */
.nx-modal-body .nx-modal-pdp .color-thumb.color-variant.nx-variant-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #e5e5e7;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-align: center;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li:hover {
    border-color: #d2d2d7;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li.active {
    background: #2dd4bf;
    border-color: #2dd4bf;
    color: #fff;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li .stock {
    display: none;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li img {
    width: 100%;
    max-width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 0.35rem;
    border-radius: 6px;
    background: #f5f5f7;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li .color-name {
    font-size: 0.6875rem;
    line-height: 1.2;
    word-break: break-word;
    display: block;
    background: transparent !important;
}
.nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid li.active .color-name {
    color: #fff;
}
.nx-modal-body .nx-modal-pdp .nx-variant-box .nx-variant-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ----- SS2: Shop Now (orange), Add to Cart (outline) ----- */
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn {
    background: #fd7e14 !important;
    border-color: #fd7e14 !important;
    color: #fff !important;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn:hover {
    background: #e96d00 !important;
    border-color: #e96d00 !important;
    color: #fff !important;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn {
    background: #fff !important;
    border: 1px solid #1d1d1f !important;
    color: #1d1d1f !important;
}
.nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn:hover {
    background: #f5f5f7 !important;
    border-color: #1d1d1f !important;
    color: #1d1d1f !important;
}

/* ============================================================
   PRODUCT MODAL (nx-modal-pdp) – Responsive / small device
   ============================================================ */

@media (max-width: 767px) {
    .nx-modal-body .nx-modal-pdp .details-container {
        padding-top: 0;
        padding-bottom: 0;
    }
    /* Force stacking: no overlap between gallery and info column */
    .nx-modal-body .nx-modal-pdp .row.mbl-m-0 {
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
    .nx-modal-body .nx-modal-pdp .row.mbl-m-0 > .nx-pdp__gallery-col,
    .nx-modal-body .nx-modal-pdp .row.mbl-m-0 > .col-12.col-md-7 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__gallery-col {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    /* Info column: padding so title/text don’t sit on edge and don’t overlap gallery */
    .nx-modal-body .nx-modal-pdp .row.mbl-m-0 > .col-12.col-md-7.order-2 {
        margin-top: 1rem;
    }
    .nx-modal-body .nx-modal-pdp .desc-outer {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.5rem;
    }
    .nx-modal-body .nx-modal-pdp .zoom-wrapper #zoom_03,
    .nx-modal-body .nx-modal-pdp .nx-zoom-wrap #zoom_03 {
        max-height: min(280px, 45vh);
        width: 100%;
    }
    .nx-modal-body .nx-modal-pdp .nx-zoom-wrap {
        border-radius: 10px;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__media-section {
        margin-top: 0;
        margin-bottom: 1rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery.nx-pdp__gallery-thumbs {
        height: 58px;
        gap: 6px;
        padding: 4px 0;
        margin: 0.5rem 0 0;
        max-width: 100%;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .elevatezoom-gallery {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    .nx-modal-body .nx-modal-pdp .produt-title {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }
    .nx-modal-body .nx-modal-pdp .product-model,
    .nx-modal-body .nx-modal-pdp .product-category {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-price-row {
        margin-bottom: 0.5rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-price-current {
        font-size: 1.125rem;
    }
    /* Extra padding so user can scroll to Select Quantity and buttons */
    .nx-modal-body:has(.nx-modal-pdp) {
        padding-bottom: 2.5rem;
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0));
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-pdp__info-inner.desc-outer {
        overflow: visible !important;
    }
    /* Ensure Select Quantity is visible and not cut off on small devices */
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap {
        display: block !important;
        visibility: visible !important;
        margin: 1rem 0 1.25rem !important;
        min-height: 90px !important;
        opacity: 1 !important;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty.dif-quantity,
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .input-group.quantity.dif-quantity {
        display: flex !important;
        visibility: visible !important;
        min-height: 48px !important;
        max-width: 100%;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty-input,
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .qty-input {
        min-height: 40px !important;
        visibility: visible !important;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col {
        gap: 0.5rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn,
    .nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn {
        min-height: 48px;
        min-width: 0;
        flex: 1 1 100%;
    }
    .nx-modal-body .nx-modal-pdp .color-thumb.nx-variant-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

@media (max-width: 575px) {
    .nx-modal-body:has(.nx-modal-pdp) {
        padding-bottom: 3rem;
        padding-bottom: max(3rem, env(safe-area-inset-bottom, 0));
    }
    .nx-modal-body .nx-modal-pdp .zoom-wrapper #zoom_03,
    .nx-modal-body .nx-modal-pdp .nx-zoom-wrap #zoom_03 {
        max-height: min(240px, 40vh);
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__media-section #gallery .elevatezoom-gallery {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap {
        min-height: 95px !important;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .nx-pdp__qty.dif-quantity {
        max-width: 100%;
        min-height: 48px;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .decrement-btn,
    .nx-modal-body .nx-modal-pdp .nx-pdp__qty-wrap .increment-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 380px) {
    .nx-modal-body .nx-modal-pdp .desc-outer {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .nx-modal-body .nx-modal-pdp .produt-title {
        font-size: 1rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-price-current {
        font-size: 1rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .buy-now-btn,
    .nx-modal-body .nx-modal-pdp .nx-pdp__actions-row--two-col .add-to-cart-btn {
        min-height: 44px;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    .nx-modal-body .nx-modal-pdp .nx-modal-variant-box .nx-variant-option {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    .nx-cart-modal {
        display: none !important;
    }
}
