/* ============================================================
   hellosklep — WooCommerce Single Product Page Styles
   ============================================================ */

/* --- Reset default WC cruft --- */
.woocommerce div.product .woocommerce-breadcrumb { display: none; }
.woocommerce div.product p.category { display: none; }
.woocommerce div.product .product_meta .posted_in { display: none; }
.woocommerce div.product .product_meta .tagged_as { display: none; }
.woocommerce div.product .product_meta .sku_wrapper { display: none; }
.woocommerce div.product .product_meta { display: none; }

/* --- Layout wrapper --- */
.woocommerce div.product {
    font-family: 'Inter', sans-serif;
    color: #1a2e26;
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* --- Product images --- */
.woocommerce div.product div.images {
    border-radius: 12px;
    overflow: hidden;
}
.woocommerce div.product div.images img {
    border-radius: 12px;
}
.flex-control-thumbs li img {
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .2s;
}
.flex-control-thumbs li img.flex-active {
    border-color: #B8960C;
}

/* --- Product summary --- */
.woocommerce div.product div.summary {
    padding-left: 40px;
}

/* --- Title --- */
.woocommerce div.product .product_title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a2e26;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

/* --- Short description --- */
.woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4a6358;
    margin-bottom: 24px;
    border-left: 3px solid #B8960C;
    padding-left: 16px;
}
.woocommerce-product-details__short-description p { margin: 0; }

/* --- Price --- */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #1a2e26;
    margin: 20px 0;
    display: block;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
    color: #1a2e26;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    font-size: 18px;
    color: #8fa89f;
    margin-right: 8px;
}

/* --- Variations label --- */
.woocommerce div.product .variations td label,
.woocommerce div.product .variations th label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4a6358;
    margin-bottom: 10px;
    display: block;
}
.woocommerce div.product .variations {
    width: 100%;
    border: none;
    margin-bottom: 8px;
}
.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
    padding: 0 0 16px 0;
    border: none;
    vertical-align: top;
}

/* --- Hide native select (replaced by pills via JS) --- */
.bzd-select-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
}

/* --- Pill buttons (generated by JS) --- */
.bzd-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.bzd-pill {
    padding: 8px 18px;
    border: 1.5px solid #c5d4cf;
    border-radius: 100px;
    background: #fff;
    color: #1a2e26;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
    white-space: nowrap;
}
.bzd-pill:hover {
    border-color: #1a2e26;
    background: #f5f0e8;
}
.bzd-pill.active {
    background: #1a2e26;
    border-color: #1a2e26;
    color: #F5F0E8;
}
.bzd-pill.disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- Quantity + Add to cart row --- */
.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.woocommerce div.product form.cart .quantity {
    display: flex;
    align-items: center;
    border: 1.5px solid #c5d4cf;
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}
.woocommerce div.product form.cart .qty {
    width: 48px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1a2e26;
    padding: 0;
    background: transparent;
    -moz-appearance: textfield;
}
.woocommerce div.product form.cart .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.bzd-qty-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #4a6358;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background .2s;
}
.bzd-qty-btn:hover { background: #f0f5f3; color: #1a2e26; }

/* --- Add to cart button --- */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart button[type="submit"] {
    flex: 1;
    min-width: 180px;
    padding: 14px 28px;
    background: #1a2e26;
    color: #F5F0E8;
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .1s;
    line-height: 1;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #B8960C;
    color: #1a2e26;
}
.woocommerce div.product form.cart .single_add_to_cart_button:active {
    transform: scale(.98);
}

/* --- Shipping badges --- */
.bzd-product-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 0;
}
.bzd-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f0e8;
    border-radius: 12px;
    padding: 14px 16px;
}
.bzd-badge-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.bzd-badge-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a2e26;
    line-height: 1.3;
}
.bzd-badge-text span {
    font-size: 11px;
    color: #4a6358;
}

/* --- Info strip --- */
.bzd-product-info-strip {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bzd-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #4a6358;
}
.bzd-info-row svg { flex-shrink: 0; }

/* --- Divider --- */
.bzd-product-divider {
    border: none;
    border-top: 1px solid #e8ede9;
    margin: 24px 0;
}

/* --- Tabs section --- */
.woocommerce-tabs {
    margin-top: 48px;
}
.woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 0 0;
    border-bottom: 2px solid #e8ede9;
    list-style: none;
    display: flex;
    gap: 0;
}
.woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
.woocommerce-tabs ul.tabs li a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8fa89f;
    padding: 12px 24px;
    display: block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}
.woocommerce-tabs ul.tabs li.active a {
    color: #1a2e26;
    border-bottom-color: #B8960C;
}
.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce-tabs .panel {
    padding: 24px 0;
    font-size: 14px;
    line-height: 1.8;
    color: #4a6358;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .woocommerce div.product .product_title { font-size: 24px; }
    .woocommerce div.product div.summary { padding-left: 0; }
    .woocommerce div.product p.price { font-size: 24px; }
    .bzd-product-badges { grid-template-columns: 1fr; }
    .woocommerce div.product form.cart { flex-direction: column; align-items: stretch; }
    .woocommerce div.product form.cart .quantity { align-self: flex-start; }
}
