/**
 * Packs Frontend Luxury & Responsive Styling for Décantation Aromatica
 * Brand Style: WoodMart & Aromatica dz (Gold #d4a65a, Deep Charcoal #111111, Pure White)
 * Enhanced: Hero images, premium animations, toast notifications, scroll reveal
 * Powered by CSS Container Queries for universal responsive sizing.
 */

:root {
    --gold-primary: #d4a65a;
    --gold-hover: #b8903e;
    --gold-light: #fdf8f0;
    --dark-primary: #111111;
    --dark-secondary: #1a1a1a;
    --text-primary: #0f172a;
    --text-muted: #64748b;
    --border-light: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 50px rgba(212, 166, 90, 0.12), 0 8px 20px rgba(0, 0, 0, 0.04);
    --radius-premium: 10px;
    --font-premium: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   CONTAINER GRID & WRAPPER
   ========================================================================== */
.decantation-packs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 30px auto;
}

.decantation-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1220px;
    margin: 30px auto;
}

/* Zero trace: when no packs exist */
.decantation-no-packs {
    display: none !important;
}

/* ==========================================================================
   THE MAIN PACK CARD (Container Query enabled)
   ========================================================================== */
.decantation-pack-card {
    container-type: inline-size;
    container-name: pack-card;
    font-family: var(--font-premium);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--gold-primary);
    border-radius: var(--radius-premium);
    padding: 35px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
}

/* Scroll fade-in: initial hidden state (applied by JS only, progressive enhancement) */
.decantation-pack-card.pack-animate {
    opacity: 0;
    transform: translateY(35px);
}

.decantation-pack-card.pack-animate.pack-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card with hero image: no top padding */
.decantation-pack-card.has-hero {
    padding-top: 0;
}

.decantation-pack-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-primary);
}

.decantation-pack-card.pack-animate:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   HERO IMAGE (Pack cover photo)
   ========================================================================== */
.pack-hero-image {
    position: relative;
    width: calc(100% + 70px);
    margin-left: -35px;
    margin-bottom: 25px;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: var(--radius-premium) var(--radius-premium) 0 0;
}

.has-hero .pack-hero-image {
    width: 100%;
    margin-left: 0;
}

.pack-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.decantation-pack-card:hover .pack-hero-image img {
    transform: scale(1.04);
}

.pack-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 17, 17, 0.5) 0%,
        rgba(17, 17, 17, 0.15) 40%,
        transparent 70%
    );
    pointer-events: none;
}

/* ==========================================================================
   SAVE BADGE (with percentage)
   ========================================================================== */
.pack-badge-save {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-primary);
    color: #ffffff !important;
    padding: 7px 16px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(212, 166, 90, 0.25);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Force white on all nested WooCommerce price elements */
.pack-badge-save,
.pack-badge-save * {
    color: #ffffff !important;
}

/* Badge positioned inside hero image */
.pack-hero-image .pack-badge-save {
    top: auto;
    right: auto;
    bottom: 15px;
    left: 15px;
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.save-percent {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0;
}

.save-sep {
    opacity: 0.4;
    font-weight: 300;
}

.pack-badge-save .save-text {
    opacity: 0.9;
}

.pack-badge-save .save-val {
    font-weight: 800;
}

/* ==========================================================================
   CENTERED HEADER
   ========================================================================== */
.pack-header-centered {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 60px;
}

.has-hero .pack-header-centered {
    padding: 0 35px;
}

.pack-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-primary);
    margin: 0 0 10px 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.pack-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

/* ==========================================================================
   COMPONENTS GRID
   ========================================================================== */
.pack-components-section {
    margin-bottom: 30px;
    background: var(--gold-light);
    border-radius: 8px;
    padding: 25px 20px;
    border: 1px solid rgba(212, 166, 90, 0.08);
}

.pack-components-sec-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-hover);
    border-bottom: 1px solid rgba(212, 166, 90, 0.12);
    padding-bottom: 12px;
    margin: 0 0 22px 0;
}

.pack-components-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.pack-component-card {
    flex: 0 1 calc(25% - 12px);
    min-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    text-decoration: none !important;
    color: inherit !important;
}

.pack-component-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(212, 166, 90, 0.1);
    transform: translateY(-3px);
}

.comp-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #ffffff;
    margin-bottom: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-card-img .dashicons {
    font-size: 24px;
    color: #cbd5e1;
    width: 24px;
    height: 24px;
}

.comp-card-qty {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--dark-primary);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    border: 1.5px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comp-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

/* 2-line product name with line-clamp */
.comp-card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 36px;
}

/* Bigger component tags */
.comp-card-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1.3;
}

.comp-card-tag.dec-tag {
    background-color: var(--gold-light);
    color: var(--gold-primary);
    border: 1px solid rgba(212, 166, 90, 0.2);
}

.comp-card-tag.full-tag {
    background-color: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

/* Brand styling */
.comp-card-brand {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -2px;
    text-transform: capitalize;
    display: block;
    text-align: center;
}

/* Inspired by styling */
.comp-card-inspired {
    font-size: 11px;
    line-height: 1.35;
    margin-top: 2px;
    text-align: center;
    color: var(--text-muted);
}

.comp-card-inspired .inspired-lbl {
    display: block;
    font-size: 9.5px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.comp-card-inspired .inspired-val {
    display: block;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Price wrapper and details */
.comp-card-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}

.comp-price-old {
    font-size: 11.5px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.comp-price-new {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ==========================================================================
   PRICING & BUY ACTIONS (Centered Footer)
   ========================================================================== */
.pack-footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
    margin-top: 5px;
}

.pack-pricing-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.pack-pricing-centered .price-old,
.pack-pricing-centered .price-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pack-pricing-centered .price-lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pack-pricing-centered .price-old .price-val {
    text-decoration: line-through;
    font-weight: 600;
    font-size: 16px;
    color: #94a3b8;
}

.pack-pricing-centered .price-new .price-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

/* ==========================================================================
   STOCK URGENCY INDICATOR
   ========================================================================== */
.pack-stock-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 6px 16px;
    border-radius: 20px;
    animation: urgency-fade 2s ease-in-out infinite;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    display: inline-block;
    flex-shrink: 0;
    animation: urgency-dot 1.5s ease-in-out infinite;
}

@keyframes urgency-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes urgency-fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* ==========================================================================
   CTA BUTTON (Bigger & with cart icon)
   ========================================================================== */
.pack-action-btn-wrap {
    width: 100%;
    max-width: 420px;
}

.btn-icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.decantation-add-pack-btn {
    background: var(--gold-primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--gold-primary) !important;
    padding: 17px 36px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(212, 166, 90, 0.2) !important;
    position: relative;
    overflow: hidden;
    width: 100% !important;
}

.decantation-add-pack-btn:hover {
    background: var(--dark-primary) !important;
    border-color: var(--dark-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.decantation-add-pack-btn:active {
    transform: translateY(0);
}

/* Success state */
.decantation-add-pack-btn.added {
    background: #059669 !important;
    border-color: #059669 !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25) !important;
}

.decantation-add-pack-btn.added .btn-icon {
    display: none;
}

.decantation-add-pack-btn.disabled,
.decantation-add-pack-btn:disabled {
    background: #e2e8f0 !important;
    border-color: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Loader */
.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: pack-spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -9px;
    margin-top: -9px;
}

.decantation-add-pack-btn.loading .btn-text,
.decantation-add-pack-btn.loading .btn-icon {
    visibility: hidden;
    opacity: 0;
}

.decantation-add-pack-btn.loading .btn-spinner {
    display: block;
}

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

/* ==========================================================================
   CAROUSEL / SLIDER LAYOUT STYLES
   ========================================================================== */
.decantation-packs-slider-container {
    position: relative;
    width: 100%;
    max-width: 1220px;
    margin: 30px auto 0 auto;
    box-sizing: border-box;
}

.decantation-packs-slider-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.decantation-packs-slider-track::-webkit-scrollbar {
    display: none;
}

.decantation-pack-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 5px 10px;
}

.decantation-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: transparent !important;
    border: none !important;
    color: var(--dark-primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none !important;
    z-index: 10;
    transition: all 0.2s ease;
    opacity: 0.6;
    padding: 0;
}

.decantation-slider-arrow:hover {
    background: transparent !important;
    border: none !important;
    color: var(--gold-primary) !important;
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.decantation-slider-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.2s ease;
}

.decantation-slider-arrow.decantation-prev-arrow {
    left: -35px;
}

.decantation-slider-arrow.decantation-next-arrow {
    right: -35px;
}

/* Dots tight against the pack card */
.decantation-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0;
}

.decantation-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.decantation-slider-dot:hover {
    background: #94a3b8;
}

.decantation-slider-dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.decantation-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.decantation-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    font-family: var(--font-premium);
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 380px;
}

.decantation-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.decantation-toast-success {
    background: #ffffff;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-left: 4px solid #059669;
}

.decantation-toast-success .toast-icon {
    color: #059669;
    flex-shrink: 0;
}

.decantation-toast-error {
    background: #ffffff;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
}

.decantation-toast-error .toast-icon {
    color: #dc2626;
    flex-shrink: 0;
}

.toast-message {
    line-height: 1.4;
}

/* ==========================================================================
   CONTAINER RESPONSIVENESS (Universal layout adaptability)
   ========================================================================== */
@container pack-card (max-width: 900px) {
    .pack-component-card {
        flex: 0 1 calc(33.333% - 11px);
    }
}

@container pack-card (max-width: 680px) {
    .decantation-pack-card {
        padding: 20px 8px;
    }

    .decantation-pack-card.has-hero {
        padding-top: 0;
    }

    .pack-hero-image {
        width: calc(100% + 16px);
        margin-left: -8px;
        aspect-ratio: 16 / 9;
    }

    .has-hero .pack-hero-image {
        width: 100%;
        margin-left: 0;
    }

    .pack-header-centered {
        padding: 0;
        margin-bottom: 20px;
    }

    .has-hero .pack-header-centered {
        padding: 0;
    }

    .pack-title {
        font-size: 22px;
    }

    .pack-badge-save {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 15px auto;
        width: fit-content;
        box-shadow: none;
    }

    .pack-hero-image .pack-badge-save {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 10px;
        left: 10px;
        margin: 0;
    }

    .pack-components-section {
        padding: 15px 6px;
    }

    .pack-components-grid {
        gap: 8px;
    }

    .pack-component-card {
        flex: 0 1 calc(50% - 4px);
        min-width: 0;
        padding: 12px 6px;
    }

    .comp-card-img {
        margin-bottom: 10px;
    }

    .comp-card-name {
        font-size: 12px;
        min-height: 34px;
    }

    .comp-card-tag {
        font-size: 8.5px;
        padding: 2px 7px;
    }

    .comp-card-brand {
        font-size: 10px;
    }

    .comp-card-inspired {
        font-size: 10px;
        margin-top: 1px;
    }

    .comp-card-inspired .inspired-lbl {
        font-size: 8.5px;
    }

    .comp-card-inspired .inspired-val {
        font-size: 10px;
    }

    .comp-price-old {
        font-size: 10.5px;
    }

    .comp-price-new {
        font-size: 12.5px;
    }

    .pack-pricing-centered {
        gap: 25px;
    }

    .pack-pricing-centered .price-new .price-val {
        font-size: 26px;
    }

    .decantation-add-pack-btn {
        padding: 15px 24px !important;
        font-size: 13px !important;
    }
}

@container pack-card (max-width: 250px) {
    .pack-component-card {
        flex: 0 1 100%;
        padding: 14px;
    }
}

/* Mobile viewport adjustments for Slider Arrows positioning */
@media (max-width: 1280px) {
    .decantation-slider-arrow.decantation-prev-arrow {
        left: 10px;
    }
    .decantation-slider-arrow.decantation-next-arrow {
        right: 10px;
    }
}

/* Fail-safe fallback for mobile devices (screens < 768px wide) */
@media (max-width: 767px) {
    .decantation-pack-slide {
        padding: 5px 4px !important;
    }

    .decantation-pack-card {
        padding: 20px 8px !important;
    }

    .decantation-pack-card.has-hero {
        padding-top: 0 !important;
    }

    .pack-hero-image {
        width: calc(100% + 16px) !important;
        margin-left: -8px !important;
        aspect-ratio: 16 / 9 !important;
    }

    .has-hero .pack-hero-image {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .pack-header-centered {
        padding: 0 !important;
        margin-bottom: 20px !important;
    }

    .pack-title {
        font-size: 22px !important;
    }

    .pack-badge-save {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin: 0 auto 15px auto !important;
        width: fit-content !important;
        box-shadow: none !important;
    }

    .pack-hero-image .pack-badge-save {
        position: absolute !important;
        top: auto !important;
        right: auto !important;
        bottom: 10px !important;
        left: 10px !important;
        margin: 0 !important;
        width: auto !important;
    }

    .pack-components-section {
        padding: 15px 6px !important;
    }

    .pack-components-grid {
        gap: 8px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .pack-component-card {
        flex: 0 1 calc(50% - 4px) !important;
        min-width: 0 !important;
        padding: 12px 6px !important;
    }

    .comp-card-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        margin-bottom: 10px !important;
    }

    .comp-card-name {
        font-size: 12px !important;
    }

    .comp-card-tag {
        font-size: 8.5px !important;
        padding: 2px 7px !important;
    }

    .comp-card-brand {
        font-size: 10px !important;
    }

    .comp-card-inspired {
        font-size: 10px !important;
        margin-top: 1px !important;
    }

    .comp-card-inspired .inspired-lbl {
        font-size: 8.5px !important;
    }

    .comp-card-inspired .inspired-val {
        font-size: 10px !important;
    }

    .comp-price-old {
        font-size: 10.5px !important;
    }

    .comp-price-new {
        font-size: 12.5px !important;
    }

    .pack-pricing-centered {
        gap: 25px !important;
    }

    .pack-pricing-centered .price-new .price-val {
        font-size: 26px !important;
    }

    .decantation-add-pack-btn {
        padding: 15px 24px !important;
        font-size: 13px !important;
    }

    /* Compact slider arrows on mobile */
    .decantation-slider-arrow {
        width: 30px !important;
        height: 40px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .decantation-slider-arrow svg {
        width: 22px !important;
        height: 22px !important;
    }

    .decantation-slider-arrow.decantation-prev-arrow {
        left: 4px !important;
    }

    .decantation-slider-arrow.decantation-next-arrow {
        right: 4px !important;
    }

    /* Toast on mobile: full width at bottom */
    .decantation-toast-container {
        left: 15px;
        right: 15px;
        bottom: 20px;
    }

    .decantation-toast {
        max-width: 100%;
    }
}
