/* ═══════════════════════════════════════════════════════════════════
   Trip2Where — WooCommerce Custom Branding
   "Golden Hour Travel" — warm, premium, adventure-ready

   Sections:
   0. WC CSS Variables
   1. Global WC Overrides (TaskHive parent defeat)
   2. Archive / Shop Page
   3. Single Product Page
   4. Cart Page
   5. Checkout Page
   6. Parent Theme Specific Overrides
   7. Responsive (1024 → 768 → 640)
   ═══════════════════════════════════════════════════════════════════ */


/* ─── Section 0: WC CSS Variables ─── */

:root {
    --t2w-wc-bg: #F8F6F0;
    --t2w-wc-card-bg: #fff;
    --t2w-wc-card-radius: 16px;
    --t2w-wc-input-radius: 12px;
    --t2w-wc-btn-radius: 12px;
    --t2w-wc-btn-bg: var(--color-primary);
    --t2w-wc-btn-hover: #E5A400;
    --t2w-wc-btn-text: #fff;
    --t2w-wc-text: #111827;
    --t2w-wc-text-muted: #6b7280;
    --t2w-wc-text-light: #9ca3af;
    --t2w-wc-border: #f3f4f6;
    --t2w-wc-border-hover: #e5e7eb;
    --t2w-wc-focus-ring: 0 0 0 3px rgba(255, 183, 0, 0.15);
    --t2w-wc-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --t2w-wc-shadow-elevated: 0 8px 30px rgba(0, 0, 0, 0.08);
    --t2w-wc-success: #10B981;
    --t2w-wc-danger: #EF4444;
    --t2w-wc-warning: #F59E0B;
    --t2w-wc-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─── Section 1: Global WC Overrides ─── */

/* Page background */
body.woocommerce-page,
body.woocommerce-page #main,
body.woocommerce-page .site-content {
    background-color: var(--t2w-wc-bg);
}

/* Onsale badge: blue → golden (TaskHive uses .onsale directly) */
html body span.onsale,
html body .woocommerce span.onsale,
html body .woocommerce-LoopProduct-link span.onsale,
html body .product span.onsale {
    background: var(--t2w-wc-btn-bg);
    background-color: var(--t2w-wc-btn-bg);
    color: var(--t2w-wc-text);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    min-height: auto;
    min-width: auto;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 2px 8px rgba(255, 183, 0, 0.25);
}

/* All WC buttons → golden flat (broad selectors for TaskHive override) */
html body .woocommerce a.button,
html body .woocommerce button.button,
html body .woocommerce input.button,
html body .woocommerce #respond input#submit,
html body a.button.add_to_cart_button,
html body a.button.product_type_simple,
html body .woocommerce-page a.button {
    background: var(--t2w-wc-btn-bg);
    background-color: var(--t2w-wc-btn-bg);
    background-image: none;
    color: var(--t2w-wc-btn-text);
    border: none;
    border-radius: var(--t2w-wc-btn-radius);
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    text-shadow: none;
    box-shadow: none;
    transition: all var(--t2w-wc-transition);
    cursor: pointer;
    line-height: 1.4;
}

html body .woocommerce a.button:hover,
html body .woocommerce button.button:hover,
html body .woocommerce input.button:hover,
html body a.button.add_to_cart_button:hover,
html body .woocommerce-page a.button:hover {
    background: var(--t2w-wc-btn-hover);
    background-color: var(--t2w-wc-btn-hover);
    background-image: none;
    color: var(--t2w-wc-btn-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 183, 0, 0.3);
}

/* Alt buttons (checkout, etc.) */
body .woocommerce button.button.alt,
body .woocommerce a.button.alt,
body .woocommerce input.button.alt {
    background: var(--t2w-wc-btn-bg);
    background-image: none;
    color: var(--t2w-wc-btn-text);
    border: none;
    text-shadow: none;
}

body .woocommerce button.button.alt:hover,
body .woocommerce a.button.alt:hover {
    background: var(--t2w-wc-btn-hover);
    background-image: none;
}

/* Disabled buttons */
body .woocommerce button.button:disabled,
body .woocommerce button.button.alt:disabled {
    background: #e5e7eb;
    color: var(--t2w-wc-text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* Product grid items */
body .woocommerce ul.products li.product {
    border-radius: var(--t2w-wc-card-radius);
    overflow: hidden;
    box-shadow: var(--t2w-wc-shadow-card);
    transition: all var(--t2w-wc-transition);
    background: var(--t2w-wc-card-bg);
    border: 1px solid var(--t2w-wc-border);
    padding: 0;
    margin-bottom: 24px;
}

body .woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--t2w-wc-shadow-elevated);
}

body .woocommerce ul.products li.product a img {
    border-radius: var(--t2w-wc-card-radius) var(--t2w-wc-card-radius) 0 0;
    margin: 0;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--t2w-wc-text);
    padding: 12px 16px 4px;
}

body .woocommerce ul.products li.product .price {
    color: var(--t2w-wc-text);
    font-weight: 800;
    font-size: 16px;
    padding: 0 16px 6px;
}

body .woocommerce ul.products li.product .price del {
    color: var(--t2w-wc-text-light);
    font-weight: 400;
    font-size: 13px;
}

body .woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 800;
    color: var(--t2w-wc-text);
}

body .woocommerce ul.products li.product .button {
    margin: 8px 16px 16px;
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
}

/* Form inputs */
body .woocommerce form .form-row input.input-text,
body .woocommerce form .form-row textarea,
body .woocommerce form .form-row select {
    border: 1px solid var(--t2w-wc-border-hover);
    border-radius: var(--t2w-wc-input-radius);
    padding: 11px 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: var(--t2w-wc-text);
    transition: all var(--t2w-wc-transition);
    background: var(--t2w-wc-card-bg);
}

body .woocommerce form .form-row input.input-text:focus,
body .woocommerce form .form-row textarea:focus,
body .woocommerce form .form-row select:focus {
    border-color: var(--t2w-wc-btn-bg);
    box-shadow: var(--t2w-wc-focus-ring);
    outline: none;
}

/* Notices & messages */
body .woocommerce .woocommerce-message,
body .woocommerce .woocommerce-info,
body .woocommerce .woocommerce-error {
    border-radius: var(--t2w-wc-input-radius);
    border-top: 3px solid var(--t2w-wc-btn-bg);
    background: var(--t2w-wc-card-bg);
    font-family: 'Noto Sans KR', sans-serif;
    padding: 14px 20px;
}

body .woocommerce .woocommerce-message::before {
    color: var(--t2w-wc-success);
}

body .woocommerce .woocommerce-error {
    border-top-color: var(--t2w-wc-danger);
}

/* Star rating */
body .woocommerce .star-rating span::before {
    color: var(--t2w-wc-btn-bg);
}

/* Quantity input */
body .woocommerce .quantity .qty {
    border-radius: var(--t2w-wc-input-radius);
    border: 1px solid var(--t2w-wc-border-hover);
    padding: 8px 12px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    width: 70px;
}

body .woocommerce .quantity .qty:focus {
    border-color: var(--t2w-wc-btn-bg);
    box-shadow: var(--t2w-wc-focus-ring);
    outline: none;
}


/* ─── Section 2: Archive / Shop Page ─── */

.t2w-archive { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }

.t2w-archive__breadcrumb { font-size: 13px; color: var(--t2w-wc-text-muted); padding: 12px 0; }
.t2w-archive__breadcrumb a { color: var(--t2w-wc-text-muted); text-decoration: none; }
.t2w-archive__breadcrumb a:hover { color: var(--t2w-wc-btn-bg); }
.t2w-archive__breadcrumb span { margin: 0 6px; }
.t2w-archive__breadcrumb .current { color: var(--t2w-wc-text); font-weight: 600; }

.t2w-archive__title { font-size: 28px; font-weight: 800; margin: 8px 0 4px; color: var(--t2w-wc-text); }
.t2w-archive__count { font-size: 14px; color: var(--t2w-wc-text-light); margin-bottom: 20px; }

.t2w-archive__filters { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.t2w-archive__kind-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.t2w-archive__kind-chips::-webkit-scrollbar { display: none; }
.t2w-archive__chip {
    padding: 8px 18px; border-radius: 99px; border: 1px solid var(--t2w-wc-border-hover);
    background: var(--t2w-wc-card-bg); font-size: 13px; font-weight: 600; text-decoration: none;
    color: var(--t2w-wc-text); white-space: nowrap; transition: all var(--t2w-wc-transition);
}
.t2w-archive__chip.active { background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text); border-color: transparent; }
.t2w-archive__chip:hover { border-color: var(--t2w-wc-btn-bg); }
.t2w-archive__select {
    padding: 8px 12px; border: 1px solid var(--t2w-wc-border-hover); border-radius: 10px;
    font-size: 13px; background: var(--t2w-wc-card-bg); cursor: pointer; font-family: 'Noto Sans KR', sans-serif;
}

.t2w-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.t2w-archive__card {
    background: var(--t2w-wc-card-bg); border-radius: var(--t2w-wc-card-radius); overflow: hidden;
    text-decoration: none; color: inherit; transition: all var(--t2w-wc-transition);
    box-shadow: var(--t2w-wc-shadow-card); border: 1px solid var(--t2w-wc-border);
}
.t2w-archive__card:hover { transform: translateY(-4px); box-shadow: var(--t2w-wc-shadow-elevated); }
.t2w-archive__card-img-wrap { position: relative; height: 200px; overflow: hidden; }
.t2w-archive__card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.t2w-archive__card:hover .t2w-archive__card-img { transform: scale(1.04); }
.t2w-archive__card-placeholder { width: 100%; height: 100%; background: #f3f4f6; display: flex; align-items: center; justify-content: center; color: #d1d5db; }
.t2w-archive__card-kind {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0, 0, 0, 0.6); color: #fff; padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 600; backdrop-filter: blur(4px);
}
.t2w-archive__card-badge {
    position: absolute; top: 12px; right: 48px;
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-text); padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 700; box-shadow: 0 2px 8px rgba(255, 183, 0, 0.25);
}
.t2w-archive__card-wish {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: rgba(255, 255, 255, 0.9); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all var(--t2w-wc-transition);
}
.t2w-archive__card-wish:hover { background: #fff; transform: scale(1.1); }
.t2w-archive__card-wish .material-symbols-outlined { font-size: 18px; color: var(--t2w-wc-text-light); }
.t2w-archive__card-body { padding: 14px 16px 18px; }
.t2w-archive__card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; color: var(--t2w-wc-text); }
.t2w-archive__card-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t2w-wc-text-muted); margin-bottom: 10px; }
.t2w-archive__card-rating { color: var(--t2w-wc-btn-bg); font-weight: 700; }
.t2w-archive__card-dur { display: flex; align-items: center; gap: 3px; }
.t2w-archive__card-price { display: flex; align-items: baseline; gap: 6px; }
.t2w-archive__card-regular { font-size: 13px; color: var(--t2w-wc-text-light); text-decoration: line-through; }
.t2w-archive__card-sale { font-size: 18px; font-weight: 800; color: var(--t2w-wc-text); }
.t2w-archive__card-per { font-size: 12px; color: var(--t2w-wc-text-light); }

.t2w-archive__empty { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--t2w-wc-text-light); }
.t2w-archive__empty .material-symbols-outlined { font-size: 48px; color: #e5e7eb; display: block; margin-bottom: 8px; }
.t2w-archive__empty h3 { color: var(--t2w-wc-text); margin-bottom: 4px; }

.t2w-archive__pagination { text-align: center; margin-top: 32px; }
.t2w-archive__pagination .nav-links a,
.t2w-archive__pagination .nav-links span {
    display: inline-block; padding: 8px 14px; border-radius: 8px; margin: 0 2px;
    font-size: 14px; font-weight: 600;
}
.t2w-archive__pagination .nav-links .current { background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text); }
.t2w-archive__pagination .nav-links a { background: var(--t2w-wc-card-bg); border: 1px solid var(--t2w-wc-border-hover); color: #374151; text-decoration: none; }
.t2w-archive__pagination .nav-links a:hover { border-color: var(--t2w-wc-btn-bg); }


/* ─── Section 3: Single Product Page ─── */

body.single-product .site-container { overflow: visible; }
.t2w-product { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }

/* Topbar: breadcrumb + actions */
.t2w-product__topbar { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.t2w-product__breadcrumb { font-size: 12px; color: var(--t2w-wc-text-muted); letter-spacing: .01em; }
.t2w-product__actions { display: flex; gap: 8px; }
.t2w-product__action-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px; border-radius: 99px; border: 1px solid var(--t2w-wc-border-hover);
    background: var(--t2w-wc-card-bg); font-size: 13px; font-weight: 600;
    color: var(--t2w-wc-text-muted); cursor: pointer; font-family: 'Noto Sans KR', sans-serif;
    transition: all .2s;
}
.t2w-product__action-btn:hover { border-color: var(--t2w-wc-btn-bg); color: var(--t2w-wc-text); }
.t2w-product__action-btn .material-symbols-outlined { font-size: 16px; }
.t2w-product__breadcrumb a { color: var(--t2w-wc-text-muted); text-decoration: none; }
.t2w-product__breadcrumb a:hover { color: var(--t2w-wc-btn-bg); }
.t2w-product__breadcrumb span { margin: 0 6px; }
.t2w-product__breadcrumb .current { color: var(--t2w-wc-text); font-weight: 600; }

/* Product Info */
.t2w-product__info {
    padding: 24px 0 24px; border-bottom: 1px solid var(--t2w-wc-border); margin-bottom: 0;
}
.t2w-product__info .t2w-product__title { font-size: 28px; margin: 6px 0 10px; }
.t2w-product__info .t2w-product__meta { margin-bottom: 20px; }
.t2w-product__meta-sep { color: var(--t2w-wc-border-hover); font-size: 12px; }
.t2w-product__meta-sub { font-weight: 400; }
.t2w-product__cancel-inline {
    display: inline-flex; align-items: center; gap: 4px;
    color: #059669; font-weight: 600;
}
.t2w-product__info-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.t2w-product__info-cta .t2w-product__price { margin: 0; flex: 1; }
.t2w-product__info-cta .t2w-product__price-per { display: inline; margin: 0 0 0 6px; }

/* Primary CTA: AI 일정에 추가 */
.t2w-product .t2w-product__add-itinerary--primary {
    width: auto; margin-top: 0;
    padding: 14px 36px; border-radius: 14px;
    background: linear-gradient(135deg, #FFB700, #F59E0B); color: #fff;
    border: none; font-size: 16px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(255,183,0,.3);
    transition: all .25s; font-family: 'Noto Sans KR', sans-serif;
    white-space: nowrap; flex-shrink: 0;
}
.t2w-product .t2w-product__add-itinerary--primary:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 6px 24px rgba(255,183,0,.4); transform: translateY(-1px);
}
.t2w-product .t2w-product__add-itinerary--primary.is-added {
    background: #10B981; box-shadow: 0 4px 12px rgba(16,185,129,.3);
}

/* Sticky Bottom Bar (desktop + mobile) */
.t2w-product__bottom-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    background: #111827; color: #fff;
    padding: 12px 24px; padding-bottom: max(12px, env(safe-area-inset-bottom));
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.t2w-product__bar-price { display: flex; align-items: baseline; gap: 6px; }
.t2w-product__bar-regular { font-size: 14px; color: #9ca3af; text-decoration: line-through; }
.t2w-product__bar-sale { font-size: 22px; font-weight: 800; }
.t2w-product__bar-discount { font-size: 12px; font-weight: 700; color: #FFB700; }
.t2w-product__bar-per { font-size: 12px; color: #9ca3af; }
.t2w-product__bar-actions { display: flex; gap: 10px; }
.t2w-product__bar-cart {
    padding: 10px 20px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.3);
    background: transparent; color: #fff; font-size: 14px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; gap: 6px;
    font-family: 'Noto Sans KR', sans-serif; transition: all .2s;
    white-space: nowrap;
}
.t2w-product__bar-cart:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.t2w-product__bar-cart .material-symbols-outlined { font-size: 18px; }
.t2w-product__bar-ai {
    padding: 10px 24px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #FFB700, #F59E0B); color: #fff;
    font-size: 14px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    font-family: 'Noto Sans KR', sans-serif;
    box-shadow: 0 2px 12px rgba(255,183,0,.3); transition: all .2s;
    white-space: nowrap;
}
.t2w-product__bar-ai:hover { background: linear-gradient(135deg, #F59E0B, #D97706); }
.t2w-product__bar-ai .material-symbols-outlined { font-size: 18px; }

/* Content needs bottom padding for fixed bar */
.t2w-product { padding-bottom: 80px; }
/* Push chat widget above bottom bar */
body.single-product .t2w-chat-fab { bottom: 76px; }

/* Gallery: default (single image) */
.t2w-product__gallery { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); margin-bottom: 24px; }
.t2w-product__gallery-main { position: relative; overflow: hidden; }
.t2w-product__hero-img { width: 100%; height: 100%; min-height: 320px; max-height: 420px; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.t2w-product .t2w-product__hero-img { height: auto; }
.t2w-product__gallery-main:hover .t2w-product__hero-img { transform: scale(1.03); }
.t2w-product__badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-text);
    padding: 6px 16px; border-radius: 99px; font-size: 12px; font-weight: 700;
    box-shadow: 0 2px 12px rgba(255, 183, 0, 0.3);
    backdrop-filter: blur(4px); z-index: 2;
}
.t2w-product__gallery-thumbs { display: flex; gap: 6px; margin-top: 6px; }
.t2w-product__thumb {
    flex: 1; height: 64px; object-fit: cover; border-radius: 10px; cursor: pointer;
    transition: all .25s ease; border: 2px solid transparent;
}
.t2w-product__thumb:hover { transform: scale(1.04); border-color: var(--t2w-wc-btn-bg); }
.t2w-product__thumb.is-active { border-color: var(--t2w-wc-btn-bg); opacity: .85; }

/* Gallery: 1+4 Grid mode */
.t2w-product__gallery.is-grid {
    display: grid; grid-template-columns: 3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr; gap: 6px; height: 440px;
}
.t2w-product__gallery.is-grid .t2w-product__gallery-main { grid-row: 1/3; grid-column: 1; }
.t2w-product__gallery.is-grid .t2w-product__hero-img { min-height: unset; max-height: unset; height: 100%; }
.t2w-product__gallery.is-grid .t2w-product__gallery-thumbs {
    display: contents;
}
.t2w-product__gallery.is-grid .t2w-product__thumb {
    width: 100%; height: 100%; flex: unset; border-radius: 0;
    border: none; object-fit: cover;
}
.t2w-product__gallery.is-grid .t2w-product__thumb:hover { transform: none; opacity: .85; }

/* sidebar stretches to main height so booking-card can be sticky inside */

/* Partner Profile */
.t2w-product__partner {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: var(--t2w-wc-card-bg); border-radius: 14px;
    border: 1px solid var(--t2w-wc-border); margin-bottom: 24px;
}
.t2w-product__partner-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #FFB700, #F59E0B); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
}
.t2w-product__partner-name { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.t2w-product__partner-badge {
    font-size: 11px; font-weight: 600; color: var(--t2w-wc-btn-bg);
    background: rgba(255,183,0,.08); padding: 3px 8px; border-radius: 6px;
}
.t2w-product__partner-desc { font-size: 14px; color: var(--t2w-wc-text-muted); margin-top: 3px; }
.t2w-product__partner-stats {
    display: flex; gap: 16px; margin-top: 8px; font-size: 13px; color: var(--t2w-wc-text-muted);
}
.t2w-product__partner-stats span { display: inline-flex; align-items: center; gap: 4px; }

/* Section Tabs (sticky scrollspy) */
.t2w-product__section-tabs {
    display: flex; gap: 0; position: sticky; top: 60px; z-index: 50;
    background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    margin-bottom: 28px; overflow-x: auto; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.t2w-product__section-tabs::-webkit-scrollbar { display: none; }
.t2w-product__tab {
    padding: 14px 18px; font-size: 14px; font-weight: 600;
    color: var(--t2w-wc-text-muted); text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: all .2s; flex-shrink: 0;
}
.t2w-product__tab:hover { color: var(--t2w-wc-text); }
.t2w-product__tab.is-active {
    color: var(--t2w-wc-text); border-bottom-color: var(--t2w-wc-btn-bg);
}

/* Selling Points strip */
.t2w-product__selling-points {
    display: flex; gap: 12px; flex-wrap: wrap;
    padding: 20px 0; margin: 0 0 28px;
    border-bottom: 1px solid var(--t2w-wc-border);
}
.t2w-product__sp {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #374151;
    background: var(--t2w-wc-card-bg); padding: 10px 20px; border-radius: 99px;
    border: 1px solid var(--t2w-wc-border);
    transition: all .2s ease;
}
.t2w-product__sp:hover { border-color: rgba(255,183,0,.4); background: #fffcf5; }
.t2w-product__sp .material-symbols-outlined {
    font-size: 14px; color: var(--t2w-wc-btn-bg);
    background: rgba(255,183,0,.1); width: 24px; height: 24px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.t2w-product__kind {
    font-size: 11px; font-weight: 700; color: var(--t2w-wc-btn-bg);
    text-transform: uppercase; letter-spacing: .08em;
    background: rgba(255,183,0,.08); padding: 4px 10px; border-radius: 6px;
    display: inline-block;
}
.t2w-product__title { font-size: 22px; font-weight: 800; margin: 8px 0 8px; color: var(--t2w-wc-text); letter-spacing: -.02em; line-height: 1.3; }
.t2w-product__meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--t2w-wc-text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.t2w-product__rating { color: var(--t2w-wc-btn-bg); font-weight: 700; }
.t2w-product__duration { display: flex; align-items: center; gap: 4px; }

/* Content readable width */
.t2w-product__description,
.t2w-product__checklist,
.t2w-product__schedule,
.t2w-product__meeting,
.t2w-product__faq,
.t2w-product__refund,
.t2w-product__reviews { max-width: 960px; }

.t2w-product__description { margin-bottom: 36px; }
.t2w-product__description h2,
.t2w-product__schedule h2,
.t2w-product__meeting h2,
.t2w-product__faq > h2,
.t2w-product__related > h2 {
    font-size: 22px; font-weight: 700; letter-spacing: -.02em;
    padding-left: 14px; border-left: 3px solid var(--t2w-wc-btn-bg);
}
.t2w-product__description h2 { margin-bottom: 16px; }

/* Highlights bullet list */
.t2w-product__highlights-list {
    background: linear-gradient(135deg, #fffcf0, #fafaf8); border-radius: 16px;
    padding: 20px 24px; margin-bottom: 24px; border: 1px solid rgba(255,183,0,.12);
}
.t2w-product__hl-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; font-size: 15px; line-height: 1.7; color: #1f2937;
}
.t2w-product__hl-dot {
    width: 8px; height: 8px; border-radius: 2px; background: var(--t2w-wc-btn-bg);
    flex-shrink: 0; margin-top: 7px; transform: rotate(45deg);
}

.t2w-product__description p { font-size: 15px; line-height: 1.85; color: #374151; margin-bottom: 16px; }
.t2w-product__description img {
    width: 100%; border-radius: 14px; margin: 20px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.t2w-product__desc-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0;
}
.t2w-product__desc-grid img { margin: 0; }

.t2w-product__meeting { margin-bottom: 36px; }
.t2w-product__meeting h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; letter-spacing: -.02em; }
.t2w-product__meeting-card {
    display: flex; gap: 14px; padding: 18px;
    background: #fafaf8; border-radius: 14px; border: 1px solid var(--t2w-wc-border);
    transition: border-color .2s;
}
.t2w-product__meeting-card:hover { border-color: rgba(255,183,0,.3); }

/* Booking card */
.t2w-product__booking-card {
    position: sticky; top: 80px;
    background: var(--t2w-wc-card-bg); border-radius: 20px; padding: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
    border: 1px solid var(--t2w-wc-border);
}
.t2w-product__booking-card .t2w-product__kind { margin-bottom: 4px; }
.t2w-product__booking-card .t2w-product__title { font-size: 20px; margin: 0 0 6px; }
.t2w-product__booking-card .t2w-product__meta { margin-bottom: 0; padding-bottom: 14px; border-bottom: 1px solid var(--t2w-wc-border); }
.t2w-product__booking-card .t2w-product__price { padding-top: 14px; margin-bottom: 14px; }
.t2w-product__price { margin-bottom: 20px; }
.t2w-product__price-regular { font-size: 15px; color: var(--t2w-wc-text-light); text-decoration: line-through; margin-right: 6px; display: inline; }
.t2w-product__price-sale { font-size: 30px; font-weight: 900; color: var(--t2w-wc-text); }
.t2w-product__discount {
    display: inline-block; background: #fef3c7; color: #D97706;
    font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin-left: 8px;
}
.t2w-product__price-per { display: block; font-size: 13px; color: var(--t2w-wc-text-light); margin-top: 4px; }

.t2w-product__booking-card .single_add_to_cart_button {
    width: 100%; padding: 14px; border-radius: 14px;
    background: linear-gradient(135deg, #FFB700, #F59E0B); color: var(--t2w-wc-btn-text);
    font-size: 16px; font-weight: 700; border: none; cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(255,183,0,.25);
}
.t2w-product__booking-card .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 6px 20px rgba(255,183,0,.35); transform: translateY(-1px);
}

.t2w-product__add-itinerary {
    width: 100%; padding: 12px; border-radius: 14px; margin-top: 10px;
    background: var(--t2w-wc-card-bg); color: var(--t2w-wc-text);
    border: 1.5px solid #e5e7eb; font-size: 14px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: all .25s ease; font-family: 'Noto Sans KR', sans-serif;
}
.t2w-product__add-itinerary:hover { border-color: var(--t2w-wc-btn-bg); background: #fffcf5; }
.t2w-product__add-itinerary.is-added {
    background: rgba(16,185,129,.08); border-color: #10B981; color: #10B981; pointer-events: none;
}

/* Toast notification */
.t2w-product__toast {
    position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: #111827; color: #fff; padding: 12px 20px; border-radius: 14px;
    font-size: 13px; font-weight: 600; z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    display: flex; align-items: center; gap: 10px;
    opacity: 0; transition: opacity .3s, transform .3s;
}
.t2w-product__toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.t2w-product__toast a { color: var(--t2w-wc-btn-bg); text-decoration: none; white-space: nowrap; }

/* Gallery lightbox */
.t2w-product__lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.9);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.t2w-product__lightbox.is-visible { opacity: 1; }
.t2w-product__lb-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.t2w-product__lb-close {
    position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.15);
    border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.t2w-product__lb-prev, .t2w-product__lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15); border: none; border-radius: 50%;
    width: 44px; height: 44px; cursor: pointer; color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.t2w-product__lb-prev { left: 16px; }
.t2w-product__lb-next { right: 16px; }
.t2w-product__lb-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); font-size: 14px;
}
.t2w-product__hero-img { cursor: zoom-in; }
.t2w-product__thumb { cursor: pointer; transition: opacity .2s; }
.t2w-product__thumb:hover, .t2w-product__thumb.is-active { opacity: .7; }

/* Checklist (포함/불포함) */
.t2w-product__checklist {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--t2w-wc-border);
}
.t2w-product__includes, .t2w-product__excludes {
    background: #fafaf8; border-radius: 14px; padding: 18px;
    border: 1px solid var(--t2w-wc-border);
}
.t2w-product__checklist h3 { font-size: 16px; font-weight: 700; margin: 0 0 16px; letter-spacing: -.01em; }
.t2w-product__checklist ul { list-style: none; padding: 0; margin: 0; }
.t2w-product__checklist li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; font-size: 15px; line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,.03);
}
.t2w-product__checklist li:last-child { border-bottom: none; }
.t2w-product__includes li .material-symbols-outlined {
    color: #10B981; font-size: 14px; flex-shrink: 0;
    background: rgba(16,185,129,.1); width: 24px; height: 24px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.t2w-product__excludes li .material-symbols-outlined {
    color: #EF4444; font-size: 14px; flex-shrink: 0;
    background: rgba(239,68,68,.08); width: 24px; height: 24px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Schedule timeline */
.t2w-product__schedule { margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--t2w-wc-border); }
.t2w-product__schedule h2 { font-size: 18px; font-weight: 700; margin: 0 0 20px; letter-spacing: -.01em; }
.t2w-product__timeline { position: relative; padding-left: 32px; }
.t2w-product__timeline::before {
    content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px;
    width: 2px; background: linear-gradient(to bottom, #FFB700, #e5e7eb);
    border-radius: 1px;
}
.t2w-product__timeline-item { position: relative; padding-bottom: 24px; }
.t2w-product__timeline-item:last-child { padding-bottom: 0; }
.t2w-product__timeline-dot {
    position: absolute; left: -32px; top: 0; width: 20px; height: 20px;
    background: #FFB700; border-radius: 50%; border: 2px solid #fff;
    box-shadow: 0 0 0 2px #FFB700, 0 0 8px rgba(255,183,0,.25);
    display: flex; align-items: center; justify-content: center;
}
.t2w-product__timeline-dot .material-symbols-outlined {
    font-size: 12px; color: #fff; font-variation-settings: 'FILL' 1;
}
.t2w-product__timeline-time {
    font-size: 13px; color: var(--t2w-wc-text-muted); font-weight: 700;
    margin-bottom: 4px; letter-spacing: .02em;
}
.t2w-product__timeline-title { font-size: 16px; font-weight: 700; color: var(--t2w-wc-text); }
.t2w-product__timeline-desc { font-size: 14px; color: var(--t2w-wc-text-light); margin-top: 4px; line-height: 1.6; }

/* FAQ accordion */
.t2w-product__faq { margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--t2w-wc-border); }
.t2w-product__faq > h2 { font-size: 22px; font-weight: 700; margin: 0 0 18px; letter-spacing: -.02em; }
.t2w-product__faq details {
    border: 1px solid var(--t2w-wc-border); border-radius: 12px;
    margin-bottom: 8px; transition: border-color .2s;
}
.t2w-product__faq details:hover { border-color: rgba(255,183,0,.3); }
.t2w-product__faq details[open] { border-color: rgba(255,183,0,.4); background: #fffcf5; }
.t2w-product__faq summary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer;
    list-style: none;
}
.t2w-product__faq summary::-webkit-details-marker { display: none; }
.t2w-product__faq summary::after {
    content: 'expand_more'; font-family: 'Material Symbols Outlined'; font-size: 20px;
    color: var(--t2w-wc-text-muted); transition: transform .25s ease;
}
.t2w-product__faq details[open] summary::after { transform: rotate(180deg); }
.t2w-product__faq .t2w-product__faq-answer {
    padding: 0 20px 18px; font-size: 15px; color: #6b7280; line-height: 1.7;
}

/* Cancel/Refund policy */
.t2w-product__refund { margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--t2w-wc-border); }
.t2w-product__refund > h2 { font-size: 22px; font-weight: 700; margin: 0 0 18px; letter-spacing: -.02em; padding-left: 14px; border-left: 3px solid var(--t2w-wc-btn-bg); }
.t2w-product__refund-table {
    width: 100%; border-collapse: collapse; font-size: 15px;
    border-radius: 12px; overflow: hidden; border: 1px solid var(--t2w-wc-border);
}
.t2w-product__refund-table thead { background: #fafaf8; }
.t2w-product__refund-table th {
    padding: 14px 20px; text-align: left; font-weight: 600; font-size: 14px;
    color: var(--t2w-wc-text-muted); border-bottom: 1px solid var(--t2w-wc-border);
}
.t2w-product__refund-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--t2w-wc-border);
}
.t2w-product__refund-table tr:last-child td { border-bottom: none; }
.t2w-product__refund-table tr:last-child td:last-child { color: var(--t2w-wc-danger); font-weight: 600; }
.t2w-product__refund-trust {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; background: rgba(16,185,129,.06); border-radius: 12px;
    border: 1px solid rgba(16,185,129,.12); margin-bottom: 16px;
}
.t2w-product__refund-trust .material-symbols-outlined { font-size: 28px; color: #10B981; flex-shrink: 0; }
.t2w-product__refund-trust strong { font-size: 15px; display: block; color: #059669; }
.t2w-product__refund-trust span { font-size: 14px; color: var(--t2w-wc-text-muted); }
.t2w-product__refund-note { font-size: 12px; color: var(--t2w-wc-text-light); margin-top: 10px; }

/* Star filled (Material Symbols) */
.t2w-product .material-symbols-outlined { font-variation-settings: 'FILL' 0; }
.t2w-product__reviews .material-symbols-outlined,
.t2w-product__review-meta .material-symbols-outlined,
.t2w-product__rating .material-symbols-outlined { font-variation-settings: 'FILL' 1; }

/* Reviews */
.t2w-product__reviews { margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--t2w-wc-border); }
.t2w-product__reviews > h2 { font-size: 22px; font-weight: 700; margin: 0 0 20px; letter-spacing: -.02em; padding-left: 14px; border-left: 3px solid var(--t2w-wc-btn-bg); }
.t2w-product__reviews-count { font-size: 14px; font-weight: 500; color: var(--t2w-wc-text-muted); margin-left: 6px; }
.t2w-product__reviews-summary {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 20px; background: #fafaf8; border-radius: 14px;
    border: 1px solid var(--t2w-wc-border); margin-bottom: 18px;
}
.t2w-product__reviews-avg { font-size: 32px; font-weight: 800; color: var(--t2w-wc-text); }
.t2w-product__reviews-stars { display: flex; gap: 2px; }
.t2w-product__reviews-total { font-size: 13px; color: var(--t2w-wc-text-muted); }
.t2w-product__reviews-list { display: flex; flex-direction: column; gap: 14px; }
.t2w-product__review-card {
    padding: 18px; background: var(--t2w-wc-card-bg); border-radius: 14px;
    border: 1px solid var(--t2w-wc-border);
}
.t2w-product__review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.t2w-product__review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #FFB700, #F59E0B); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.t2w-product__review-header strong { font-size: 14px; }
.t2w-product__review-meta { display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.t2w-product__review-meta span:last-child { font-size: 12px; color: var(--t2w-wc-text-light); margin-left: 4px; }
.t2w-product__review-text { font-size: 15px; line-height: 1.7; color: #374151; margin: 0; }

/* Related products */
.t2w-product__related { margin-bottom: 36px; padding-top: 28px; border-top: 1px solid var(--t2w-wc-border); }
.t2w-product__related > h2 { font-size: 22px; font-weight: 700; margin: 0 0 20px; letter-spacing: -.02em; padding-left: 14px; border-left: 3px solid #FFB700; }
.t2w-product__related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.t2w-product__related .t2w-archive__card {
    border-radius: 14px; transition: all .3s ease; position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.t2w-product__related .t2w-archive__card-img {
    aspect-ratio: 3/2; object-fit: cover; width: 100%; display: block;
}
.t2w-product__related .t2w-archive__card-body { flex: 1; }
.t2w-product__related .t2w-archive__card-kind {
    position: static; display: inline-block; margin-bottom: 6px;
}
.t2w-product__related .t2w-archive__card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.t2w-product__related .t2w-archive__card-img {
    transition: transform .4s ease;
}
.t2w-product__related .t2w-archive__card:hover .t2w-archive__card-img {
    transform: scale(1.06);
}

/* Trust badges */
.t2w-product__trust {
    display: flex; justify-content: center; gap: 8px; margin-top: 16px;
    padding-top: 16px; border-top: 1px solid var(--t2w-wc-border);
}
.t2w-product__trust-item {
    display: flex; align-items: center; gap: 4px; font-size: 11px;
    color: #059669; font-weight: 600;
    background: rgba(16,185,129,.06); padding: 5px 10px; border-radius: 8px;
    border: 1px solid rgba(16,185,129,.12);
}
.t2w-product__trust-item .material-symbols-outlined { font-size: 14px; color: #10B981; }

/* Scroll Reveal */
.t2w-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.t2w-reveal.is-visible {
    opacity: 1; transform: translateY(0);
}

@media (max-width: 768px) {
    .t2w-product__checklist { grid-template-columns: 1fr; gap: 12px; }
    .t2w-product__trust { gap: 6px; flex-wrap: wrap; justify-content: center; }
    .t2w-product__trust-item { font-size: 10px; padding: 4px 8px; }
    .t2w-product__related-grid { grid-template-columns: 1fr 1fr; }
    .t2w-product__faq details { border-radius: 10px; }
    .t2w-product__faq summary { padding: 12px 14px; font-size: 13px; }
}

/* cancel-note: legacy (하단 바 등에서 사용 시) */
.t2w-product__cancel-note {
    display: flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: 13px; color: var(--t2w-wc-success); font-weight: 600;
}

/* Mobile sticky CTA */
.t2w-product__mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--t2w-wc-card-bg); padding: 12px 16px; border-top: 1px solid var(--t2w-wc-border-hover);
    z-index: 100; align-items: center; justify-content: space-between;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.t2w-product__mobile-price { font-size: 20px; font-weight: 800; }
.t2w-product__mobile-price span { font-size: 12px; color: var(--t2w-wc-text-light); font-weight: 400; }
.t2w-product__mobile-book {
    padding: 12px 28px; border-radius: var(--t2w-wc-btn-radius); border: none;
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text);
    font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Noto Sans KR', sans-serif;
}


/* ─── Section 4: Cart Page ─── */

.t2w-cart { max-width: 1000px; margin: 0 auto; padding: 0 20px 80px; }
.t2w-cart__header { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--t2w-wc-border); margin-bottom: 24px; }
.t2w-cart__back { color: #374151; display: flex; text-decoration: none; }
.t2w-cart__title { font-size: 20px; font-weight: 800; margin: 0; }

.t2w-cart__empty { text-align: center; padding: 80px 20px; }
.t2w-cart__empty .material-symbols-outlined { font-size: 64px; color: #e5e7eb; display: block; margin-bottom: 12px; }
.t2w-cart__empty h3 { font-size: 20px; margin-bottom: 6px; color: var(--t2w-wc-text); }
.t2w-cart__empty p { color: var(--t2w-wc-text-light); margin-bottom: 20px; }
.t2w-cart__empty-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 24px; border-radius: var(--t2w-wc-btn-radius);
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text); text-decoration: none;
    font-weight: 700; font-size: 14px;
}
.t2w-cart__body { display: flex; gap: 32px; }
.t2w-cart__items { flex: 1; min-width: 0; }
.t2w-cart__summary { width: 340px; flex-shrink: 0; }
.t2w-cart__section-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

.t2w-cart__item {
    display: flex; gap: 16px; padding: 16px; margin-bottom: 12px;
    background: var(--t2w-wc-card-bg); border-radius: 14px; border: 1px solid var(--t2w-wc-border);
}
.t2w-cart__item-img { width: 100px; height: 80px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.t2w-cart__item-img img { width: 100%; height: 100%; object-fit: cover; }
.t2w-cart__item-info { flex: 1; min-width: 0; }
.t2w-cart__item-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.t2w-cart__item-name a { color: inherit; text-decoration: none; }
.t2w-cart__item-meta { font-size: 12px; color: var(--t2w-wc-text-muted); margin-bottom: 8px; }
.t2w-cart__item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.t2w-cart__item-price { font-size: 16px; font-weight: 800; }
.t2w-cart__item-remove { font-size: 12px; color: var(--t2w-wc-text-light); display: flex; align-items: center; gap: 3px; text-decoration: none; transition: color var(--t2w-wc-transition); }
.t2w-cart__item-remove:hover { color: var(--t2w-wc-danger); }
.t2w-cart__item-remove .material-symbols-outlined { font-size: 16px; }

.t2w-cart__update {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 10px; border: 1px solid var(--t2w-wc-border-hover);
    background: var(--t2w-wc-card-bg); font-size: 13px; font-weight: 600; cursor: pointer;
    color: var(--t2w-wc-text-muted); margin-top: 8px; font-family: 'Noto Sans KR', sans-serif;
}

.t2w-cart__coupon { display: flex; gap: 8px; margin-bottom: 16px; }
.t2w-cart__coupon-input { flex: 1; padding: 10px 14px; border: 1px solid var(--t2w-wc-border-hover); border-radius: 10px; font-size: 13px; font-family: 'Noto Sans KR', sans-serif; }
.t2w-cart__coupon-input:focus { border-color: var(--t2w-wc-btn-bg); box-shadow: var(--t2w-wc-focus-ring); outline: none; }
.t2w-cart__coupon-btn { padding: 10px 18px; border: none; border-radius: 10px; background: var(--t2w-wc-text); color: #fff; font-weight: 700; cursor: pointer; font-size: 13px; font-family: 'Noto Sans KR', sans-serif; }

.t2w-cart__totals { background: var(--t2w-wc-card-bg); border-radius: 14px; padding: 16px; border: 1px solid var(--t2w-wc-border); margin-bottom: 16px; }
.t2w-cart__total-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.t2w-cart__total-row--discount { color: var(--t2w-wc-danger); }
.t2w-cart__total-row--final { border-top: 1px solid var(--t2w-wc-border-hover); margin-top: 8px; padding-top: 12px; font-size: 18px; font-weight: 800; }

.t2w-cart__checkout-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; border-radius: var(--t2w-wc-btn-radius);
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text);
    font-size: 16px; font-weight: 700; text-decoration: none; transition: all var(--t2w-wc-transition);
}
.t2w-cart__checkout-btn:hover { background: var(--t2w-wc-btn-hover); transform: translateY(-1px); }
.t2w-cart__checkout-btn .material-symbols-outlined { font-size: 18px; }

.t2w-cart__continue { text-align: center; margin-top: 24px; }
.t2w-cart__continue a { color: var(--t2w-wc-btn-bg); text-decoration: none; font-weight: 600; font-size: 14px; }

.t2w-cart__mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 16px; background: var(--t2w-wc-card-bg); border-top: 1px solid var(--t2w-wc-border-hover); z-index: 100;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.t2w-cart__mobile-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; padding: 14px; border-radius: var(--t2w-wc-btn-radius);
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text); text-decoration: none;
    font-size: 16px; font-weight: 700;
}


/* ─── Section 5: Checkout Page ─── */

.t2w-checkout-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; border-bottom: 1px solid var(--t2w-wc-border); background: var(--t2w-wc-card-bg);
}
.t2w-checkout-header__back { display: flex; align-items: center; gap: 6px; color: var(--t2w-wc-text-muted); text-decoration: none; font-size: 14px; }
.t2w-checkout-header__logo { font-size: 18px; font-weight: 800; color: var(--t2w-wc-text); }
.t2w-checkout-header__logo span { color: var(--t2w-wc-btn-bg); }
.t2w-checkout-header__secure { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--t2w-wc-success); font-weight: 600; }

.t2w-checkout { max-width: 960px; margin: 0 auto; padding: 24px 20px 80px; }
.t2w-checkout__body { display: flex; gap: 32px; }
.t2w-checkout__form { flex: 1; min-width: 0; }
.t2w-checkout__sidebar { width: 340px; flex-shrink: 0; }

/* Stepper */
.t2w-checkout__stepper { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 32px; }
.t2w-checkout__step { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--t2w-wc-text-light); }
.t2w-checkout__step.active { color: var(--t2w-wc-text); }
.t2w-checkout__step-num {
    width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--t2w-wc-border-hover);
    display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}
.t2w-checkout__step.active .t2w-checkout__step-num { background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text); border-color: transparent; }
.t2w-checkout__step-line { width: 40px; height: 2px; background: var(--t2w-wc-border-hover); }

/* WC checkout form overrides */
body .woocommerce-checkout .form-row label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px; font-weight: 600; color: #374151;
}

body .woocommerce-checkout .form-row input,
body .woocommerce-checkout .form-row select,
body .woocommerce-checkout .form-row textarea {
    border-radius: var(--t2w-wc-input-radius);
    border: 1px solid var(--t2w-wc-border-hover);
    padding: 11px 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    transition: all var(--t2w-wc-transition);
}

body .woocommerce-checkout .form-row input:focus,
body .woocommerce-checkout .form-row select:focus,
body .woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: var(--t2w-wc-btn-bg);
    box-shadow: var(--t2w-wc-focus-ring);
}

body .woocommerce-checkout #place_order {
    width: 100%; padding: 14px; border-radius: var(--t2w-wc-btn-radius); border: none;
    background: var(--t2w-wc-btn-bg); color: var(--t2w-wc-btn-text);
    font-size: 16px; font-weight: 700; cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all var(--t2w-wc-transition); margin-top: 16px;
}
body .woocommerce-checkout #place_order:hover { background: var(--t2w-wc-btn-hover); transform: translateY(-1px); }

/* Order summary card */
.t2w-checkout__order-card {
    position: sticky; top: 80px;
    background: #fafaf8; border-radius: var(--t2w-wc-card-radius); padding: 20px; border: 1px solid var(--t2w-wc-border);
}
.t2w-checkout__order-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* Trust badges */
.t2w-checkout__trust { display: flex; gap: 16px; justify-content: center; margin-top: 16px; font-size: 12px; color: var(--t2w-wc-text-muted); }
.t2w-checkout__trust span { display: flex; align-items: center; gap: 4px; }
.t2w-checkout__trust .material-symbols-outlined { font-size: 14px; color: var(--t2w-wc-success); }

/* Payment section */
body .woocommerce-checkout #payment {
    border-radius: var(--t2w-wc-card-radius);
    background: var(--t2w-wc-card-bg);
}


/* ─── Section 6: Parent Theme Specific Overrides ─── */

/* TaskHive wraps WC in Bootstrap grid — override radii and shadows */
body .woocommerce div.product {
    background: transparent;
}

body .woocommerce div.product div.images img {
    border-radius: var(--t2w-wc-card-radius);
}

body .woocommerce div.product div.summary {
    font-family: 'Noto Sans KR', sans-serif;
}

body .woocommerce div.product .product_title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--t2w-wc-text);
}

body .woocommerce div.product p.price {
    color: var(--t2w-wc-text);
    font-size: 22px;
    font-weight: 800;
}

body .woocommerce div.product p.price del {
    color: var(--t2w-wc-text-light);
    font-size: 16px;
    font-weight: 400;
}

body .woocommerce div.product p.price ins {
    text-decoration: none;
}

/* Override all TaskHive 5px radii */
body .woocommerce form.checkout_coupon,
body .woocommerce form.login,
body .woocommerce form.register {
    border-radius: var(--t2w-wc-card-radius);
    border-color: var(--t2w-wc-border);
}

/* ========================================
   MY ACCOUNT — v43 Card Hub (no sidebar)
   ======================================== */

/* Page container — single column */
.woocommerce-account .woocommerce {
    max-width: 720px;
    margin: -76px auto 0;
    padding: 0 20px 80px;
    display: block;
}

/* Hide sidebar navigation — card hub replaces it */
body .woocommerce-MyAccount-navigation {
    display: none;
}

/* Hide HivePress vendor sidebar on WC account pages */
body.woocommerce-account .hp-page__sidebar {
    display: none;
}

/* HivePress content column — expand to full width */
body.woocommerce-account .hp-page__content.hp-col-sm-8 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Back-to-dashboard link */
.t2w-dash-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--t2w-wc-text-muted);
    text-decoration: none;
    margin: 8px 0 16px;
    transition: color 0.15s;
}
form > .t2w-dash-back:first-child {
    display: flex;
    width: fit-content;
    margin-bottom: 12px;
}
.t2w-dash-back:hover {
    color: var(--t2w-wc-text);
}
.t2w-dash-back .material-symbols-outlined {
    font-size: 18px;
}

/* Content area — full width, no card wrapper (override WC layout.css float:right + width:68%) */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
}

/* Dashboard welcome text — golden banner */
body .woocommerce-MyAccount-content > p:first-of-type {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 28px 32px 4px;
    background: linear-gradient(135deg, #7d5800 0%, #FFB700 100%);
    color: #fff;
    border-radius: 20px 20px 0 0;
}

body .woocommerce-MyAccount-content > p:first-of-type strong {
    font-weight: 800;
}

body .woocommerce-MyAccount-content > p:nth-of-type(2) {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0 0 24px;
    padding: 0 32px 28px;
    background: linear-gradient(135deg, #7d5800 0%, #FFB700 100%);
    border-radius: 0 0 20px 20px;
}

/* Links inside dashboard text */
body .woocommerce-MyAccount-content > p a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,.4);
    transition: border-color 0.15s;
}

body .woocommerce-MyAccount-content > p a:hover {
    border-bottom-color: #fff;
}

/* WC sub-pages (orders, address, edit-account) — card style */
body .woocommerce-MyAccount-content .woocommerce-orders-table,
body .woocommerce-MyAccount-content form,
body .woocommerce-MyAccount-content .woocommerce-address-fields {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(26,28,27,0.04);
}

/* Form inputs */
body .woocommerce-MyAccount-content input[type="text"],
body .woocommerce-MyAccount-content input[type="email"],
body .woocommerce-MyAccount-content input[type="password"] {
    border-radius: 10px;
    border: 1.5px solid #E5E7EB;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}

body .woocommerce-MyAccount-content input:focus {
    border-color: #F59E0B;
    outline: none;
}

/* Save button */
body .woocommerce-MyAccount-content button[type="submit"],
body .woocommerce-MyAccount-content input[type="submit"] {
    background: linear-gradient(135deg, #7d5800, #FFB700);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    transition: opacity 0.15s;
}

body .woocommerce-MyAccount-content button[type="submit"]:hover,
body .woocommerce-MyAccount-content input[type="submit"]:hover {
    opacity: 0.9;
}

/* General links in content */
body .woocommerce-MyAccount-content a {
    color: #D97706;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

body .woocommerce-MyAccount-content a:hover {
    color: #B45309;
}

/* No orders / empty state */
body .woocommerce-MyAccount-content .woocommerce-info,
body .woocommerce-MyAccount-content .woocommerce-message {
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: #1F2937;
    margin-bottom: 16px;
}

/* ─── Dashboard Card Hub ─── */
.t2w-dash-banner {
    background: linear-gradient(135deg, #7d5800 0%, #FFB700 100%);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.t2w-dash-banner-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}
.t2w-dash-banner-text p {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    margin: 0;
}
.t2w-dash-banner-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 3px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t2w-dash-banner-avatar .material-symbols-outlined {
    font-size: 28px;
    color: rgba(255,255,255,.7);
}
.t2w-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.t2w-dash-stat {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.t2w-dash-stat:hover {
    box-shadow: 0 4px 16px rgba(26,28,27,0.06);
}
.t2w-dash-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #7d5800;
}
.t2w-dash-stat-label {
    font-size: 12px;
    color: #837560;
    font-weight: 500;
}
.t2w-dash-stat--cta {
    background: #FFFBEB;
}
.t2w-dash-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.t2w-dash-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.t2w-dash-card:hover {
    box-shadow: 0 8px 24px rgba(26,28,27,0.06);
    transform: translateY(-2px);
}
.t2w-dash-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t2w-dash-card-icon .material-symbols-outlined {
    font-size: 24px;
    color: #fff;
}
.t2w-dash-card-icon--amber { background: linear-gradient(135deg, #F59E0B, #D97706); }
.t2w-dash-card-icon--blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.t2w-dash-card-icon--green { background: linear-gradient(135deg, #10B981, #059669); }
.t2w-dash-card-icon--navy { background: linear-gradient(135deg, #455f87, #2d486d); }
.t2w-dash-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1c1b;
    margin: 0 0 3px;
}
.t2w-dash-card-body p {
    font-size: 13px;
    color: #837560;
    margin: 0;
    line-height: 1.4;
}
.t2w-dash-card-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #d5c4ab;
    font-size: 20px;
}
.t2w-dash-logout {
    text-align: center;
    padding: 8px 0;
}
.t2w-dash-logout a {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
}
.t2w-dash-logout a:hover {
    color: #EF4444;
}

/* Account pages — clear fixed header */
body.woocommerce-account .hp-page__content,
body.woocommerce-account .woocommerce-MyAccount-content {
    padding-top: 80px;
}

/* Hide WC default welcome text — replaced by card hub */
body .woocommerce-MyAccount-content > .woocommerce-notices-wrapper + p,
body .woocommerce-MyAccount-content > .woocommerce-notices-wrapper + p + p {
    display: none;
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        margin-top: -120px;
        padding: 0 16px 60px;
    }
    .t2w-dash-banner {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .t2w-dash-banner-text h2 {
        font-size: 19px;
    }
    .t2w-dash-banner-avatar {
        width: 52px;
        height: 52px;
    }
    .t2w-dash-stats { gap: 8px; }
    .t2w-dash-stat { padding: 14px 8px; }
    .t2w-dash-stat-value { font-size: 22px; }
    .t2w-dash-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .t2w-dash-card { padding: 18px; }
    body .woocommerce-MyAccount-content .woocommerce-orders-table,
    body .woocommerce-MyAccount-content form {
        padding: 16px;
    }
}

/* WC tabs on product page */
body .woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: var(--t2w-wc-input-radius) var(--t2w-wc-input-radius) 0 0;
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--t2w-wc-card-bg);
}

body .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
}

/* Related products */
body .woocommerce div.product .related h2,
body .woocommerce div.product .upsells h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

/* WC widgets (cart widget, filter widget) */
body .woocommerce .widget_shopping_cart .buttons a {
    border-radius: var(--t2w-wc-btn-radius);
}

/* Select2 (WC select dropdowns) */
body .woocommerce .select2-container--default .select2-selection--single {
    border-radius: var(--t2w-wc-input-radius);
    border-color: var(--t2w-wc-border-hover);
    height: 44px;
    padding: 8px 14px;
}

body .woocommerce .select2-container--default .select2-selection--single:focus {
    border-color: var(--t2w-wc-btn-bg);
    box-shadow: var(--t2w-wc-focus-ring);
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--t2w-wc-btn-bg);
    color: var(--t2w-wc-btn-text);
}


/* ─── Section 7: Responsive ─── */

/* Tablet: 769-1024px */
@media (max-width: 1024px) {
    .t2w-archive__grid { grid-template-columns: repeat(2, 1fr); }

    .t2w-product__info-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .t2w-product .t2w-product__add-itinerary--primary { width: 100%; justify-content: center; }
    .t2w-product__cancel-inline { font-size: 13px; }
    .t2w-product__gallery.is-grid { display: block; height: auto; }
    .t2w-product__gallery.is-grid .t2w-product__gallery-thumbs { display: none; }
    .t2w-product__gallery.is-grid .t2w-product__hero-img { min-height: 240px; max-height: 300px; }
    .t2w-product__hero-img { min-height: 240px; max-height: 300px; }
    .t2w-product__selling-points { gap: 8px; }
    .t2w-product__bar-cart { padding: 10px 14px; }
    .t2w-product__bar-ai { padding: 10px 16px; }

    .t2w-cart__body { flex-direction: column; }
    .t2w-cart__summary { width: 100%; }

    .t2w-checkout__body { flex-direction: column; }
    .t2w-checkout__sidebar { width: 100%; }
    .t2w-checkout__order-card { position: static; }
    .t2w-checkout__stepper { gap: 12px; }
    .t2w-checkout__step-line { width: 24px; }
}

/* Mobile: <=768px */
@media (max-width: 768px) {
    .t2w-product .t2w-product__hero-img { min-height: 200px; max-height: 260px; }
    .t2w-product__title { font-size: 22px; }
    .t2w-product__gallery-thumbs { display: none; }

    /* Hide site bottom nav on product pages — product bar takes priority */
    body.single-product .t2w-bottom-nav { display: none; }

    /* Product bottom bar — full-width mobile layout */
    .t2w-product__bottom-bar {
        flex-direction: column; gap: 8px; padding: 10px 16px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
    .t2w-product__bar-price { justify-content: center; }
    .t2w-product__bar-actions { width: 100%; }
    .t2w-product__bar-cart, .t2w-product__bar-ai { flex: 1; justify-content: center; }

    /* Section tabs — shrink padding on mobile */
    .t2w-product__tab { padding: 12px 14px; font-size: 13px; }

    /* Share button — icon only on mobile */
    .t2w-product__action-btn { font-size: 0; padding: 8px; width: 40px; height: 40px; justify-content: center; }
    .t2w-product__action-btn .material-symbols-outlined { font-size: 18px; }

    /* Breadcrumb — truncate long titles */
    .t2w-product__breadcrumb .current {
        display: inline-block; max-width: 160px;
        overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
        vertical-align: bottom;
    }

    /* Price-per on its own line on mobile */
    .t2w-product__info-cta .t2w-product__price-per { display: block; margin: 4px 0 0; }
    .t2w-product__price-sale { font-size: 26px; }

    /* Meta wrapping on mobile */
    .t2w-product__meta { font-size: 13px; gap: 6px; }
    .t2w-product__cancel-inline { font-size: 12px; }

    /* Partner stats compact on mobile */
    .t2w-product__partner-stats { font-size: 12px; gap: 12px; }

    /* Chat widget above bottom bar on mobile */
    body.single-product .t2w-chat-fab { bottom: 100px; }

    .t2w-cart__mobile-cta { display: block; }
    .t2w-cart__checkout-btn { display: none; }
    .t2w-cart__item { flex-wrap: wrap; }
    .t2w-cart__item-img { width: 80px; height: 65px; }

    .t2w-archive__card-img-wrap { height: 160px; }
    .t2w-archive__card-body { padding: 10px 12px 14px; }
    .t2w-archive__card-title {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .t2w-archive__card-price { flex-wrap: wrap; gap: 2px; }
    .t2w-archive__card-sale { font-size: 15px; }
    .t2w-archive__card-regular { font-size: 11px; }

    /* Touch targets: min 44px */
    body .woocommerce a.button,
    body .woocommerce button.button,
    body .woocommerce input.button {
        min-height: 44px;
        padding: 12px 20px;
    }

    body .woocommerce .quantity .qty {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Small mobile: <=640px */
@media (max-width: 640px) {
    .t2w-archive__grid { grid-template-columns: 1fr; }
    .t2w-archive__title { font-size: 22px; }
    .t2w-archive__filters { flex-direction: column; align-items: stretch; }

    .t2w-product__selling-points { gap: 6px; }
    .t2w-product__sp { font-size: 12px; padding: 6px 10px; }

    .t2w-checkout__stepper { flex-wrap: wrap; justify-content: center; }
}
