/**
 * WooCommerce Product Page Styles
 * 
 * Himalayan Gold theme - Single product tabs & reviews styling.
 * Matches the design reference with pill tabs and vertical reviews.
 *
 * @package Himalayan_Gold
 */

/* ===============================
   CSS Variables (Theme Tokens)
=============================== */
:root {
    --hg-primary: #1A5D3A;
    --hg-primary-dark: #15532c;
    --hg-primary-light: #2a7d52;
    --hg-gold: #C9A962;
    --hg-gold-light: #d9be7e;
    --hg-cream: #F8F5F0;
    --hg-cream-dark: #ebe5da;
    --hg-text-dark: #333333;
    --hg-text-medium: #555555;
    --hg-text-light: #888888;
    --hg-white: #ffffff;
    --hg-border: #e0e0e0;
    --hg-border-light: #f0f0f0;
    --hg-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --hg-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --hg-radius: 16px;
    --hg-radius-md: 12px;
    --hg-radius-sm: 8px;
    --hg-radius-pill: 50px;
    --hg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================
   Product Detail Container Fixes
   Prevent WooCommerce gallery conflicts
=============================== */
.product-detail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-detail__container {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: start !important;
    /* Prevent stretching */
}

/* Reset main.css conflicts for Gallery */
.product-gallery {
    display: block !important;
    /* Override flex */
    position: static !important;
    /* Override sticky */
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure WooCommerce Gallery displays correctly */
.woocommerce-product-gallery {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    z-index: 99 !important;
}

.flex-viewport {
    height: auto !important;
}

/* Fix Product Info visibility */
.product-info,
.summary.entry-summary {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}


/* ===============================
   Tabs Container
=============================== */
.woocommerce-tabs {
    background: var(--hg-white);
    border-radius: var(--hg-radius);
    overflow: visible;
    box-shadow: var(--hg-shadow-lg);
}

/* ===============================
   Pill-Shaped Tab Navigation
=============================== */
.woocommerce-tabs ul.tabs,
.woocommerce-tabs .wc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 25px 30px;
    margin: 0;
    background: transparent;
    border-bottom: none;
    justify-content: flex-start;
}

.woocommerce-tabs ul.tabs li,
.woocommerce-tabs .wc-tabs li {
    margin: 0;
    padding: 0;
    flex: none;
}

.woocommerce-tabs ul.tabs li a,
.woocommerce-tabs .wc-tabs li a {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--hg-text-medium);
    text-decoration: none;
    background: var(--hg-white);
    border: 2px solid var(--hg-border);
    border-radius: var(--hg-radius-pill);
    transition: var(--hg-transition);
    white-space: nowrap;
}

.woocommerce-tabs ul.tabs li a:hover,
.woocommerce-tabs .wc-tabs li a:hover {
    color: var(--hg-primary);
    border-color: var(--hg-primary);
    background: rgba(26, 93, 58, 0.05);
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs .wc-tabs li.active a {
    color: var(--hg-white);
    background: var(--hg-primary);
    border-color: var(--hg-primary);
}

/* ===============================
   Tab Content Panels
=============================== */
.woocommerce-tabs .woocommerce-Tabs-panel,
.woocommerce-tabs .panel {
    padding: 30px;
    background: var(--hg-white);
    border-top: 1px solid var(--hg-border-light);
}

.woocommerce-tabs .woocommerce-Tabs-panel h2:first-child {
    display: none;
}

.woocommerce-tabs .woocommerce-Tabs-panel p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--hg-text-dark);
}

/* ===============================
   Reviews Section
=============================== */
.woocommerce-Reviews {
    padding: 0;
}

.reviews-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--hg-primary);
    margin: 0 0 25px 0;
}

/* ===============================
   Rating Summary Box
=============================== */
.reviews-summary-box {
    display: flex;
    gap: 40px;
    background: var(--hg-cream);
    border-radius: var(--hg-radius-md);
    padding: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.reviews-summary-left {
    text-align: center;
    min-width: 120px;
}

.reviews-average-score {
    font-size: 48px;
    font-weight: 700;
    color: var(--hg-text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.reviews-average-stars {
    margin-bottom: 8px;
}

.reviews-average-stars .star-rating {
    font-size: 18px;
    margin: 0 auto;
    display: block;
}

.reviews-total-count {
    font-size: 14px;
    color: var(--hg-text-medium);
}

.reviews-summary-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Rating Bar Rows */
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-bar-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--hg-text-dark);
    min-width: 30px;
}

.rating-bar-track {
    flex: 1;
    height: 10px;
    background: var(--hg-border);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--hg-gold);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.rating-bar-percent {
    font-size: 14px;
    color: var(--hg-text-medium);
    min-width: 40px;
    text-align: right;
}

/* ===============================
   Vertical Review List
=============================== */
.reviews-list-vertical {
    margin-bottom: 30px;
}

.review-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--hg-border-light);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.review-author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--hg-text-dark);
}

.review-verified-badge {
    font-size: 13px;
    color: var(--hg-text-light);
    font-style: italic;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    font-size: 16px;
}

.review-stars .star.filled {
    color: var(--hg-gold);
}

.review-stars .star.empty {
    color: var(--hg-border);
}

.review-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hg-text-medium);
    margin: 0;
    font-style: italic;
}

/* Load More Button */
.reviews-load-more {
    text-align: center;
    margin-top: 25px;
}

.btn-load-more {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--hg-primary);
    border: 2px solid var(--hg-primary);
    border-radius: var(--hg-radius-pill);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hg-transition);
}

.btn-load-more:hover {
    background: var(--hg-primary);
    color: var(--hg-white);
}

/* No Reviews */
.woocommerce-noreviews {
    text-align: center;
    padding: 50px 30px;
    background: var(--hg-cream);
    border-radius: var(--hg-radius-md);
    font-size: 15px;
    color: var(--hg-text-medium);
}

/* ===============================
   Review Form
=============================== */
.review-form-wrapper,
#review_form_wrapper {
    background: var(--hg-cream);
    padding: 30px;
    border-radius: var(--hg-radius-md);
    margin-top: 30px;
}

#review_form .comment-reply-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--hg-primary);
    margin: 0 0 25px 0;
}

/* Form Labels */
#review_form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hg-text-dark);
    margin-bottom: 8px;
}

#review_form label .required {
    color: #dc3545;
    margin-left: 2px;
}

/* Form Inputs */
#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea,
#review_form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--hg-border);
    border-radius: var(--hg-radius-sm);
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--hg-text-dark);
    background: var(--hg-white);
    transition: var(--hg-transition);
    margin-bottom: 20px;
    box-sizing: border-box;
}

#review_form input:focus,
#review_form textarea:focus,
#review_form select:focus {
    outline: none;
    border-color: var(--hg-primary);
    box-shadow: 0 0 0 4px rgba(26, 93, 58, 0.1);
}

#review_form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Rating Selection */
.comment-form-rating {
    margin-bottom: 20px;
}

/* Hide default rating dropdown */
#review_form #rating {
    display: none !important;
}

/* Interactive Star Rating (JS Generated) */
.stars-interactive {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.stars-interactive .star {
    font-size: 32px;
    color: var(--hg-border);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.stars-interactive .star:hover,
.stars-interactive .star.hover {
    color: var(--hg-gold-light);
    transform: scale(1.1);
}

.stars-interactive .star.active {
    color: var(--hg-gold);
}

/* Submit Button */
#review_form .submit,
#review_form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hg-primary);
    color: var(--hg-white) !important;
    padding: 16px 40px;
    border: none;
    border-radius: var(--hg-radius-pill);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: var(--hg-transition);
}

#review_form .submit:hover,
#review_form input[type="submit"]:hover {
    background: var(--hg-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--hg-shadow);
}

/* Login Messages */
.must-log-in,
.woocommerce-verification-required {
    text-align: center;
    padding: 25px;
    background: var(--hg-cream);
    border-radius: var(--hg-radius-sm);
    font-size: 14px;
    color: var(--hg-text-medium);
    margin-top: 20px;
}

.must-log-in a,
.woocommerce-verification-required a {
    color: var(--hg-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ===============================
   Mobile Responsive
=============================== */
@media screen and (max-width: 768px) {

    /* Tabs */
    .woocommerce-tabs ul.tabs,
    .woocommerce-tabs .wc-tabs {
        padding: 20px;
        gap: 10px;
        justify-content: center;
    }

    .woocommerce-tabs ul.tabs li a,
    .woocommerce-tabs .wc-tabs li a {
        padding: 12px 20px;
        font-size: 13px;
    }

    .woocommerce-tabs .woocommerce-Tabs-panel,
    .woocommerce-tabs .panel {
        padding: 25px 20px;
    }

    /* Reviews Summary */
    .reviews-summary-box {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }

    .reviews-summary-left {
        min-width: auto;
    }

    .reviews-average-score {
        font-size: 40px;
    }

    /* Review List */
    .review-item {
        padding: 20px 0;
    }

    .review-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .review-stars {
        order: -1;
    }

    /* Review Form */
    .review-form-wrapper,
    #review_form_wrapper {
        padding: 25px 20px;
    }

    #review_form input[type="text"],
    #review_form input[type="email"],
    #review_form textarea,
    #review_form select {
        padding: 12px 14px;
        font-size: 16px;
    }

    #review_form .submit,
    #review_form input[type="submit"] {
        width: 100%;
        padding: 14px 24px;
    }

    .stars-interactive .star {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {

    .woocommerce-tabs ul.tabs,
    .woocommerce-tabs .wc-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .woocommerce-tabs ul.tabs li a,
    .woocommerce-tabs .wc-tabs li a {
        display: block;
        text-align: center;
        padding: 14px 20px;
    }

    .reviews-title {
        font-size: 24px;
    }

    .review-form-wrapper,
    #review_form_wrapper {
        padding: 20px 15px;
    }
}


/* ================================
   HIMALAYAN GOLD – CAUTION SECTION
   FULLY ISOLATED STYLES
================================ */

/* Section background */
.hg-caution-section {
    background: #f7f9f5;
}

/* Custom wrapper (NOT using .container) */
.hg-caution-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.hg-caution-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a7a7a;
    margin-bottom: 8px;
}

.hg-caution-title {
    margin-bottom: 12px;
}

.hg-caution-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* Card */
.hg-caution-card {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 18px;
    padding: 48px 56px;
    border: 1px solid rgba(184, 151, 90, 0.25);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* UL reset – ONLY here */
.hg-caution-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

/* LI – bulletproof vertical layout */
.hg-caution-list>li {
    display: block;
    width: 100%;
    position: relative;
    padding-left: 44px;
    margin-bottom: 22px;
    line-height: 1.75;
    color: #2d2d2d;
}

/* Icon */
.hg-caution-list>li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(184, 151, 90, 0.18);
    color: #b8975a;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hg-caution-card {
        padding: 32px 24px;
    }

    .hg-caution-list>li {
        padding-left: 38px;
        font-size: 15px;
    }
}


/* ================================
   THANK YOU PAGE – SAFE CSS
   Scope: Only WooCommerce Order Page
================================ */

/* Main container spacing */
.woocommerce-order {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Order overview (Order number, date, total etc.) */
.woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 12px;
}

.woocommerce-order-overview li {
    list-style: none;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.woocommerce-order-overview li strong {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: #111;
}

/* Success message */
.woocommerce-thankyou-order-received {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2e7d32;
    text-align: center;
}

/* ================================
   ORDER DETAILS CARD
================================ */
.hg-order-details-card {
    margin-top: 30px;
}

.hg-order-details-card .woocommerce-order-details {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.woocommerce-order-details__title {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Order table */
.hg-order-table-wrap {
    overflow-x: auto;
}

.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 14px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.woocommerce-table--order-details thead th {
    background: #f4f6f8;
    font-weight: 600;
}

.woocommerce-table--order-details tfoot th {
    font-weight: 600;
}

/* Action buttons */
.order-actions-button {
    margin-right: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
}

/* ================================
   CUSTOMER DETAILS CARD
================================ */
.hg-customer-details-card {
    margin-top: 30px;
}

.hg-customer-details-card .woocommerce-customer-details {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.woocommerce-column__title {
    font-size: 18px;
    margin-bottom: 12px;
}

.woocommerce-customer-details address {
    font-style: normal;
    line-height: 1.7;
    font-size: 14px;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 8px;
    font-weight: 500;
}

/* ================================
   FAILED ORDER MESSAGE
================================ */
.woocommerce-notice--error {
    background: #fdecea;
    border-left: 5px solid #e53935;
    padding: 15px;
    border-radius: 8px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .woocommerce-order-overview {
        grid-template-columns: 1fr;
    }

    .woocommerce-order-details__title,
    .woocommerce-column__title {
        font-size: 18px;
    }
}




/* Container for addresses */
.woocommerce-columns--addresses {
    display: flex;
    gap: 20px;
    /* space between billing and shipping */
    flex-wrap: wrap;
    /* responsive support */
    margin-top: 25px;
}

/* Each address card */
.woocommerce-column {
    flex: 1;
    /* equal width */
    min-width: 250px;
    /* prevent too small on mobile */
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* Titles of each column */
.woocommerce-column__title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Address details */
.woocommerce-column address {
    font-style: normal;
    line-height: 1.5;
    color: #333;
}

/* Phone and email */
.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 5px;
    font-weight: 500;
}

/* Responsive: on smaller screens, stack vertically */
@media (max-width: 768px) {
    .woocommerce-columns--addresses {
        flex-direction: column;
    }
}



/* ===============================
   FORCE HIDE RATING TEXT (FINAL FIX)
=============================== */

/* Hide all text inside star rating links */
#review_form p.stars a {
    font-size: 0 !important;
    color: transparent !important;
}

/* Restore star icon only */
#review_form p.stars a::before {
    content: "★";
    font-size: 28px;
    color: #ffb400;
}

/* Hover state */
#review_form p.stars a:hover::before,
#review_form p.stars a.active::before {
    color: #ffb400;
}


/* REMOVE WooCommerce default star rating line completely */
#review_form p.stars {
    display: none !important;
}




/* ==============================
   PRODUCT SHOWCASE – BASE STYLES
================================ */

.product-showcase {
    padding: 6rem 0;
}

.product-showcase__container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-showcase__image {
    flex: 1;
}

.product-showcase__img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.product-showcase__content {
    flex: 1;
    overflow: visible;
    /* 🔥 IMPORTANT */
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.product-showcase__content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

/* ==============================
   FEATURE LIST (FIXED)
================================ */

.product-showcase__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    overflow: visible;
    /* 🔥 */
}

.product-showcase__item {
    display: grid;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;

    overflow: visible;
    /* 🔥 TEXT CUT FIX */
    height: auto;
    max-height: none;
}

.product-showcase__icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.15rem;
}

.product-showcase__icon svg {
    width: 24px;
    height: 24px;
}

.product-showcase__item-content {
    overflow: visible;
    /* 🔥 MOST IMPORTANT FIX */
    height: auto;
    max-height: none;
}

.product-showcase__item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.product-showcase__item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* ==============================
   HIGHLIGHT BOX
================================ */

.product-showcase__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    overflow: visible;
}

.product-showcase__highlight-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gold);
}


.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: #f4c76b; /* golden shade */
}

.footer-social a:hover {
    background: #f4c76b;
    border-color: #f4c76b;
}

.footer-social a:hover svg {
    fill: #0b2b1e;
}

.footer-social-wrapper {
    text-align: center;
}

.footer-social-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}


.glod-header{
    color:var(--gold-accent);
    text-shadow:
        0 0 2px rgba(255, 215, 120, 0.25),
        0 1px 3px rgba(255, 215, 120, 0.15);
        margin-left: 20px;
        
}

/* ==============================
   MOBILE RESPONSIVE (CRITICAL FIXES)
================================ */

@media (max-width: 576px) {

    .product-showcase {
        padding: 3rem 0;
    }

    .product-showcase__container {
        flex-direction: column;
        gap: 2rem;
    }

    .product-showcase .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* 🔥 Animation overflow bug fix */
    .fade-in-left,
    .fade-in-right {
        transform: none !important;
        opacity: 1 !important;
        overflow: visible !important;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .product-showcase__content p {
        font-size: 0.95rem;
    }

    .product-showcase__item h4 {
        font-size: 1rem;
    }

    .product-showcase__item p {
        font-size: 0.9rem;
    }

    .product-showcase__highlight {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    .product-showcase__container {
        flex-direction: column !important;
        gap: 2rem;
        width: 100%;
    }

    .product-showcase__image,
    .product-showcase__content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-showcase__image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .product-showcase__content p,
    .product-showcase__item p,
    .product-showcase__item h4 {
        word-wrap: break-word;
        word-break: break-word;
    }
}

.footer__logo_hg img {
    max-width: 100px;
    height: auto;
}


/* Mobile friendly */
@media (max-width: 768px) {
    .more-reviews-btn {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    .hg-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
    }

    .hg-col {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hg-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }

}

@media (max-width: 768px) {

    /* Contact container ko stack kar do */
    .contact-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        width: 100%;
    }

    /* Contact info aur form full width */
    .contact-info,
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Email / text wrap properly */
    .contact-card p {
        word-wrap: break-word;
        /* long email break kare line me */
        word-break: break-all;
        /* extra long text wrap */
    }

    /* Optional: form and headings adjust */
    .contact-form,
    .contact-info {
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {

    /* Steps container stack */
    .how-to-use__steps-list {
        display: block !important;
        padding-left: 1rem;
        /* optional padding for mobile */
    }

    /* Each step full width */
    .step-item {
        display: flex !important;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100% !important;
        margin-bottom: 1rem;
    }

    /* Step number */
    .step-item__number {
        flex-shrink: 0;
        min-width: 24px;
        /* number box width */
        font-weight: bold;
    }

    /* Step content wrap */
    .step-item__content {
        flex: 1 !important;
        width: 100% !important;
    }

    /* Paragraph text wrap */
    .step-item__content p {
        word-wrap: break-word;
        word-break: break-word;
        margin: 0;
        /* optional for spacing */
    }
}


@media (max-width: 768px) {

    /* Stack the two columns: image first, text second */
    .section-padding>.container>div {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
    }

    /* Move image div first */
    .fade-in-left {
        order: 2;
        /* text goes second */
    }

    .fade-in-right {
        order: 1;
        /* image goes first */
    }

    /* Full width for both */
    .fade-in-left,
    .fade-in-right {
        width: 100% !important;
    }

    /* Image styling */
    .fade-in-right img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: var(--radius-2xl);
        /* keep desktop style */
    }

    /* Text adjustments */
    .fade-in-left p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    /* Section padding for mobile */
    .section-padding {
        padding: 3rem 1rem;
    }
}


/* Feature Badges - Professional white cards with shadow */
.hero__feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--ease-default);
}

.hero__feature-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hero__feature-badge-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero__feature-badge-text {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    white-space: nowrap;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero__stats {
        gap: var(--space-md);
    }

    .hero__feature-badge {
        padding: var(--space-sm) var(--space-md);
        flex: 1;
        min-width: 0;
    }

    .hero__feature-badge-text {
        font-size: var(--text-xs);
    }

    .hero__feature-badge-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero__feature-badge-text {
        white-space: normal;
        text-align: center;
    }
}


/* ========================================
   HERO TAGLINE - Brand Statement (WORKING FINE)
   ======================================== */
.hero__tagline {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--gold-accent);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

/* ========================================
   FEATURE BADGES (WORKING FINE)
   ======================================== */
.hero__feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-default);
}

.hero__feature-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero__feature-badge-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero__feature-badge-text {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-dark);
    white-space: nowrap;
}

/* ========================================
   IMAGE QUALITY BADGES - COMPACT & OPTIMIZED
   ======================================== */

/* Base compact sizing for all corner badges */
.hero__badge--top-right,
.hero__badge--top-left,
.hero__badge--bottom-left,
.hero__badge--bottom-right {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    z-index: 10;
    transition: all var(--duration-normal) var(--ease-default);
}

/* Hover effect for badges */
.hero__badge--top-right:hover,
.hero__badge--top-left:hover,
.hero__badge--bottom-left:hover,
.hero__badge--bottom-right:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Compact icon sizing for quality badges */
.hero__badge--top-right .hero__badge-icon,
.hero__badge--top-left .hero__badge-icon,
.hero__badge--bottom-left .hero__badge-icon,
.hero__badge--bottom-right .hero__badge-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Compact text sizing */
.hero__badge--top-right .hero__badge-text,
.hero__badge--top-left .hero__badge-text,
.hero__badge--bottom-left .hero__badge-text,
.hero__badge--bottom-right .hero__badge-text {
    font-size: 13px;
    font-weight: var(--font-semibold);
    line-height: 1.2;
}

/* Compact label sizing */
.hero__badge--top-right .hero__badge-label,
.hero__badge--top-left .hero__badge-label,
.hero__badge--bottom-left .hero__badge-label,
.hero__badge--bottom-right .hero__badge-label {
    font-size: 10px;
    color: var(--text-light);
    line-height: 1.2;
}

/* Specific corner positions - PROPER corners with adequate spacing
   NOTE: We must unset inherited 'top' and 'right' from base .hero__badge class
   to prevent stretching */
.hero__badge--top-right {
    top: 15px;
    right: 15px;
    bottom: auto;
    left: auto;
}

.hero__badge--top-left {
    top: 15px;
    left: 15px;
    bottom: auto;
    right: auto;
    /* Fix horizontal stretching */
}

.hero__badge--bottom-left {
    bottom: 15px;
    left: 15px;
    top: auto;
    /* Fix vertical stretching */
    right: auto;
    /* Fix horizontal stretching */
}

.hero__badge--bottom-right {
    bottom: 15px;
    right: 15px;
    top: auto;
    /* Fix vertical stretching */
    left: auto;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__tagline {
        font-size: var(--text-xl);
        text-align: center;
    }

    /* Slightly adjust badge positions on tablet */
    .hero__badge--top-left,
    .hero__badge--bottom-left {
        left: 12px;
    }

    .hero__badge--top-right,
    .hero__badge--bottom-right {
        right: 12px;
    }
}

@media (max-width: 768px) {
    .hero__tagline {
        font-size: var(--text-lg);
    }

    .hero__stats {
        gap: var(--space-md);
    }

    .hero__feature-badge {
        padding: var(--space-sm) var(--space-md);
        flex: 1;
    }

    .hero__feature-badge-icon {
        width: 24px;
        height: 24px;
    }

    .hero__feature-badge-text {
        font-size: var(--text-xs);
    }

    /* Further compact quality badges on mobile */
    .hero__badge--top-right,
    .hero__badge--top-left,
    .hero__badge--bottom-left,
    .hero__badge--bottom-right {
        padding: 6px 10px;
        gap: 5px;
    }

    .hero__badge--top-right .hero__badge-icon,
    .hero__badge--top-left .hero__badge-icon,
    .hero__badge--bottom-left .hero__badge-icon,
    .hero__badge--bottom-right .hero__badge-icon {
        width: 18px;
        height: 18px;
    }

    .hero__badge--top-right .hero__badge-text,
    .hero__badge--top-left .hero__badge-text,
    .hero__badge--bottom-left .hero__badge-text,
    .hero__badge--bottom-right .hero__badge-text {
        font-size: 11px;
    }

    .hero__badge--top-right .hero__badge-label,
    .hero__badge--top-left .hero__badge-label,
    .hero__badge--bottom-left .hero__badge-label,
    .hero__badge--bottom-right .hero__badge-label {
        font-size: 9px;
    }

    /* Adjust positions for mobile */
    .hero__badge--top-left,
    .hero__badge--top-right {
        top: 10px;
    }

    .hero__badge--bottom-left,
    .hero__badge--bottom-right {
        bottom: 10px;
    }

    .hero__badge--top-left,
    .hero__badge--bottom-left {
        left: 10px;
    }

    .hero__badge--top-right,
    .hero__badge--bottom-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero__tagline {
        font-size: var(--text-base);
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero__feature-badge {
        width: 100%;
        justify-content: center;
    }

    /* Extra compact for very small screens */
    .hero__badge--top-right,
    .hero__badge--top-left,
    .hero__badge--bottom-left,
    .hero__badge--bottom-right {
        padding: 5px 8px;
        gap: 4px;
    }

    .hero__badge--top-right .hero__badge-icon,
    .hero__badge--top-left .hero__badge-icon,
    .hero__badge--bottom-left .hero__badge-icon,
    .hero__badge--bottom-right .hero__badge-icon {
        width: 16px;
        height: 16px;
    }

    .hero__badge--top-right .hero__badge-text,
    .hero__badge--top-left .hero__badge-text,
    .hero__badge--bottom-left .hero__badge-text,
    .hero__badge--bottom-right .hero__badge-text {
        font-size: 10px;
    }

    .hero__badge--top-right .hero__badge-label,
    .hero__badge--top-left .hero__badge-label,
    .hero__badge--bottom-left .hero__badge-label,
    .hero__badge--bottom-right .hero__badge-label {
        font-size: 8px;
    }
}
.product-info__price {
    display: none;
}


  /* Section Container NOTE: We use 'section.reviews' to differentiate from WooCommerce's '#reviews' div */ section.reviews#reviews { padding: 60px 0; background: #F8F5F0; /* Cream background */ overflow: hidden; /* Essential for marquee */ position: relative; font-family: 'Inter', sans-serif; } /* Marquee Wrapper */ section.reviews .hg-marquee-wrapper { display: flex; overflow: hidden; user-select: none; gap: 30px; width: 100%; /* Gradient mask for smooth fade on edges */ mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); } /* Moving Track */ section.reviews .hg-marquee-track { display: flex; gap: 30px; min-width: 100%; animation: hg-scroll 45s linear infinite; } /* Pause on hover */ section.reviews .hg-marquee-wrapper:hover .hg-marquee-track { animation-play-state: paused; } /* Review Card Styles */ section.reviews .hg-review-card { flex: 0 0 350px; /* Fixed width */ background: #ffffff; border: 1px solid #e0e0e0; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.3s ease, box-shadow 0.3s ease; } section.reviews .hg-review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: #C9A962; /* Gold border on hover */ } /* Card Header */ section.reviews .hg-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; } section.reviews .hg-stars { color: #ffb400; /* Standard gold star color */ font-size: 18px; letter-spacing: 2px; } section.reviews .hg-verified-badge { font-size: 11px; text-transform: uppercase; color: #1A5D3A; /* Primary Green */ background: rgba(26, 93, 58, 0.08); /* Light Green bg */ padding: 4px 10px; border-radius: 20px; font-weight: 700; } /* Review Text */ section.reviews .hg-review-text { font-size: 15px; line-height: 1.6; color: #333333; font-style: italic; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; } /* Reviewer Info */ section.reviews .hg-reviewer-info { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f0f0; padding-top: 15px; } section.reviews .hg-avatar { width: 36px; height: 36px; background: #1A5D3A; /* Primary Green */ color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; } section.reviews .hg-reviewer-details { display: flex; flex-direction: column; } section.reviews .hg-reviewer-name { font-weight: 700; color: #1A5D3A; font-size: 14px; line-height: 1.2; } section.reviews .hg-review-date { display: block; font-size: 11px; color: #888888; margin-top: 2px; } /* Keyframes */ @keyframes hg-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - 30px)); } } /* Mobile Responsiveness */ @media (max-width: 768px) { section.reviews .hg-review-card { flex: 0 0 280px; /* Smaller cards on phones */ padding: 20px; } section.reviews#reviews { padding: 40px 0; } }
  
 

   
  