/*
Theme Name: BookDayPass Theme
Theme URI: https://bookdaypass.com
Author: Antigravity
Author URI: https://bookdaypass.com
Description: Custom theme for BookDayPass marketplace. Airbnb-style design.
Version: 2.0.0
Text Domain: bdp-theme
*/

/* ==========================================================================
   1. Design Tokens & Variables
   ========================================================================== */
:root {
    /* Colors - Premium Hospitality */
    --bdp-color-primary: #E61E4D;
    /* Warm coral/rose */
    --bdp-color-primary-dark: #C2163D;
    --bdp-color-secondary: #D4A853;
    /* Golden sand */
    --bdp-color-bg: #FFFFFF;
    --bdp-color-surface: #F7F7F9;
    /* Off-white for cards/sections */
    --bdp-color-text: #222222;
    /* Deep slate, almost black */
    --bdp-color-muted: #717171;
    --bdp-color-border: rgba(0, 0, 0, 0.08);
    /* Soft border */
    --bdp-color-light: #F7F7F9;

    /* Semantic Colors */
    --bdp-color-success: #2E9E6B;
    --bdp-color-warning: #D4A853;
    --bdp-color-danger: #D33B3B;

    /* Typography */
    --bdp-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --bdp-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing & Layout */
    --bdp-container-width: 1120px;
    --bdp-header-height: 80px;

    /* Radius */
    --bdp-radius-sm: 6px;
    --bdp-radius-md: 10px;
    --bdp-radius-card: 12px;
    --bdp-radius-pill: 999px;

    /* Shadows - Natural, no colored shadows */
    --bdp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --bdp-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
    --bdp-shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
    --bdp-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --bdp-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--bdp-font-family);
    color: var(--bdp-color-text);
    background-color: var(--bdp-color-bg);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-top: 0;
    color: var(--bdp-color-text);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */
.bdp-container {
    max-width: var(--bdp-container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.bdp-section {
    padding: 80px 0;
}

.bdp-section--light {
    background-color: var(--bdp-color-light);
}

.bdp-flex {
    display: flex;
}

.bdp-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bdp-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bdp-grid {
    display: grid;
    gap: 24px;
}

.bdp-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bdp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bdp-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .bdp-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .bdp-grid-3,
    .bdp-grid-2 {
        grid-template-columns: 1fr;
    }

    .bdp-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   4. Mobile / Desktop Visibility Utilities (STRICT)
   ========================================================================== */

/* Hide by default (Mobile-first fallback) */
.bdp-desktop-only,
.bdp-desktop-flex,
.bdp-desktop-nav {
    display: none !important;
}

/* DESKTOP (769px and up) */
@media (min-width: 769px) {
    .bdp-desktop-only {
        display: block !important;
    }

    .bdp-desktop-flex,
    .bdp-nav {
        display: flex !important;
    }

    /* Force hide all mobile-specific elements on desktop */
    .bdp-mobile-only,
    .bdp-mobile-flex,
    .bdp-mobile-toggle,
    .bdp-mobile-nav-drawer,
    .bdp-nav-backdrop {
        display: none !important;
    }
}

/* MOBILE (768px and down) */
@media (max-width: 768px) {
    .bdp-mobile-only {
        display: block !important;
    }

    .bdp-mobile-flex,
    .bdp-mobile-toggle {
        display: flex !important;
    }

    /* Force hide all desktop-specific elements on mobile */
    .bdp-desktop-only,
    .bdp-desktop-flex,
    .bdp-desktop-nav,
    .bdp-nav {
        display: none !important;
    }
}

/* ==========================================================================
   5. Components
   ========================================================================== */

/* Buttons */
.bdp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: var(--bdp-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 16px;
    text-align: center;
    line-height: 1;
}

.bdp-button-primary {
    background-color: var(--bdp-color-primary);
    color: white !important;
}

.bdp-button-primary:hover {
    background-color: var(--bdp-color-primary-dark);
}

.bdp-button-ghost {
    background-color: transparent;
    color: var(--bdp-color-text);
}

.bdp-button-ghost:hover {
    background-color: var(--bdp-color-surface);
}

.bdp-button-outline {
    background-color: transparent;
    border: 1px solid var(--bdp-color-border);
    color: var(--bdp-color-text);
}

.bdp-button-outline:hover {
    border-color: var(--bdp-color-text);
}

.bdp-button-sm {
    padding: 10px 16px;
    font-size: 14px;
}

/* Badges */
.bdp-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--bdp-radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bdp-color-surface);
    border: 1px solid var(--bdp-color-border);
}

.bdp-badge--primary {
    background-color: var(--bdp-color-primary);
    color: white;
    border-color: var(--bdp-color-primary);
}

/* Cards */
.bdp-card {
    background: white;
    border-radius: var(--bdp-radius-card);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--bdp-color-border);
}

.bdp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bdp-shadow-md);
}

.bdp-card__image {
    position: relative;
    aspect-ratio: 4/3;
    background-color: var(--bdp-color-surface);
    overflow: hidden;
}

.bdp-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bdp-card:hover .bdp-card__image img {
    transform: scale(1.05);
    /* Zoom inner image on hover */
}

.bdp-card__content {
    padding: 16px;
}

.bdp-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bdp-card__subtitle {
    font-size: 14px;
    color: var(--bdp-color-muted);
    margin-bottom: 8px;
}

.bdp-card__price {
    font-weight: 600;
    color: var(--bdp-color-text);
    margin-top: 8px;
}

/* Hero */
.bdp-hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    color: var(--bdp-color-text);
    overflow: hidden;
}

.bdp-hero--primary {
    background-color: var(--bdp-color-surface);
}

.bdp-hero__title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.bdp-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--bdp-color-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .bdp-hero {
        padding: 60px 0 40px;
    }

    .bdp-hero__title {
        font-size: 32px;
    }

    .bdp-hero__subtitle {
        font-size: 16px;
    }
}

/* Search Bar */
.bdp-search {
    background: white;
    padding: 8px;
    border-radius: var(--bdp-radius-pill);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--bdp-shadow-md);
    border: 1px solid var(--bdp-color-border);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.bdp-search__group {
    flex: 1;
    padding: 8px 24px;
    text-align: left;
    position: relative;
}

.bdp-search__group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 1px;
    background-color: var(--bdp-color-border);
}

.bdp-search__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bdp-color-text);
    margin-bottom: 2px;
}

.bdp-search__input {
    width: 100%;
    border: none;
    font-size: 16px;
    color: var(--bdp-color-muted);
    background: transparent;
    padding: 0;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.bdp-search__button {
    background-color: var(--bdp-color-primary);
    color: white;
    border: none;
    border-radius: var(--bdp-radius-pill);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bdp-search__button:hover {
    background-color: var(--bdp-color-primary-dark);
}

@media (max-width: 768px) {
    .bdp-search {
        flex-direction: column;
        border-radius: var(--bdp-radius-card);
        padding: 16px;
        gap: 0;
        box-shadow: var(--bdp-shadow-sm);
    }

    .bdp-search__group {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--bdp-color-border);
    }

    .bdp-search__group:not(:last-child)::after {
        display: none;
    }

    .bdp-search__button {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}

/* ==========================================================================
   6. Header specific
   ========================================================================== */
.bdp-header {
    background-color: var(--bdp-color-bg);
    border-bottom: 1px solid var(--bdp-color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
    height: var(--bdp-header-height);
    display: flex;
    align-items: center;
}

.bdp-header.is-scrolled {
    box-shadow: var(--bdp-shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bdp-header__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bdp-header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bdp-header__logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--bdp-color-primary);
    letter-spacing: -0.04em;
    margin-left: 8px;
}

/* Desktop Nav */
.bdp-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.bdp-nav a {
    font-weight: 500;
    color: var(--bdp-color-text);
    font-size: 15px;
}

.bdp-nav a:hover {
    color: var(--bdp-color-muted);
}

.bdp-nav .bdp-button {
    color: white !important;
}

.bdp-nav .bdp-button:hover {
    color: white !important;
}

/* Mobile Toggle */
.bdp-mobile-toggle {
    background: transparent;
    border: 1px solid var(--bdp-color-border);
    border-radius: var(--bdp-radius-pill);
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bdp-color-text);
    transition: box-shadow 0.2s ease;
}

.bdp-mobile-toggle:hover {
    box-shadow: var(--bdp-shadow-sm);
}

/* Mobile Nav Drawer */
.bdp-mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--bdp-color-bg);
    z-index: 2000;
    padding: 24px;
    box-shadow: var(--bdp-shadow-lg);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.bdp-mobile-nav-drawer.is-open {
    right: 0;
}

.bdp-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bdp-color-border);
}

.bdp-mobile-nav-close {
    background: var(--bdp-color-surface);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bdp-mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bdp-mobile-nav-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--bdp-color-text);
    text-decoration: none;
}

/* Drawer Backdrop */
.bdp-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.bdp-nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

body.bdp-no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   7. Footer specific
   ========================================================================== */
.bdp-footer {
    background-color: var(--bdp-color-surface);
    border-top: 1px solid var(--bdp-color-border);
    padding: 0;
}

.bdp-footer__trust-bar {
    border-bottom: 1px solid var(--bdp-color-border);
    padding: 24px 0;
}

.bdp-footer__trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bdp-footer__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bdp-color-text);
}

.bdp-footer__trust-item svg {
    color: var(--bdp-color-primary);
}

.bdp-footer__main {
    padding: 64px 0;
}

.bdp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.bdp-footer__col-brand {
    max-width: 300px;
}

.bdp-footer__desc {
    color: var(--bdp-color-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 24px;
}

.bdp-social-links {
    display: flex;
    gap: 16px;
}

.bdp-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--bdp-color-text);
    border: 1px solid var(--bdp-color-border);
    transition: all 0.2s ease;
}

.bdp-social-links a:hover {
    color: var(--bdp-color-primary);
    border-color: var(--bdp-color-primary);
    transform: translateY(-2px);
}

.bdp-footer__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--bdp-color-text);
    margin-bottom: 20px;
}

.bdp-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bdp-footer__list a {
    color: var(--bdp-color-muted);
    font-size: 14px;
}

.bdp-footer__list a:hover {
    color: var(--bdp-color-text);
    text-decoration: underline;
}

.bdp-footer__bottom {
    border-top: 1px solid var(--bdp-color-border);
    padding: 24px 0;
}

.bdp-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.bdp-copyright {
    color: var(--bdp-color-muted);
    font-size: 14px;
}

.bdp-payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bdp-payment-icons svg {
    height: 24px;
    width: auto;
    color: var(--bdp-color-muted);
}

@media (max-width: 768px) {
    .bdp-footer__trust-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .bdp-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bdp-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   8. Single Venue specific
   ========================================================================== */
.bdp-venue-layout {
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 80px;
}

@media (max-width: 1024px) {
    .bdp-venue-layout {
        grid-template-columns: 60% 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .bdp-venue-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.bdp-booking-widget {
    position: sticky;
    top: calc(var(--bdp-header-height) + 24px);
    background: white;
    border: 1px solid var(--bdp-color-border);
    padding: 24px;
    border-radius: var(--bdp-radius-card);
    box-shadow: var(--bdp-shadow-lg);
}

.bdp-sticky-reserve {
    display: none;
}

@media (max-width: 768px) {
    .bdp-sticky-reserve {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--bdp-color-border);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        z-index: 900;
    }

    .bdp-sticky-reserve .bdp-price {
        font-weight: 700;
        font-size: 16px;
        color: var(--bdp-color-text);
    }

    .bdp-sticky-reserve .bdp-cta {
        margin: 0;
        border-radius: var(--bdp-radius-md);
        padding: 12px 24px;
        background-color: var(--bdp-color-primary);
        color: white;
        text-decoration: none;
        font-weight: 600;
        border: none;
    }
}

.bdp-accordion {
    border-bottom: 1px solid var(--bdp-color-border);
}

.bdp-accordion-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
}

.bdp-accordion-summary::-webkit-details-marker {
    display: none;
    /* Hide default triangle in Safari */
}

.bdp-accordion-icon {
    transition: transform 0.2s ease;
    color: var(--bdp-color-text);
}

.bdp-accordion[open] .bdp-accordion-icon {
    transform: rotate(180deg);
}

.bdp-accordion-content {
    padding-bottom: 24px;
    color: var(--bdp-color-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   9. Modals / Bottom Sheet
   ========================================================================== */
.bdp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.bdp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.bdp-modal-content {
    position: relative;
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: var(--bdp-radius-card);
    padding: 24px;
    box-shadow: var(--bdp-shadow-lg);
    z-index: 10000;
}

.bdp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bdp-color-border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.bdp-modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.bdp-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: var(--bdp-color-text);
}

.bdp-form-group {
    margin-bottom: 20px;
}

.bdp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.bdp-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bdp-color-border);
    border-radius: var(--bdp-radius-sm);
    font-family: inherit;
    font-size: 16px;
    /* Prevents iOS zoom */
}

.bdp-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bdp-color-border);
}

.bdp-qty-row:last-child {
    border-bottom: none;
}

.bdp-qty-label {
    display: flex;
    flex-direction: column;
}

.bdp-qty-label span {
    font-weight: 600;
    font-size: 16px;
}

.bdp-qty-label small {
    color: var(--bdp-color-muted);
}

.bdp-qty-controls .bdp-input {
    width: 80px;
    text-align: center;
}

.bdp-precart-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--bdp-color-border);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .bdp-modal {
        align-items: flex-end;
        /* Push to bottom */
    }

    .bdp-modal-content {
        border-radius: var(--bdp-radius-card) var(--bdp-radius-card) 0 0;
        max-width: 100%;
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }
}

/* ==========================================================================
   10. Cart / Checkout Mobile Polish
   ========================================================================== */
.bdp-sticky-checkout {
    display: none;
}

@media (max-width: 768px) {
    .bdp-sticky-checkout {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--bdp-color-border);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        z-index: 900;
    }

    .bdp-checkout-info {
        display: flex;
        flex-direction: column;
    }

    .bdp-checkout-label {
        font-size: 13px;
        color: var(--bdp-color-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .bdp-checkout-total {
        font-weight: 800;
        font-size: 18px;
        color: var(--bdp-color-text);
    }

    .bdp-sticky-checkout .bdp-cta {
        margin: 0;
        border-radius: var(--bdp-radius-md);
        padding: 14px 28px;
        background-color: var(--bdp-color-primary);
        color: white;
        text-decoration: none;
        font-weight: 600;
        border: none;
        font-size: 16px;
    }

    /* Cart Quantity Mobile Tap Targets */
    .bdp-mobile-tap {
        min-height: 44px;
        font-size: 16px;
    }

    /* Hide WooCommerce default cart totals collateral on mobile to avoid duplication */
    .woocommerce-cart .cart-collaterals {
        display: none !important;
    }
}