/* ===============================
   ROOT VARIABLES
================================= */
:root {
    --primary: #1e633f;
    --primary-dark: #0f4028;
    --accent: #4a8c59;
    --light: #f8f9fa;
    --dark: #0d1f17;
    --gray: #6c757d;

    --shadow-sm: 0 6px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
}

/* ===============================
   BASE STYLES
================================= */

/* ===============================
   FIXED HEADER OFFSET
================================= */
body {
    padding-top: 100px; /* Adjust after checking actual navbar height */
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #212529;
    background-color: var(--light);
    line-height: 1.65;
}

/* ===============================
   NAVBAR
================================= */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 1.4rem 0;
    transition: all 0.4s ease;
}

/* =========================================
   FIX QUANTITY + BUTTON ALIGNMENT (FINAL)
========================================= */

/* make Woo form flex */
.product-cart form.cart {
    display: flex !important;
    align-items: center;
    gap: 16px;
    margin: 0;
}

/* remove Woo default spacing */
.product-cart form.cart .quantity {
    margin: 0 !important;
    display: flex;
    align-items: center;
}

/* fix input box */
.product-cart form.cart .quantity input.qty {
    width: 65px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 600;
    padding: 0;
}

/* make button same height */
.product-cart form.cart .button {
    height: 50px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* remove weird vertical offset */
.product-cart form.cart .single_add_to_cart_button {
    margin: 0 !important;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

/* ===============================
   WORDPRESS NAV MENU LINKS
================================= */

.navbar-nav > li > a {

    font-weight: 600;
    color: #2d2d2d;
    margin: 0 1.1rem;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;

}

/* underline animation */

.navbar-nav > li > a::after {

    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--accent);
    transition: width 0.35s ease;

}

.navbar-nav > li > a:hover::after,
.navbar-nav .current-menu-item > a::after {

    width: 100%;

}

/* ===============================
   BUTTON SYSTEM
================================= */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(30, 99, 63, 0.22);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30, 99, 63, 0.35);
}



/* ===============================
   FOOTER
================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.9);
    padding: 5rem 0 2.5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-text {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-form input {
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
}

.footer-social a {
    color: rgba(255,255,255,0.85);
    font-size: 1.3rem;
	text-decoration:none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 3rem 0 1.5rem;
}

.footer-bottom {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===============================
   HERO SECTION
================================= */

.section-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.section-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85);
}

/* =========================================
   SECTION BASE SYSTEM
========================================= */

.section-block {
    padding: 6rem 0;
}

.section-title-lg {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
	margin-bottom: 2rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
	margin-bottom: 2rem;
}

.section-lead {
    max-width: 800px;
    margin: 0 auto 2rem;
}


/* =========================================
   INSPIRE (3 COLUMN GRADIENT SECTION)
========================================= */

.section-inspire {
    background: var(--primary);
    color: white;
    padding: 5rem 0;
}

.inspire-title {
    font-size: 2rem;
    font-weight: 800;
}

.inspire-sub {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* =========================================
   CAROUSEL / SLIDER
========================================= */

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.slide {
    min-width: calc(33.333% - 20px);
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

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

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 15px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    transform: scale(1.1);
}


/* =========================================
   CTA FORM
========================================= */

.discover-form {
    max-width: 600px;
}

.discover-form .form-control {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
}

.discover-form .btn {
    border-radius: 50px;
}


/* =========================================
   SHOP SECTION
========================================= */

.product-card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 300px;
    object-fit: cover;
    padding:1rem;
}


/* =========================================
   PROFESSIONAL SECTION
========================================= */

.professional-section {
    background: linear-gradient(
        135deg,
        rgba(30,99,63,0.05),
        rgba(30,99,63,0.12)
    );
}

.professional-section h3 {
    font-size: 2rem;
    font-weight: 700;
}

.professional-section p {
    max-width: 650px;
    margin: 0 auto 1.5rem;
}


/* =========================================
   ARTISTS SECTION
========================================= */

/* ARTIST SECTION UPGRADE */

.artist-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* subtle hover effect */
.artist-img:hover {
    transform: scale(1.05);
}

.artist-card {
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.artist-card:hover {
    background: #f8faf9;
}


/* =========================================
   APP SECTION BUTTONS
========================================= */

#app .btn {
    border-radius: 50px;
}


/* =========================================
   FAQ SECTION
========================================= */

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.accordion-button {
    background-color: #ffffff;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #f8faf9;
    padding: 1.5rem;
    line-height: 1.7;
}

/* =========================================
   SECTION SEPARATORS (GREEN STRIPS)
========================================= */

.section-separator {
    background: var(--primary);
    padding: 3rem 0;
    color: #ffffff;
}

.separator-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .section-title-lg {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    .section-block {
        padding: 4rem 0;
    }

    .section-title-lg {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-lead,
    .lead {
        font-size: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-track {
        flex-direction: column;
        transform: none !important;
    }

    .slide {
        min-width: 100%;
        margin-bottom: 2rem;
    }

    .slider-btn {
        display: none;
    }

    .discover-form {
        max-width: 90%;
    }

    .discover-form .btn {
        width: 100%;
    }

    .artist-img {
        height: 280px;
    }
}

/* ===============================
   MOBILE ADAPTATION
================================= */



@media (max-width: 992px) {
    .site-footer {
        text-align: center;
    }
}


/* ===============================
   HERO MOBILE (Original behavior)
================================ */

@media (max-width: 768px) {

    /* Hide video */
    .hero-video {
        display: none;
    }

    /* Hide overlay */
    .hero-overlay {
        display: none;
    }

    /* Hide hero text */
    .hero-content {
        display: none;
    }

    /* Replace hero with static image */
    .section-hero {
        background: url('../images/newhero.jpeg') center center / cover no-repeat;
    }
    
 .section-hero {
        height: 35vh;
        min-height: 150px;
    }

}

/* ===============================
   HERO MODAL
================================ */

.hero-modal .modal-dialog {
    max-width: 620px;
}

.hero-modal .modal-content {
    border-radius: 18px;
    border: none;
    padding: 40px;
    position: relative;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.modal-text {
    color: #555;
    font-size: 1rem;
}

.modal-note {
    font-size: 0.85rem;
    color: #777;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    border: none;
    background: none;
    cursor: pointer;
}

.modal-submit {
    padding: 12px 32px;
    border-radius: 50px;
}


/* ===============================
   SINGLE PRODUCT PAGE
================================= */

/* ===============================
   PRODUCT PAGE (PREMIUM STYLE)
================================= */

.single-product-custom {
    padding: 6rem 0;
}

/* LEFT SIDE */

.product-main-image {
    width: 100%;
    height: 420px; /* control height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faf9;
    border-radius: 16px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ FIX */
}

.product-thumbnails {
    margin-top: 10px;
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.thumb-img:hover,
.thumb-img.active {
    opacity: 1;
    transform: scale(1.05);
}

.product-description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #444;
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-img:hover {
    transform: scale(1.05);
}

/* RIGHT SIDE */

.product-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}


/* CTA BUTTON */

.product-cart .button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.product-cart .button:hover {
    transform: translateY(-3px);
}

/* REMOVE WOOCOMMERCE JUNK */

.woocommerce-tabs,
.related.products,
.product_meta {
    display: none;
}

/* ===============================
   CART PAGE LAYOUT
================================= */

.woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* ===============================
   CART TABLE
================================= */

.woocommerce table.shop_table {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.woocommerce table.shop_table th {
    background: #f8faf9;
    font-weight: 700;
    padding: 1rem;
}

.woocommerce table.shop_table td {
    padding: 1.2rem;
    vertical-align: middle;
}

/* ===============================
   PRODUCT IMAGE
================================= */

.woocommerce-cart table.cart img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

/* ===============================
   BUTTONS (THEME STYLE)
================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 60px;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 99, 63, 0.2);
}

/* ===============================
   CART TOTALS BOX
================================= */

.cart_totals {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.cart_totals h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* ===============================
   SPACING
================================= */

.cart-collaterals {
    margin-top: 3rem;
}

/* ===============================
   CLEANUP (REMOVE CLUTTER)
================================= */

.woocommerce .cart-collaterals .cross-sells {
    display: none;
}

/* Optional: remove coupon if not needed */
/*
.woocommerce-cart .coupon {
    display: none;
}
*/

/* ===============================
   MOBILE OPTIMIZATION
================================= */

@media (max-width: 768px) {

    .woocommerce-cart .woocommerce {
        padding: 2rem 1rem;
    }

    .woocommerce table.shop_table td {
        padding: 0.8rem;
    }

    .cart_totals {
        margin-top: 2rem;
    }
}



/* =========================================
   PRODUCT PAGE UPGRADE (ADD BELOW EXISTING CSS)
========================================= */

/* IMAGE FRAME UPGRADE */
.product-main-image {
    background: linear-gradient(145deg, #ffffff, #f1f4f2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    height: auto;
}

.product-main-image img {
    border-radius: 12px;
    object-fit: contain;
    transition: 0.4s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
}

/* THUMBNAILS */
.product-thumbnails {
    margin-top: 15px;
}

.thumb-img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    opacity: 0.6;
    border: 2px solid transparent;
}

.thumb-img.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TITLE + PRICE */
.product-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.product-price del {
    color: #999;
    font-size: 1.1rem;
    margin-right: 10px;
}

.product-price ins {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
}

/* DESCRIPTION */
.product-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 500px;
}

/* CTA AREA */
.product-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-cart input.qty {
    width: 60px;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 600;
}

/* BUTTON */
.product-cart .button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(30, 99, 63, 0.25);
    transition: all 0.35s ease;
}

.product-cart .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(30, 99, 63, 0.35);
}

/* SPACING FIX */

/* TOP ALIGN CONTENT */
.single-product-custom .row {
    align-items: flex-start;
}



/* FIX CART VERTICAL SPACING */
.wc-block-cart {
    margin: 3rem;
    padding: 3rem;
}

/* make links look premium, not default */
.wc-block-cart a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

/* subtle hover (not cheap underline) */
.wc-block-cart a:hover {
    color: var(--primary);
    opacity: 0.85;
}

.wc-block-cart__submit-button {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    border-radius: 50px !important;
    padding: 16px !important;
}

/* fix inner text */
.wc-block-components-button__text {
    color: #fff !important;
    font-weight: 700;
}

/* subtle hover */
.wc-block-cart__submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 99, 63, 0.25);
}

.wc-block-cart__sidebar {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ADD VERTICAL BREATHING SPACE */
.wc-block-cart {

    padding: 3rem 0;
}

/* FIX IMAGE SIZE (not too big) */
.product-main-image {
    height: 420px;
    padding: 20px;
}

.product-main-image img {
    max-height: 100%;
    width: auto;
}

.product-title {
    margin-top: 10px;
}

.product-description {
    margin-top: 20px;
}


/* =========================================
   CHECKOUT PAGE – PREMIUM CLEAN STYLE
========================================= */

/* MAIN WRAPPER */
.woocommerce-checkout .woocommerce {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 20px;
}

/* TWO COLUMN LAYOUT */
.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* LEFT + RIGHT FULL WIDTH */
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 100%;
}

/* FORM BOX (LEFT SIDE) */
.woocommerce-checkout form.checkout {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* SECTION TITLES */
.woocommerce-checkout h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* INPUT FIELDS */
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 12px;
}

/* TEXTAREA FIX */
.woocommerce-checkout textarea {
    height: auto;
}

/* FIELD SPACING */
.woocommerce-checkout .form-row {
    margin-bottom: 15px;
}

/* ORDER SUMMARY (RIGHT SIDE) */
#order_review {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* STICKY SUMMARY */
.woocommerce-checkout #order_review {
    position: sticky;
    top: 100px;
}

/* PRODUCT LIST */
.woocommerce-checkout .shop_table {
    border: none;
}

/* TOTAL ROW */
.woocommerce-checkout .order-total strong {
    font-size: 1.2rem;
}

/* PAYMENT BOX */
.woocommerce-checkout #payment {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

/* PLACE ORDER BUTTON */
.woocommerce-checkout button#place_order {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
}

/* REMOVE DEFAULT BORDERS */
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    border: none;
}

/* EXPRESS CHECKOUT (Stripe) */
.wc-stripe-express-checkout {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.wc-stripe-express-checkout {
    padding: 15px;
    border-radius: 12px;
}

.wc-stripe-express-checkout button {
    height: 45px !important;
    font-size: 0.9rem;
}

.woocommerce-checkout form.checkout > * {
    margin-bottom: 30px;
}

.woocommerce-checkout .col2-set {
    align-items: start;
}

#order_review {
    padding: 30px;
}

.woocommerce-checkout .wc_payment_method {
    border: none;
}

.woocommerce-checkout h3 {
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

/* =========================================
   THANK YOU PAGE – PREMIUM DESIGN
========================================= */

.thankyou-custom {
    max-width: 900px;
    margin: 4rem auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

/* SUCCESS MESSAGE */
.woocommerce-order p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ORDER DETAILS LIST */
.woocommerce-order ul.woocommerce-order-overview {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    margin: 20px 0;
    background: #f8faf9;
    border-radius: 12px;
}

/* EACH ITEM */
.woocommerce-order-overview li {
    flex: 1;
    min-width: 120px;
    font-size: 0.9rem;
}

/* HEADINGS */
.woocommerce-order h2 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

/* TABLE */
.woocommerce-order table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* CTA BUTTON (optional) */
.thankyou-cta {
    margin-top: 25px;
}

.thankyou-cta a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-order-overview {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.woocommerce-order-overview li {
    background: #f4f7f5;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.woocommerce-order table {
    border-collapse: separate;
    border-spacing: 0 12px;
}

.woocommerce-order table tr {
    background: #fafafa;
    border-radius: 12px;
}

.woocommerce-order table td,
.woocommerce-order table th {
    padding: 14px;
    border: none;
}

.woocommerce-order .order-total strong {
    font-size: 1.4rem;
    color: var(--primary);
}

.woocommerce-order a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {

    /* STACK CART AREA PROPERLY */
    .product-cart form.cart {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    /* QUANTITY FULL WIDTH */
    .product-cart .quantity {
        width: 100%;
    }

    .product-cart .quantity input {
        width: 100%;
        height: 45px;
        text-align: center;
    }

    /* FIX ADD TO CART BUTTON */
    .product-cart .single_add_to_cart_button {
        width: 100%;
        height: 48px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    /* FIX STRIPE BUTTONS */
    .product-cart .wc-stripe-express-checkout,
    .product-cart .wc-stripe-express-checkout button {
        width: 100% !important;
    }

    /* TEXT SIZES */
    .product-title {
        margin-top: 15px;
        font-size: 1.4rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    /* THUMBNAILS SCROLL */
    .product-thumbnails {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .thumb-img {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    /* MAIN IMAGE */
    .product-main-image img {
        max-height: 300px;
        object-fit: contain;
        width: 100%;
    }

}

