/*
 Theme Name:   Rehub Child Mehndi
 Theme URI:    https://pmehndiart.com/
 Description:  Professional Premium Ecommerce Child Theme for Mehndi Art & Supplies.
 Author:       Antigravity
 Template:     rehub-theme
 Version:      2.0.0
 Text Domain:  rehub-child-mehndi
*/

/* --- DESIGN TOKENS --- */
:root {
    --luxury-primary: #4E342E;
    /* Deep Earth Brown */
    --luxury-secondary: #C5A059;
    /* Soft Gold */
    --luxury-accent: #8E6D4D;
    /* Earthy Pro Copper */
    --luxury-tan: #FAF7F2;
    /* Creamy Beige */
    --luxury-dark: #3D2B1F;
    /* Noir Brown */
    --luxury-cream: #FCFAF7;
    --luxury-text: #3D2B1F;
    --luxury-border: #E8E2D9;
    --luxury-shadow: 0 10px 30px rgba(78, 52, 46, 0.08);
    --luxury-shadow-hover: 0 20px 50px rgba(78, 52, 46, 0.15);
    --luxury-glass: rgba(252, 250, 247, 0.75);
    --luxury-glass-border: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(250, 247, 242, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- ANIMATIONS --- */
@keyframes luxuryFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes luxuryScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-luxury-up { animation: luxuryFadeUp 0.8s forwards ease-out; }
.animate-luxury-in { animation: luxuryScaleIn 0.8s forwards ease-out; }


/* --- BASE STYLES --- */
body {
    font-family: var(--font-body);
    color: var(--luxury-text);
    background-color: #fff;
    line-height: 1.7;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-accent);
    border-radius: 5px;
    border: 2px solid var(--luxury-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-primary);
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--luxury-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-weight: 900; }

.luxury-glass-card {
    background: var(--luxury-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--luxury-glass-border);
    box-shadow: var(--luxury-shadow);
}


.section-padding {
    padding: 80px 0;
}

.bg-soft-cream {
    background-color: var(--luxury-cream);
}

/* Legacy Header Removed */

/* Legacy Hero removed */

/* Legacy Grid & Testimonials removed */

/* FAQ Accordion Styling */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--luxury-border);
    padding: 25px 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 24px;
}

/* --- TRUST BAR --- */
.mehndi-trust-bar {
    background: #fff;
    box-shadow: var(--luxury-shadow);
    transform: translateY(-50%);
    z-index: 5;
    position: relative;
    border-radius: 8px;
    padding: 30px 40px;
}

.trust-grid {
    gap: 30px;
    justify-content: space-around;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 30px;
    color: var(--luxury-secondary);
}

.trust-text strong {
    display: block;
    font-size: 16px;
    color: var(--luxury-primary);
}

.trust-text span {
    font-size: 13px;
    color: #777;
}

/* Legacy Category Cards removed */

/* Legacy Comparison Table removed */

/* Legacy Directory Search removed */

/* Legacy Category Items removed */

/* --- PRODUCT GRID REFINEMENT --- */
.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all-premium {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--luxury-secondary);
    letter-spacing: 2px;
    font-size: 13px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--luxury-border);
}

.view-all-premium:hover {
    border-color: var(--luxury-secondary);
    color: var(--luxury-primary);
}

.woocommerce ul.products li.product {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid var(--luxury-border);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow);
    border-color: var(--luxury-secondary);
}

/* Legacy CTA Newsletter removed */

/* --- BLOG & FOOTER STYLES --- */
.blog-card-inner {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--luxury-shadow);
}

.blog-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.link-luxury {
    color: var(--luxury-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ==========================================================================
   PREMIUM GLOBAL HEADER V2
   ========================================================================== */

/* Top Authority Bar V2 */
.header-authority-v2 {
    background-color: var(--luxury-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.authority-flex-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.authority-trust-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.authority-badge-v2 {
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.authority-badge-v2 i {
    color: var(--luxury-secondary);
    margin-right: 5px;
}

.authority-sep-v2 {
    content: "|";
    color: rgba(255,255,255,0.3);
    margin: 0 15px;
}

.authority-support-v2 a {
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.authority-support-v2 a i {
    margin-right: 5px;
}

.authority-support-v2 a:hover {
    color: var(--luxury-secondary);
}

/* Main Header V2 */
.header-main-v2 {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--luxury-border);
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.sticky-header-v2.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: var(--luxury-shadow);
    animation: fadeInDown 0.5s ease-out;
}

.header-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation V2 */
.header-nav-left-v2, .header-nav-right-v2 {
    flex: 1;
}

.header-nav-left-v2 ul, .header-nav-right-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header-nav-left-v2 ul {
    justify-content: flex-end;
}

.header-nav-right-v2 ul {
    justify-content: flex-start;
}

.header-nav-left-v2 li, .header-nav-right-v2 li {
    margin: 0 20px;
}

.header-nav-left-v2 a, .header-nav-right-v2 a {
    color: var(--luxury-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav-left-v2 a::after, .header-nav-right-v2 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--luxury-secondary);
    transition: width 0.3s ease;
}

.header-nav-left-v2 a:hover::after, .header-nav-right-v2 a:hover::after {
    width: 100%;
}

.header-nav-left-v2 a:hover, .header-nav-right-v2 a:hover {
    color: var(--luxury-secondary);
}

/* Logo V2 */
.header-logo-v2 {
    flex: 0 0 auto;
    padding: 0 40px;
    text-align: center;
}

.header-logo-v2 img {
    max-height: 50px; /* Adjust based on client logo */
    width: auto;
}

.text-logo-v2 a {
    font-family: var(--font-heading);
    color: var(--luxury-primary);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
}

/* Header Utilities V2 */
.header-right-actions-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-utility-v2 {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 30px;
}

.header-icon-v2 {
    position: relative;
    cursor: pointer;
}

.header-icon-v2 i {
    font-size: 1.3rem;
    color: var(--luxury-primary);
    transition: color 0.3s ease;
}

.header-icon-v2:hover i {
    color: var(--luxury-secondary);
}

/* Cart Specific Styling */
.header-cart-v2 a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.cart-count-v2 {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--luxury-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    .tablet-only {
        display: block !important;
    }
    .header-utility-v2 {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .authority-flex-v2 {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .authority-support-v2 {
        display: none; /* Hide support on top bar mobile to save space */
    }
    .authority-sep-v2 {
        display: none;
    }
    .authority-trust-v2 {
        flex-direction: column;
        gap: 5px;
    }
    .header-logo-v2 {
        padding: 0;
    }
}

/* ==========================================================================
   PREMIUM GLOBAL FOOTER V2
   ========================================================================== */
.luxury-footer-v2 {
    background-color: var(--luxury-dark);
    color: var(--luxury-cream);
    font-family: var(--font-body);
}

/* Trust Strip (Top) */
.footer-trust-strip-v2 {
    background-color: var(--luxury-primary);
    padding: 35px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-strip-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge-item-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.trust-badge-item-v2 i {
    font-size: 2.2rem;
    color: var(--luxury-secondary);
}

.trust-text-v2 h5 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-text-v2 p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Columns Area */
.footer-main-area {
    padding: 80px 0 60px;
}

.footer-columns-v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-title-v2 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-title-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--luxury-secondary);
}

.footer-bio-v2 {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-v2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-v2 a:hover {
    background: var(--luxury-secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-nav-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-v2 li {
    margin-bottom: 15px;
}

.footer-nav-v2 a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}

.footer-nav-v2 a:hover {
    color: var(--luxury-secondary);
    transform: translateX(5px);
}

.footer-contact-v2 p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-v2 i {
    color: var(--luxury-secondary);
    font-size: 1.1rem;
}

/* Bottom Bar */
.footer-bottom-v2 {
    background-color: #1a1a1a;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-v2 {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-legal-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-legal-v2 a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.footer-legal-v2 a:hover {
    color: var(--luxury-secondary);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .trust-strip-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-columns-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .trust-strip-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .trust-badge-item-v2 {
        flex-direction: column;
        gap: 15px;
    }
    .footer-columns-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-title-v2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-v2 p {
        justify-content: center;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-legal-v2 ul {
        justify-content: center;
    }
}


/* Legacy post header removed */

.post-tags-luxury a {
    display: inline-block;
    padding: 6px 15px;
    background: #fff;
    border: 1px solid var(--luxury-border);
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--luxury-text);
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.post-tags-luxury a:hover {
    border-color: var(--luxury-secondary);
    color: var(--luxury-primary);
}

/* Author Box Enhancement */
.author_detail_box {
    background: #fff;
    border: 1px solid var(--luxury-border);
    border-radius: 12px;
    padding: 40px;
}

.author_detail_box .author_name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--luxury-primary);
}

/* Related Posts Enhancement */
.related-posts-luxury .related_post_item {
    margin-bottom: 30px;
}

/* --- MAGAZINE STYLE BLOG ARCHIVE --- */
.main-side-magazine {
    width: 68%;
}

.sidebar-magazine {
    width: 32%;
    padding-left: 40px;
}

.heading-divider-left {
    width: 50px;
    height: 3px;
    background: var(--luxury-secondary);
    margin: 15px 0;
}

.magazine-title-large {
    font-size: 2.8rem;
    line-height: 1.2;
}

.magazine-title-small {
    font-size: 1.4rem;
    line-height: 1.3;
}

.magazine-card-item .magazine-thumb-small img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.magazine-card-inner {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.magazine-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow);
}

.magazine-thumb img {
    border-radius: 8px 8px 0 0;
}

/* Magazine Sidebar Widgets */
.sidebar-inner-luxury {
    position: sticky;
    top: 100px;
}

.widget-luxury-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--luxury-primary);
    position: relative;
    padding-bottom: 12px;
}

.widget-luxury-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--luxury-secondary);
}

.mini-prod-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.color-luxury-accent {
    color: var(--luxury-accent);
}

/* --- AUTHORITY HOMEPAGE STYLES --- */
.section-padding-large {
    padding: 120px 0;
}

.section-padding-small {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .section-padding-large {
        padding: 60px 0;
    }
}

.pinsu-authority-homepage {
    color: var(--luxury-text);
}

/* Typography */
.pro-heading-large {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--luxury-primary);
    font-weight: 700;
    line-height: 1.2;
}

.pro-heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--luxury-primary);
    font-weight: 700;
    line-height: 1.1;
}

.pro-para {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Buttons & Links */
.btn-pro-gold {
    background: var(--luxury-secondary);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-pro-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.btn-pro-outline {
    border: 2px solid var(--luxury-secondary);
    color: var(--luxury-secondary);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-pro-outline:hover {
    background: var(--luxury-secondary);
    color: #fff;
}

.btn-pro-dark {
    background: var(--luxury-primary);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.btn-pro-gold-small {
    background: var(--luxury-secondary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    display: inline-block;
}

.link-pro-simple {
    color: var(--luxury-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.link-pro-underline {
    color: var(--luxury-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--luxury-secondary);
    padding-bottom: 3px;
}

/* Grids */
.col_wrap_four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.col_wrap_three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {

    .col_wrap_four,
    .col_wrap_three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .col_wrap_four,
    .col_wrap_three {
        grid-template-columns: 1fr;
    }
}

/* Cards & Components */
.category-card {
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--luxury-shadow-hover);
}

.cat-thumb {
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover .cat-thumb {
    transform: scale(1.05);
}

.pro-guide-card {
    transition: all 0.3s ease;
}

.pro-guide-card:hover {
    transform: translateY(-5px);
}

/* Comparison Table */
.comparison-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--luxury-border);
    background: #fff;
}

.pro-table {
    width: 100%;
    border-collapse: collapse;
}

.pro-table th {
    background: var(--luxury-primary);
    color: #fff;
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pro-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--luxury-border);
    font-size: 15px;
    text-align: center;
}

.pro-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--luxury-primary);
    width: 40%;
}

.check-pro {
    color: #5B8C5A;
    font-weight: 700;
    background: rgba(197, 160, 89, 0.05);
}

.cross-market {
    color: #999;
}

/* Directory Search */
.directory-search-bar {
    display: flex;
    max-width: 650px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    border: 1px solid var(--luxury-border);
    box-shadow: var(--luxury-shadow);
}

.directory-input {
    flex: 1;
    border: none;
    padding: 20px 35px;
    font-size: 16px;
    font-family: var(--font-body);
}

.btn-directory-search {
    background: var(--luxury-primary);
    color: #fff;
    border: none;
    padding: 0 40px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-directory-search:hover {
    background: var(--luxury-secondary);
}

/* Mosaic Placeholders */
.bg-cover {
    background-size: cover;
    background-position: center;
}

.border-radius-12 {
    border-radius: 12px;
}

.shadow-large {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- PROFESSIONAL CATALOG SHOWCASE --- */
.category-showcase-section {
    position: relative;
    overflow: hidden;
}

.luxury-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--luxury-secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.btn-luxury-outline {
    border: 1px solid var(--luxury-primary);
    color: var(--luxury-primary);
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-luxury-outline:hover {
    background: var(--luxury-primary);
    color: #fff;
    transform: translateY(-3px);
}

.section-divider-luxury {
    position: relative;
    height: 1px;
    background: var(--luxury-border);
    max-width: 80%;
    margin: 0 auto;
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: inherit;
    padding: 0 20px;
    color: var(--luxury-secondary);
    font-size: 24px;
}

.catalog-grid-professional .woocommerce ul.products {
    margin: 0 !important;
}

.category-nlp-desc em {
    color: var(--luxury-secondary);
    font-style: italic;
}

.category-nlp-desc strong {
    color: var(--luxury-primary);
    font-weight: 700;
}

/* Responsive Adjustments */
/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-padding-large {
        padding: 60px 0;
    }

    .pro-hero-content {
        text-align: center;
    }

    .hero-mosaic-wrap {
        display: none;
    }

    .pro-reverse-mobile {
        flex-direction: column-reverse;
    }

    .bridal-content {
        padding-right: 0 !important;
        margin-top: 40px;
    }
}

/* ==========================================================================
   HOMEPAGE V3 REDESIGN (FIXED LAYOUTS)
   ========================================================================== */

.pinsu-homepage-boutique.redesign-v3 {
    overflow-x: hidden;
}

/* 1. Power Hero 3.0 */
.pinsu-power-hero {
    position: relative;
    color: #fff;
    min-height: 85vh; /* Taller hero to show off artistry */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--luxury-dark);
}

.hero-visual-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-henna-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(44,30,22,0.95) 0%, rgba(44,30,22,0.7) 100%);
    z-index: 2;
}

.hero-content-inner {
    position: relative;
    z-index: 3;
    width: 100%;
}

.max-width-950 { max-width: 950px; }
.margin-auto { margin: 0 auto; }

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem); /* Responsive typography */
    line-height: 1.2;
    color: #fff;
}

.hero-supporting-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-25 { gap: 25px; }
.gap-40 { gap: 40px; }

.secondary-cta-link-v2 {
    color: #fff;
    border-bottom: 1px solid var(--luxury-secondary);
    padding-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.secondary-cta-link-v2:hover {
    color: var(--luxury-secondary);
}

.hero-trust-bar .trust-item {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
}

.hero-trust-bar i {
    color: var(--luxury-secondary);
    margin-right: 8px;
    font-size: 1.2rem;
}

/* 2. Science of Stain (Grid Layout Fix) */
.stain-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stain-card-v2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: transform 0.4s ease;
    border: 1px solid var(--luxury-border);
    display: flex;
    flex-direction: column;
}

.stain-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--luxury-secondary);
}

.stain-img-box {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.stain-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.stain-card-v2:hover .stain-img-box img {
    transform: scale(1.05);
}

.day-tag {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.day-tag.highlight {
    background: var(--luxury-dark);
    color: var(--luxury-secondary);
}

.stain-info-box {
    padding: 30px;
    flex-grow: 1; /* Pushes content down evenly */
}

.stain-info-box h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--luxury-dark);
}

.stain-info-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 3. Elevate Masterpiece (Category Grid V3) */
.category-visual-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 350px 350px;
    gap: 30px;
}

.cat-card-v3 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
}

.cat-card-v3.wide {
    grid-column: span 2;
}

.cat-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.cat-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.4s ease;
}

.cat-text-inner h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cat-text-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 80%;
}

.cat-btn-mini {
    display: inline-block;
    color: var(--luxury-secondary);
    border: 1px solid var(--luxury-secondary);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cat-card-v3:hover .cat-img {
    transform: scale(1.05);
}

.cat-card-v3:hover .cat-btn-mini {
    background: var(--luxury-secondary);
    color: #fff;
}

/* 4. Henna Survival Guide */
.pro-content-layout-v2 {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pro-content-text {
    flex: 1;
}

.pro-content-visual {
    flex: 1;
}

.stain-tip-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    max-width: 320px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--luxury-border);
}

.pro-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pro-feat i {
    font-size: 24px;
    color: var(--luxury-secondary);
    margin-bottom: 12px;
}

.pro-feat span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--luxury-dark);
}

/* 6. Ingredient Purity */
.ingredients-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.ingredient-item {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    box-shadow: var(--luxury-shadow);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.ingredient-item:hover {
    transform: translateY(-10px);
    border-color: var(--luxury-secondary);
}

.ing-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.ingredient-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.ingredient-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 7. Artist Testimonials */
.testimonial-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.border-luxury-top { border-top: 1px solid var(--luxury-border); }
.pt100 { padding-top: 100px; }
.pb130 { padding-bottom: 130px; }
.pb100 { padding-bottom: 100px; }
.mb70 { margin-bottom: 70px; }
.mb60 { margin-bottom: 60px; }
.mt40 { margin-top: 40px; }
.bg-soft-cream { background-color: #FAF8F5; }
.bg-white { background-color: #fff; }

/* Responsive Adjustments V3 */
@media (max-width: 1024px) {
    .stain-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stain-card-v2:nth-child(3) {
        grid-column: span 2; /* Center the last card on tablet */
        max-width: 50%;
        margin: 0 auto;
    }
    .pro-content-layout-v2 {
        flex-direction: column;
        gap: 40px;
    }
    .stain-tip-floating {
        position: relative;
        bottom: auto; left: auto;
        margin-top: -40px;
        margin-left: auto;margin-right: auto;
    }
}

@media (max-width: 768px) {
    .stain-grid-v2 {
        grid-template-columns: 1fr;
    }
    .stain-card-v2:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
    .category-visual-grid-v3 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .cat-card-v3 {
        min-height: 250px;
    }
    .cat-card-v3.wide {
        grid-column: span 1;
    }
    .cat-overlay {
        padding: 25px;
    }
    .pro-features-grid {
        grid-template-columns: 1fr;
    }
    .flex-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .ingredients-flex {
        flex-direction: column;
    }
    .testimonial-grid-pro {
        grid-template-columns: 1fr;
    }
    .hero-trust-bar.mobile-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-content: center;
    }
    .hero-trust-bar .trust-item:last-child {
        grid-column: span 2;
        justify-content: center;
    }
    .pt100 { padding-top: 60px; }
    .pb100, .pb130 { padding-bottom: 60px; }
}

/* --- LUXURY FOOTER REFINEMENTS --- */
#mehndi-footer {
    background: var(--luxury-tan);
    border-top: 1px solid var(--luxury-border);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-title {
    color: var(--luxury-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--luxury-secondary);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--luxury-secondary);
    padding-left: 5px;
}

.footer-contact {
    font-size: 14px;
    color: #666;
    line-height: 2;
}

.footer-contact strong {
    color: var(--luxury-primary);
    display: block;
    margin-top: 10px;
}

.footer-social a {
    color: var(--luxury-primary);
    font-size: 18px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--luxury-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--luxury-border);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
}

/* 8. Editorial / Knowledge Hub V3 */
.editorial-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.editorial-card-v3 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--luxury-border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.editorial-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--luxury-secondary);
}

.editorial-thumb-link-v3 {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.editorial-thumb-link-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-card-v3:hover .editorial-thumb-link-v3 img {
    transform: scale(1.08); /* Premium subtle zoom */
}

.editorial-date-v3 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--luxury-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.editorial-card-body-v3 {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes footer to bottom */
}

.editorial-title-v3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.editorial-title-v3 a {
    color: var(--luxury-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.editorial-title-v3 a:hover {
    color: var(--luxury-secondary);
}

.editorial-excerpt-v3 {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.editorial-card-footer-v3 {
    border-top: 1px solid var(--luxury-border);
    padding-top: 20px;
}

.editorial-read-v3 {
    color: var(--luxury-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.editorial-read-v3 span {
    margin-left: 5px;
    transition: transform 0.3s;
}

.editorial-read-v3:hover {
    color: var(--luxury-primary);
}

.editorial-read-v3:hover span {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .editorial-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .editorial-grid-v3 {
        grid-template-columns: 1fr;
    }
}

/* --- EDITORIAL SPOTLIGHT SECTION (Legacy) --- */
.pinsu-editorial-section {
    border-top: 1px solid var(--luxury-border);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.editorial-card {
    transition: all 0.4s ease;
}

.editorial-thumb {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--luxury-tan);
}

.editorial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-card:hover .editorial-thumb img {
    transform: scale(1.08);
}

.editorial-title a {
    color: var(--luxury-primary);
    transition: color 0.3s ease;
    line-height: 1.4;
    display: block;
}

.editorial-title a:hover {
    color: var(--luxury-secondary);
}

.editorial-cat a {
    color: var(--luxury-secondary) !important;
    font-weight: 700;
}

.placeholder-img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .editorial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }
}

/* --- DISTRACTION-FREE & FAST CHECKOUT --- */

/* Simplified Header for Checkout */
.rehub-distraction-free-checkout .header-authority-bar,
.rehub-distraction-free-checkout .nav-stack-row,
.rehub-distraction-free-checkout .header-discreet-actions,
.rehub-distraction-free-checkout .mobile-nav-trigger-signature {
    display: none !important;
}

.rehub-distraction-free-checkout .logo-stack-row {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* Checkout Layout Tweaks */
.rehub-distraction-free-checkout #customer_details {
    width: 60%;
    float: left;
    padding-right: 40px;
}

.rehub-distraction-free-checkout .woocommerce-checkout-review-order {
    width: 40%;
    float: right;
    background: var(--luxury-tan);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--luxury-border);
}

@media (max-width: 991px) {
    .rehub-distraction-free-checkout #customer_details,
    .rehub-distraction-free-checkout .woocommerce-checkout-review-order {
        width: 100%;
        float: none;
        padding-right: 0;
    }
}

/* Premium Input Fields */
.rehub-distraction-free-checkout .woocommerce-billing-fields input.input-text,
.rehub-distraction-free-checkout .woocommerce-billing-fields select {
    background-color: #fff !important;
    border: 1px solid var(--luxury-border) !important;
    padding: 15px !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.rehub-distraction-free-checkout .woocommerce-billing-fields input.input-text:focus {
    border-color: var(--luxury-secondary) !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1) !important;
    outline: none !important;
}

/* Place Order Button */
.rehub-distraction-free-checkout #place_order {
    background-color: var(--luxury-primary) !important;
    color: #fff !important;
    padding: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    width: 100% !important;
    border-radius: 4px !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.rehub-distraction-free-checkout #place_order:hover {
    background-color: var(--luxury-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--luxury-shadow);
}

/* Coupon Inline Styling */
.rehub-distraction-free-checkout .checkout_coupon {
    border: 1px dashed var(--luxury-secondary) !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    background: #fff !important;
}

/* --- FOOTER TRUST BADGES --- */
.footer-trust-badges .colored-icon {
    font-size: 38px;
    color: var(--luxury-secondary);
    display: inline-block;
    transition: transform 0.4s ease;
}

.trust-badge-item:hover .colored-icon {
    transform: translateY(-5px) scale(1.1);
}

.footer-trust-badges .badge-title {
    color: var(--luxury-primary);
    letter-spacing: 2px;
}

.footer-trust-badges p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-trust-badges .trust-badge-item {
        margin-bottom: 30px;
    }
    .footer-trust-badges .trust-badge-item:last-child {
        margin-bottom: 0;
    }
}

/* --- AUDIENCE HUB --- */
.audience-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--luxury-border);
}

.audience-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--luxury-secondary);
}

.audience-card i.colored-icon {
    display: inline-block;
    color: var(--luxury-secondary);
}

/* --- TRUST STRIP --- */
.luxury-dark-bg {
    background-color: var(--luxury-dark);
}

.stain-trust-strip .trust-item-large {
    flex: 1;
}

.border-grey-right {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- FEATURED KITS --- */
.featured-kits-section {
    background-color: var(--luxury-tan);
}

.featured-kits-grid .woocommerce ul.products li.product {
    border: none;
    box-shadow: var(--luxury-shadow);
}

.featured-kits-grid .woocommerce ul.products li.product:hover {
    border-color: var(--luxury-secondary);
}

/* Badge for AOV Boost */
/* --- MAGAZINE BLOG REDESIGN --- */

.blog-hero-magazine {
    border-bottom: 1px solid var(--luxury-border);
}

.article-title-large {
    font-size: 42px;
    line-height: 1.2;
    color: var(--luxury-dark);
}

.featured-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow-hover);
    border: 8px solid #fff;
}

.article-main-content {
    flex: 0 0 68%;
}

.sidebar-magazine-post-premium {
    flex: 0 0 30%;
}

/* TABLE OF CONTENTS */
.article-toc-container {
    border-radius: 15px;
}

#mehndi-toc-list ul {
    list-style: none;
    padding: 0;
}

#mehndi-toc-list li {
    margin-bottom: 10px;
}

#mehndi-toc-list li.h3 {
    padding-left: 20px;
    font-size: 0.9em;
}

#mehndi-toc-list a {
    color: var(--luxury-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

#mehndi-toc-list a:hover {
    color: var(--luxury-primary);
}

/* CALLOUT BOXES */
.mehndi-callout {
    border-radius: 15px;
    border-left: 5px solid var(--luxury-secondary);
    background: #fff;
}

.mehndi-callout-warning { border-left-color: #e74c3c; }
.mehndi-callout-pro_advice { border-left-color: var(--luxury-primary); background: var(--luxury-tan); }
.mehndi-callout-summary { border-left-color: #2ecc71; }

.callout-label { color: var(--luxury-secondary); }
.mehndi-callout-pro_advice .callout-label { color: var(--luxury-primary); }

/* EDITORIAL PRODUCT BLOCK */
.mehndi-editorial-product {
    border-radius: 20px;
    position: relative;
    overflow: visible;
}

.editorial-prod-label {
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--luxury-primary);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* FAQ SECTION */
.article-faq-section {
    border-radius: 20px;
}

/* AUTHOR BOX */
.author-expertise-box {
    border-radius: 20px;
}

.author-avatar img {
    border-radius: 50%;
    border: 4px solid var(--luxury-tan);
}

/* SIDEBAR PREMIUM */
.sidebar-inner-luxury-sticky {
    position: sticky;
    top: 100px;
}

.btn-pro-mini-simple {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--luxury-primary);
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--luxury-primary);
}

/* RELATED GUIDES */
.guide-card-premium {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s;
}

.guide-card-premium:hover {
    transform: translateY(-8px);
}

.btn-luxury-text {
    font-weight: 700;
    color: var(--luxury-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

/* TYPOGRAPHY IMPROVEMENTS */
.editorial-content-main h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--luxury-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.editorial-content-main h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.editorial-content-main p {
    margin-bottom: 25px;
}

.editorial-content-main strong {
    color: var(--luxury-dark);
}

.zoom-on-hover {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zoom-on-hover:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .article-main-content, .sidebar-magazine-post-premium {
        flex: 0 0 100%;
    }
}

/* --- EDITORIAL BLOG REDESIGN (PHASE 6) --- */
.mehndi-blog-post-page-editorial {
    background-color: #fff;
    color: #333;
}

.blog-editorial-header {
    background-color: transparent;
    padding-bottom: 40px;
}

.article-title-editorial {
    font-family: var(--font-heading);
    color: var(--luxury-primary);
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Readability Optimization */
.mehndi-blog-post-page-editorial .article-main-content {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-content-main {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.editorial-content-main p {
    margin-bottom: 2rem;
}

/* TOC Redesign */
.article-toc-card {
    border: 1px solid var(--luxury-border);
    border-left: 4px solid var(--luxury-secondary);
    border-radius: 4px;
}

.toc-title {
    color: var(--luxury-dark);
}

.toc-content-body ul {
    list-style: decimal;
    padding-left: 20px;
}

.toc-content-body ul li {
    margin-bottom: 12px;
}

.toc-content-body ul li a {
    color: var(--luxury-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.toc-content-body ul li a:hover {
    color: var(--luxury-secondary);
}

/* Visual Content Blocks */
.mehndi-callout {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.mehndi-callout:hover {
    transform: translateY(-5px);
}

.mehndi-callout-tip { background-color: #f0f7ff; border-left: 4px solid #007bff; }
.mehndi-callout-warning { background-color: #fff8f8; border-left: 4px solid #dc3545; }
.mehndi-callout-pro_advice { background-color: var(--luxury-tan); border-left: 4px solid var(--luxury-secondary); }
.mehndi-callout-summary { background-color: #f8fff8; border-left: 4px solid #28a745; }

.callout-label {
    display: flex;
    align-items: center;
    color: var(--luxury-dark);
}

/* Image Presentation */
.editorial-content-main img {
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    margin: 40px 0;
    max-width: 100%;
    height: auto;
}

.wp-caption-text {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Comparison Tables */
.editorial-content-main table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--luxury-border);
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: var(--luxury-shadow);
}

.editorial-content-main table th {
    background-color: var(--luxury-primary);
    color: #fff;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.editorial-content-main table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--luxury-border);
    font-size: 0.95rem;
}

.editorial-content-main table tr:nth-child(even) {
    background-color: #fafafa;
}

.editorial-content-main table tr:last-child td {
    border-bottom: none;
}

/* Sidebar Customizations */
.sidebar-editorial-premium {
    width: 320px;
}

.widget-luxury-title-small {
    border-bottom: 2px solid var(--luxury-secondary);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .article-body-section .rh-container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .mehndi-blog-post-page-editorial .article-main-content {
        max-width: 100%;
    }
    .sidebar-editorial-premium {
        display: none;
    }
}

@media (max-width: 767px) {
    .article-title-editorial {
        font-size: 1.8rem;
    }
    .article-toc-card {
        padding: 25px;
    }
}

/* --- HOMEPAGE REDESIGN (PHASE 7) --- */

/* Power Hero Section */
.pinsu-power-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--luxury-tan);
}

/* --- BOUTIQUE HOMEPAGE (PHASE 13) --- */

/* 1. Pro Hero 2.0 with Floating Patterns */
.pinsu-power-hero {
    position: relative;
    background: var(--luxury-dark);
    color: #fff;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-visual-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.hero-henna-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUwIDEwQzMwIDEwIDEwIDMwIDEwIDUwQzEwIDcwIDMwIDkwIDUwIDkwQzcwIDkwIDkwIDcwIDkwIDUwQzkwIDMwIDcwIDEwIDUwIDEwWk01MCA4MEMzMy40MzE1IDgwIDIwIDY2LjU2ODUgMjAgNTBDMjAgMzMuNDMxNSAzMy40MzE1IDIwIDUwIDIwQzY2LjU2ODUgMjAgODAgMzMuNDMxNSA4MCA1MEM4MCA2Ni41Njg1IDY2LjU2ODUgODAgNTAgODBaIiBmaWxsPSIjQzVBMDU5IiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    background-size: 150px;
    animation: floatingHenna 60s linear infinite;
}

@keyframes floatingHenna {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

.hero-content-inner {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.luxury-badge {
    background: var(--luxury-secondary);
    color: var(--luxury-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.primary-cta-btn {
    background: #fff;
    color: var(--luxury-primary);
    padding: 20px 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.primary-cta-btn:hover {
    background: var(--luxury-secondary);
    color: #fff;
    transform: translateY(-5px);
}

.secondary-cta-link {
    color: #fff;
    border-bottom: 2px solid var(--luxury-secondary);
    padding-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.secondary-cta-link:hover {
    color: var(--luxury-secondary);
    border-color: #fff;
}

/* 2. Proof in the Stain Progression */
.stain-progression-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stain-stage-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: all 0.4s ease;
}

.stain-stage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--luxury-shadow-hover);
}

.stage-img-wrap {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.stage-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage-info {
    padding: 25px;
    text-align: center;
}

.stage-title {
    font-family: var(--font-heading);
    color: var(--luxury-primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stage-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* 3. Problem & Solution Comparison 2.0 */
.problem-solution-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-column {
    padding: 50px;
    border-radius: 16px;
    position: relative;
}

.column-problem {
    background: #fffcfb;
    border: 1px solid #fee;
}

.column-solution {
    background: var(--luxury-cream);
    border: 1px solid var(--luxury-border);
    box-shadow: var(--luxury-shadow);
}

.comparison-list-pro {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.comparison-list-pro li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.comparison-list-pro i {
    margin-right: 20px;
    font-size: 1.4rem;
    margin-top: 3px;
}

/* 4. Audience Segmentation Cards */
.audience-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audience-card-pro {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid var(--luxury-border);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.audience-card-pro:hover {
    transform: translateY(-15px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--luxury-secondary);
}

.audience-card-pro i {
    font-size: 3rem;
    color: var(--luxury-secondary);
    margin-bottom: 30px;
    display: block;
}

/* 5. Artist Testimonials */
.testimonial-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-pro {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--luxury-shadow);
    border-left: 4px solid var(--luxury-secondary);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--luxury-primary);
    margin-bottom: 30px;
}

.artist-meta {
    display: flex;
    align-items: center;
}

.artist-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.artist-name {
    font-weight: 700;
    color: var(--luxury-primary);
    display: block;
}

.artist-role {
    font-size: 0.8rem;
    color: var(--luxury-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 6. Product Card Improvements for Homepage */
.homepage-product-favs .woocommerce ul.products li.product {
    text-align: center;
}

.pro-benefit-tag {
    display: inline-block;
    background: var(--luxury-tan);
    color: var(--luxury-accent);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .audience-grid-pro,
    .stain-progression-grid,
    .testimonial-grid-pro,
    .problem-solution-comparison {
        grid-template-columns: 1fr;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
}

/* 7. Boutique Final CTA */
.final-conversion-cta-boutique {
    position: relative;
    background: var(--luxury-primary);
    overflow: hidden;
}

.final-conversion-cta-boutique:after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUwIDEwQzMwIDEwIDEwIDMwIDEwIDUwQzEwIDcwIDMwIDkwIDUwIDkwQzcwIDkwIDkwIDcwIDkwIDUwQzkwIDMwIDcwIDEwIDUwIDEwWk01MCA4MEMzMy40MzE1IDgwIDIwIDY2LjU2ODUgMjAgNTBDMjAgMzMuNDMxNSAzMy40MzE1IDIwIDUwIDIwQzY2LjU2ODUgMjAgODAgMzMuNDMxNSA4MCA1MEM4MCA2Ni41Njg1IDY2LjU2ODUgODAgNTAgODBaIiBmaWxsPSIjRkZGRkZGIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=');
    background-size: 200px;
    opacity: 0.1;
}

.relative-z10 {
    position: relative;
    z-index: 10;
}

/* Homepage Product Grid Refinement */
.homepage-product-grid .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .homepage-product-grid .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .homepage-product-grid .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* --- CATEGORY ARCHIVE REDESIGN (PHASE 8) --- */

.category-editorial-hero {
    background-color: var(--luxury-tan);
    overflow: hidden;
}

.cat-title-luxury {
    color: var(--luxury-primary);
}

.cat-benefit-tag {
    color: var(--luxury-dark);
    border: 1px solid var(--luxury-border);
    white-space: nowrap;
}

.cat-buying-guide {
    position: relative;
}

.guide-meta-item {
    border-right: 1px solid var(--luxury-border);
    padding-right: 30px;
}

.guide-meta-item:last-child {
    border-right: none;
    padding-right: 0;
}

/* Product Grid & Cards Redesign */
.woocommerce ul.products li.product {
    padding: 20px !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--luxury-border);
}

.woocommerce ul.products li.product img {
    border-radius: 4px;
    margin-bottom: 20px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--luxury-dark);
    margin-bottom: 10px !important;
}

.woocommerce ul.products li.product .price {
    color: var(--luxury-primary) !important;
    font-weight: 700;
    font-size: 1.2rem !important;
}

/* Quick Add to Cart */
.woocommerce ul.products li.product .button.add_to_cart_button {
    background-color: var(--luxury-primary) !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    display: block !important;
    width: 100%;
    margin-top: 20px !important;
    text-align: center;
}

/* Badges */
.luxury-badge-mini {
    z-index: 10;
    pointer-events: none;
}

.kit-value-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Empty State Optimization */
.woocommerce-no-products-found {
    text-align: center;
    padding: 100px 0;
}

/* Centering products when 1-3 exist */
.woocommerce.center-product-grid ul.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.woocommerce.center-product-grid ul.products li.product {
    flex: 0 0 260px;
    margin: 15px !important;
}

/* Mini FAQ (Category Footer) */
.cat-footer-faq-section {
    background-color: #fff;
}

.cat-faq-item {
    border-bottom: 1px solid var(--luxury-border);
}

.cat-faq-question {
    cursor: pointer;
    position: relative;
    padding: 20px 0;
    transition: color 0.3s;
}

.cat-faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    color: var(--luxury-secondary);
}

.cat-faq-item.active .cat-faq-question:after {
    content: "-";
}

.cat-faq-answer {
    display: none;
    padding-bottom: 25px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cat-faq-item.active .cat-faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .woocommerce.center-product-grid ul.products li.product {
        flex: 0 0 calc(50% - 30px);
    }
}
.cat-pill-link {
    color: var(--luxury-dark);
    border: 1px solid var(--luxury-border);
    transition: all 0.3s;
}

.cat-pill-link:hover {
    background-color: var(--luxury-primary);
    color: #fff;
    border-color: var(--luxury-primary);
}

.luxury-list-check {
    list-style: none;
    padding: 0;
}

.luxury-list-check li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.luxury-list-check li:before {
    content: "\f121"; /* rhicon check or similar */
    font-family: 'rhicon';
    position: absolute;
    left: 0;
    color: var(--luxury-secondary);
}

@media (max-width: 768px) {
    .guide-meta-item {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--luxury-border);
        padding-bottom: 20px;
    }
}

/* --- UX & HEADER OVERHAUL (PHASE 10) --- */

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10000;
}

.progress-bar {
    height: 4px;
    background: var(--luxury-primary);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Collapsible Table of Contents */
.clickable-toc-toggle {
    cursor: pointer;
    user-select: none;
}

.toc-toggle-icon i {
    transition: transform 0.3s ease;
}

.clickable-toc-toggle:not(.collapsed) .toc-toggle-icon i {
    transform: rotate(180deg);
}

.active-toc-link {
    color: var(--luxury-primary) !important;
    font-weight: 700;
    padding-left: 5px;
    border-left: 2px solid var(--luxury-secondary);
}

/* Article Readability Improvements */
.editorial-content-main h2 {
    font-size: 2.2rem;
    margin-top: 60px;
    margin-bottom: 30px;
    font-weight: 700;
}

.editorial-content-main h3 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.editorial-content-main p {
    margin-bottom: 25px;
    font-size: 1.15rem;
}

/* Visual Section Dividers */
.section-divider-luxury {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--luxury-border), transparent);
    margin: 80px 0;
}

/* Callout Blocks (Tips & Warnings) Redefinition/Refinement */
.luxury-callout {
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
}

.luxury-callout i {
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 4px;
}

.callout-content {
    flex: 1;
}

.callout-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.tip-block { background-color: #f0f9ff; border-left: 5px solid #0ea5e9; }
.tip-block .callout-title { color: #0369a1; }
.tip-block i { color: #0ea5e9; }

.warning-block { background-color: #fff7ed; border-left: 5px solid #f97316; }
.warning-block .callout-title { color: #9a3412; }
.warning-block i { color: #f97316; }

/* Responsive Adjustments for Blog Content */
@media (max-width: 768px) {
    .editorial-content-main {
        font-size: 16px !important;
    }
    .editorial-content-main h2 {
        font-size: 1.8rem;
    }
    .article-toc-card {
        padding: 25px !important;
    }
}

/* Fluid Images & Responsive Tables */
.editorial-content-render img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.editorial-content-render table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    margin-bottom: 30px;
}

/* --- EDITORIAL SIDEBAR REDESIGN (PHASE 9) --- */

/* Sticky Sidebar Behavior */
#mehndi-premium-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar Search */
.search-form-luxury {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field-pro {
    width: 100%;
    padding: 15px 50px 15px 20px !important;
    border: 1px solid var(--luxury-border) !important;
    border-radius: 8px !important;
    background: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-field-pro:focus {
    border-color: var(--luxury-primary) !important;
    box-shadow: 0 0 0 3px rgba(106, 27, 27, 0.05) !important;
}

.search-submit-pro {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: var(--luxury-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
}

/* Widget Card Styling */
.widget-sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--luxury-border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Recent Posts */
.sidebar-post-item:last-child {
    margin-bottom: 0;
}

.sidebar-post-item img {
    border-radius: 4px;
    object-fit: cover;
}

.hover-luxury-color:hover {
    color: var(--luxury-primary) !important;
}

/* Product Mini Items */
.sidebar-prod-item .btn-pro-mini-cart {
    display: inline-block;
    padding: 6px 15px;
    background: var(--luxury-primary);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.sidebar-prod-item .btn-pro-mini-cart:hover {
    background: var(--luxury-dark);
}

/* Quick Buy Card */
.quick-buy-card {
    border: 1px solid var(--luxury-border);
    transition: all 0.3s ease;
}

.quick-buy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Sticky Booster Card */
.sidebar-sticky-booster {
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-white-luxury:hover {
    background: var(--luxury-tan);
    color: var(--luxury-primary);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    #mehndi-premium-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .widget-sidebar-card {
        margin-bottom: 20px;
    }
}

/* Minimal Custom Accordion for Sidebar Widgets on Mobile */
@media (max-width: 768px) {
    .widget-sidebar-card h4 {
        cursor: pointer;
        padding-bottom: 15px;
        margin-bottom: 0;
        border-bottom: 1px solid var(--luxury-border);
        position: relative;
    }

    .widget-sidebar-card h4:after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0;
    }

    .widget-sidebar-card.active h4:after {
        content: '-';
    }

    .widget-sidebar-card > div, 
    .widget-sidebar-card > ul, 
    .widget-sidebar-card > form {
        display: none;
        padding-top: 20px;
    }

    .widget-sidebar-card.active > div,
    .widget-sidebar-card.active > ul,
    .widget-sidebar-card.active > form {
        display: block;
    }
    
    .widget-sidebar-card.sidebar-search-premium {
        display: block !important;
    }
}

/* --- BOUTIQUE SPLIT HEADER (ULTIMATE REDESIGN) --- */
/* --- BOUTIQUE SPLIT HEADER (ULTIMATE REDESIGN) --- */
.pinsu-boutique-header {
    background: #fff !important; /* Force white background to override any theme defaults */
    z-index: 1000;
    border-bottom: 2px solid var(--luxury-secondary);
}

.boutique-master-header {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff !important;
}

.glass-effect.is-sticky {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(78, 52, 46, 0.08);
}

.luxury-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.boutique-nav-link {
    color: var(--luxury-primary);
    font-size: 1rem;
    padding: 10px 20px;
    display: block;
    position: relative;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.boutique-nav-link:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--luxury-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.boutique-nav-link:hover {
    color: var(--luxury-secondary);
}

.boutique-nav-link:hover:after {
    transform: scaleX(1);
}

.master-logo {
    max-height: 80px;
    transition: all 0.5s ease;
}

.is-sticky .master-logo {
    max-height: 55px;
}

.header-utility-boutique i {
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 1.3rem;
}

.header-utility-boutique i:hover {
    transform: translateY(-2px);
    color: var(--luxury-secondary);
}

.cart-count-boutique {
    background: var(--luxury-primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -10px;
    border: 2px solid #fff;
}

.cart-link-boutique {
    position: relative;
    display: inline-block;
}

.luxury-gold {
    color: var(--luxury-secondary);
}

/* Boutique Search Overlay */
.boutique-search-overlay {
    background: var(--luxury-cream);
    border-top: 1px solid var(--luxury-border);
    box-shadow: var(--luxury-shadow);
}

.boutique-search-input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid var(--luxury-primary) !important;
    font-family: 'Playfair Display', serif;
    font-size: 2.22rem;
    font-style: italic;
    color: var(--luxury-primary);
    padding: 20px 0 !important;
    text-align: center;
}

.boutique-search-input::placeholder {
    color: rgba(78, 52, 46, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .header-logo-wrap {
        padding: 0 10px;
        flex-grow: 1;
        text-align: left;
    }
    
    .header-split-right {
        justify-content: flex-end;
    }
    
    .master-logo {
        max-height: 50px;
    }

    .boutique-search-input {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   WOOCOMMERCE CART REDESIGN - CONVERSION FOCUSED
   ========================================================================== */

/* 1. Reset & General Layout */
.pinsu-cart-redesign-active .sidebar-page,
.pinsu-cart-redesign-active .sidebar {
    display: none !important;
}

.pinsu-cart-redesign-active .main-side-page,
.pinsu-cart-redesign-active .rh-content-wrap {
    width: 100% !important;
    float: none !important;
}

.pinsu-cart-layout-wrapper {
    max-width: 1200px;
    margin: 40px auto;
}

.pinsu-cart-container-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* 70/30 Column Split */
.woocommerce-cart-form {
    flex: 1 1 65%;
    min-width: 0;
}

.cart-collaterals {
    flex: 0 0 30%;
    min-width: 320px;
    background: var(--luxury-cream);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--luxury-border);
    position: sticky;
    top: 120px;
    box-shadow: var(--luxury-shadow);
}

/* 2. Cart Item Card Design - Refined */
.woocommerce-cart-form table.shop_table {
    border: none !important;
    border-collapse: separate;
    border-spacing: 0 20px;
    background: transparent !important;
    width: 100% !important;
}

.woocommerce-cart-form table.shop_table thead {
    display: none;
}

.woocommerce-cart-form table.shop_table tr.cart_item {
    background: #fff;
    box-shadow: 0 10px 25px rgba(78, 52, 46, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--luxury-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
}

.woocommerce-cart-form table.shop_table tr.cart_item:hover {
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--luxury-secondary);
    transform: translateY(-3px);
}

/* Image Column */
.woocommerce-cart-form table.shop_table td.product-thumbnail {
    flex: 0 0 120px;
    padding: 0 !important;
}

.woocommerce-cart-form table.shop_table td.product-thumbnail img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

/* Name & Meta Column */
.woocommerce-cart-form table.shop_table td.product-name {
    flex: 1;
    padding-left: 25px !important;
    text-align: left;
}

.woocommerce-cart-form table.shop_table td.product-name a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--luxury-primary);
    display: block;
    margin-bottom: 8px;
    line-height: 1.3;
}

.woocommerce-cart-form table.shop_table td.product-name .variation {
    font-size: 0.85rem;
    color: #888;
}

/* Price & Quantity Column */
.woocommerce-cart-form table.shop_table td.product-price,
.woocommerce-cart-form table.shop_table td.product-quantity,
.woocommerce-cart-form table.shop_table td.product-subtotal {
    flex: 0 0 auto;
    text-align: right;
    padding: 0 15px !important;
}

.product-price .amount {
    font-size: 0.9rem;
    color: #999;
}

.product-subtotal .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--luxury-primary);
}

/* Remove Button Refined */
.woocommerce-cart-form table.shop_table td.product-remove {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0 !important;
}

.woocommerce-cart-form table.shop_table td.product-remove a.remove {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff !important;
    color: #ccc !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--luxury-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-cart-form table.shop_table td.product-remove a.remove i {
    font-size: 14px;
}

.woocommerce-cart-form table.shop_table td.product-remove a.remove:hover {
    color: #e74c3c !important;
    border-color: #e74c3c;
    background: #fdf2f2 !important;
}

/* 3. Quantity Selector UI */
.quantity-luxury {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--luxury-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--luxury-cream);
}

.quantity input.qty {
    width: 50px !important;
    height: 40px !important;
    border: none !important;
    text-align: center;
    font-weight: 700;
    background: transparent;
    color: var(--luxury-primary);
}

/* 4. Cart Totals / Sidebar - Premium */
.cart-collaterals h2 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--luxury-primary);
    margin-bottom: 30px;
    position: relative;
}

.cart-collaterals h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--luxury-secondary);
}

.cart-collaterals .shop_table tr td,
.cart-collaterals .shop_table tr th {
    padding: 20px 0 !important;
    border-top: 1px solid var(--luxury-border) !important;
}

.cart-collaterals .order-total .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-primary);
}

.cart-trust-badges-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

/* 5. Mobile Layout Refined */
@media (max-width: 768px) {
    .pinsu-cart-layout-wrapper {
        margin: 20px 0;
    }

    .woocommerce-cart-form table.shop_table tr.cart_item {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .woocommerce-cart-form table.shop_table td.product-name {
        padding-left: 0 !important;
        text-align: center;
        margin-top: 15px;
    }

    .woocommerce-cart-form table.shop_table td.product-price,
    .woocommerce-cart-form table.shop_table td.product-quantity,
    .woocommerce-cart-form table.shop_table td.product-subtotal {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .pinsu-mobile-checkout-sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10001;
        display: block !important;
    }

    .sticky-checkout-inner {
        border-top: 2px solid var(--luxury-secondary);
        background: #fff;
    }

    .sticky-action-btn button {
        background: var(--luxury-primary) !important;
        border-radius: 8px !important;
        height: 55px;
    }
}

/* ==========================================================================
   FOOTER REDESIGN - LUXURY & TRUST
   ========================================================================== */
#footer {
    background: var(--luxury-cream) !important;
    border-top: 1px solid var(--luxury-border);
    padding-top: 80px;
}

.footer-trust-badges {
    background: #fff;
    padding: 40px 0;
    border-radius: 20px;
    box-shadow: var(--luxury-shadow);
    margin-top: -120px;
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

.trust-badge-item i {
    color: var(--luxury-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.badge-title {
    color: var(--luxury-primary);
    font-weight: 700;
}

.footer-luxury-title {
    color: var(--luxury-primary);
    font-weight: 700;
    position: relative;
}

.footer-luxury-links li {
    margin-bottom: 12px;
}

.footer-luxury-links a {
    color: #666;
    transition: all 0.3s ease;
}

.footer-luxury-links a:hover {
    color: var(--luxury-secondary);
    padding-left: 5px;
}

.footer-social-luxury a {
    font-size: 1.5rem;
    color: var(--luxury-primary);
    margin-right: 20px;
    transition: all 0.3s ease;
}

.footer-social-luxury a:hover {
    color: var(--luxury-secondary);
    transform: translateY(-3px);
}

.whatsapp-footer-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

@media (max-width: 768px) {
    .footer-trust-badges {
        margin-top: 0;
        margin-bottom: 40px;
        border-radius: 0;
    }
}

/* ==========================================================================
   HOMEPAGE REDESIGN 3.0 - CONVERSION & SEO
   ========================================================================== */

/* 1. Hero 3.0 Enhancements */
.pinsu-power-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--luxury-primary);
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: hero-ken-burns 20s infinite alternate;
}

@keyframes hero-ken-burns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-henna-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.85) 0%, rgba(78, 52, 46, 0.4) 100%);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
}

.secondary-cta-link-v2 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: all 0.3s ease;
}

.secondary-cta-link-v2:hover {
    color: var(--luxury-secondary);
    text-underline-offset: 12px;
}

.hero-trust-bar .trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 2. Stain Progression V2 */
.stain-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stain-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--luxury-border);
}

.stain-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--luxury-shadow-hover);
}

.stain-img-box {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.stain-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--luxury-primary);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.day-tag.highlight {
    background: var(--luxury-secondary);
    color: #fff;
}

.stain-info-box {
    padding: 30px;
    text-align: center;
}

.stain-info-box h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.featured-stain {
    border: 2px solid var(--luxury-secondary);
    transform: scale(1.05);
    z-index: 2;
}

/* 3. Visual Category Grid */
.category-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.cat-card-v2 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
}

.cat-card-v2.wide {
    grid-column: span 2;
}

.cat-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(61, 43, 31, 0.9) 0%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.cat-card-v2:hover .cat-img {
    transform: scale(1.08);
}

.cat-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.cat-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 4. Pro Content Section (SEO Block) */
.pro-content-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.pro-features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-feat {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--luxury-primary);
}

.pro-feat i {
    color: var(--luxury-secondary);
}

/* 5. Ingredient Transparency */
.ingredients-flex {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

.ingredient-item {
    flex: 1;
    padding: 40px;
    background: var(--luxury-tan);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    background: #fff;
    box-shadow: var(--luxury-shadow-hover);
    transform: translateY(-5px);
}

.ing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* 6. Refined Post Cards */
.editorial-card-v2 {
    transition: all 0.3s ease;
}

.editorial-card-v2:hover {
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--luxury-secondary);
}

.pro-underlined {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Mobile Adjustments 3.0 */
@media (max-width: 900px) {
    .stain-grid-v2,
    .pro-content-layout,
    .ingredients-flex,
    .category-visual-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stain-card-v2.featured-stain {
        transform: scale(1);
    }

    .cat-card-v2.wide {
        grid-column: span 1;
    }

    .cat-overlay h3 {
        font-size: 1.4rem;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   BLOG EDITORIAL 4.0 - CONVERSION & UX
   ========================================================================== */

/* 1. Header & Typography */
.redesign-4-0 .luxury-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.blog-editorial-header-v2 {
    background-color: var(--luxury-tan);
    border-bottom: 1px solid var(--luxury-border);
}

.article-meta-bottom-v2 .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-meta-bottom-v2 img {
    border-radius: 50%;
    border: 1px solid var(--luxury-secondary);
}

/* 2. Content Layout */
.article-main-content-v2 {
    flex: 0 0 70%;
    max-width: 70%;
}

.editorial-content-render-v2 p {
    margin-bottom: 25px;
    font-size: 1.15rem;
}

/* 3. Inline Conversion CTA */
.inline-content-cta {
    border-left: 4px solid var(--luxury-secondary);
    box-shadow: var(--luxury-shadow);
}

/* 4. Sidebar Shop Widget */
.sidebar-sticky-v2 {
    position: sticky;
    top: 100px;
}

.shop-tutorial-widget .sidebar-products-mini .product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--luxury-tan);
}

.shop-tutorial-widget .sidebar-products-mini .product:last-child {
    border-bottom: none;
}

.shop-tutorial-widget .sidebar-products-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* 5. WhatsApp sidebar */
.wa-pro-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: var(--luxury-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.wa-pro-btn:hover {
    transform: scale(1.05);
    background: var(--luxury-secondary);
    color: #fff;
}

/* ==========================================================================
   SHOPIFY-STYLE CHECKOUT REDESIGN
   ========================================================================== */

.woocommerce-checkout-luxury {
    padding-top: 60px;
    padding-bottom: 100px;
    background: #fdfaf7; /* Soft cream/tan checkout background */
}

.checkout-grid-v2 {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.checkout-left-col {
    flex: 0 0 60%;
    max-width: 60%;
}

.checkout-right-summary {
    flex: 0 0 40%;
    max-width: 40%;
    position: sticky;
    top: 100px;
}

/* Field styling */
.checkout-grid-v2 .inner-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--luxury-border);
    margin-bottom: 30px;
}

.checkout-grid-v2 h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid var(--luxury-tan);
    padding-bottom: 15px;
}

.checkout-grid-v2 input[type="text"],
.checkout-grid-v2 input[type="email"],
.checkout-grid-v2 input[type="tel"],
.checkout-grid-v2 select,
.checkout-grid-v2 textarea {
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    width: 100%;
    font-size: 0.95rem;
}

.checkout-grid-v2 input:focus {
    border-color: var(--luxury-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(188, 153, 114, 0.1);
}

/* Order Review / Summary Styling */
#order_review_heading { display: none; }

.order-summary-luxury {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--luxury-secondary);
    box-shadow: var(--luxury-shadow);
}

.checkout-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0.8;
}

.badge-checkout-mini {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-checkout-mini i {
    display: block;
    font-size: 1.5rem;
    color: var(--luxury-secondary);
    margin-bottom: 5px;
}

/* Mobile Checkout */
/* ==========================================================================
   HOMEPAGE V3 - SEO & UX REFINEMENTS
   ========================================================================== */

.redesign-v3 .hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
}

.redesign-v3 .hero-supporting-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 1. Stain Grid Fixes (Prevent Overlaps) */
.stain-grid-v2 {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stain-card-v2 {
    flex: 1;
    min-width: 0; /* Fix flex shrink issue */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: transform 0.3s ease;
}

.stain-card-v2:hover {
    transform: translateY(-10px);
}

.stain-img-box {
    position: relative;
    height: 350px;
}

.stain-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--luxury-primary);
    backdrop-filter: blur(5px);
}

.day-tag.highlight {
    background: var(--luxury-primary);
    color: #fff;
}

/* 2. Category Grid v3 */
.category-visual-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.cat-card-v3 {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    display: block;
}

.cat-card-v3.wide {
    grid-column: span 2;
    height: 500px;
}

.cat-card-v3 .cat-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.cat-card-v3:hover .cat-img {
    transform: scale(1.05);
}

.cat-card-v3 .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.cat-text-inner h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cat-text-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 25px;
}

.cat-btn-mini {
    display: inline-block;
    padding: 10px 25px;
    background: var(--luxury-secondary);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* 3. Care Section & Tip */
.pro-content-layout-v2 {
    display: flex;
    align-items: center;
    gap: 80px;
}

.pro-content-text {
    flex: 1;
}

.pro-content-visual {
    flex: 1;
}

.stain-tip-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    max-width: 250px;
    z-index: 2;
}

/* ==========================================================================
   UNIFIED RESPONSIVE REFINEMENTS
   ========================================================================== */

@media (max-width: 1024px) {
    .stain-grid-v2,
    .pro-content-layout,
    .pro-content-layout-v2,
    .ingredients-flex,
    .category-visual-grid,
    .category-visual-grid-v3 {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .stain-card-v2.featured-stain {
        transform: scale(1);
    }

    .cat-card-v3.wide,
    .cat-card-v2.wide {
        grid-column: span 1;
        height: 400px;
    }

    .stain-tip-floating {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .checkout-grid-v2 {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .checkout-left-col,
    .checkout-right-summary {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .checkout-right-summary {
        position: static;
    }

    .article-main-content-v2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   SMART WHATSAPP WIDGET
   ========================================================================== */

.pinsu-wa-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9991;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.pinsu-wa-button {
    width: 65px;
    height: 65px;
    background-color: var(--luxury-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(78, 52, 46, 0.2);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    border: 2px solid #fff;
}

.pinsu-wa-button i {
    color: #fff;
    font-size: 32px;
}

.pinsu-wa-button:hover {
    transform: scale(1.1);
    background-color: var(--luxury-dark);
}

.pinsu-wa-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--luxury-primary);
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.pinsu-wa-tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    pointer-events: none;
}

.pinsu-wa-button:hover .pinsu-wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

.pinsu-wa-label {
    background: #fff;
    padding: 12px 20px;
    border-radius: 30px 30px 5px 30px;
    margin-right: 15px;
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--luxury-border);
    font-size: 14px;
    font-weight: 600;
    color: var(--luxury-primary);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    max-width: 200px;
    line-height: 1.4;
}

.pinsu-wa-label.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .pinsu-wa-container {
        bottom: 90px;
        right: 15px;
        z-index: 990; /* Sit below sticky cart/checkout bars (usually 999+) */
    }
    .pinsu-wa-button {
        width: 55px;
        height: 55px;
    }
    .pinsu-wa-button i {
        font-size: 28px;
    }
    .pinsu-wa-label {
        display: none;
    }
}

/* ==========================================================================
   HOMEPAGE UX REDESIGN & MOBILE ENHANCEMENTS
   ========================================================================== */

/* 1. Hero Refinements */
.mobile-stack-cta {
    display: flex;
    gap: 20px;
}

.btn-large {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
}

.visual-story-banner {
    background-color: var(--luxury-dark);
}

/* 2. Mobile Swipeable Grids */
@media (max-width: 768px) {
    .mobile-stack-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 15px;
    }
    
    .w-full-mobile {
        width: 100%;
        display: block;
        text-align: center;
    }
    
    /* Horizontal Scrolling for Products and Categories on Mobile */
    .mobile-swipe-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .mobile-swipe-grid::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

    .mobile-swipe-grid > * {
        flex: 0 0 85% !important; /* Items take up 85% of screen to show next item peeking */
        scroll-snap-align: start;
    }
    
    /* Apply same logic to WooCommerce product grid wrapper */
    .mobile-swipe-products .woocommerce ul.products {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding-bottom: 20px;
        margin-left: -15px !important; /* Edge to edge illusion */
        margin-right: -15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .mobile-swipe-products .woocommerce ul.products::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-swipe-products .woocommerce ul.products li.product {
        flex: 0 0 75% !important;
        max-width: 75% !important;
        scroll-snap-align: center;
        margin-bottom: 0 !important;
    }
}

/* 3. Luxury V3 Product Cards (Best Sellers Grid) */
.homepage-product-grid .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 0 !important;
}

.homepage-product-grid .woocommerce ul.products::before,
.homepage-product-grid .woocommerce ul.products::after {
    display: none !important;
}

@media (max-width: 992px) and (min-width: 769px) {
    .homepage-product-grid .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.homepage-product-grid .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Base Card UI */
.luxury-card-v3 {
    background: #FAF8F5; /* Cream background */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--luxury-shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.luxury-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--luxury-shadow-hover);
    border-color: rgba(197, 160, 89, 0.3); /* Soft Gold highlight */
}

/* Image & Media Ratio */
.luxury-image-wrap {
    position: relative;
    width: 100%;
    /* Create a tall, immersive aspect ratio (approx 70% of card) */
    aspect-ratio: 4/5;
    background: #fff;
    overflow: hidden;
}

.luxury-image-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.luxury-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure full product is visible */
    object-position: center;
    transition: transform 0.6s ease;
    border-radius: 20px 20px 0 0;
    mix-blend-mode: multiply; /* Removes white backgrounds on images if any */
}

.luxury-card-v3:hover .luxury-image-wrap img {
    transform: scale(1.08); /* Dramatic premium zoom */
}

/* Badges */
.luxury-sale-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--luxury-secondary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(197,160,89,0.3);
}

.luxury-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-dark);
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.luxury-card-v3:hover .luxury-wishlist-btn {
    opacity: 1;
    transform: translateX(0);
}

.luxury-wishlist-btn:hover {
    background: var(--luxury-secondary);
    color: #fff;
}

/* Product Info Container */
.luxury-info-wrap {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    background: #FAF8F5;
}

.luxury-product-title h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--luxury-dark);
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luxury-product-title:hover h2 {
    color: var(--luxury-secondary);
}

/* Price Hierarchy */
.luxury-price-wrap .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.luxury-price-wrap ins,
.luxury-price-wrap > .woocommerce-Price-amount {
    text-decoration: none;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--luxury-primary) !important; /* Deep Maroon */
}

.luxury-price-wrap del {
    font-size: 1rem !important;
    color: #999 !important;
    font-weight: 500 !important;
}

/* Micro-Trust Tags */
.luxury-micro-tag {
    color: var(--luxury-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Dynamic Add to Cart Button */
.luxury-card-actions .button.add_to_cart_button {
    background-color: var(--luxury-dark) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 16px 0 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.luxury-card-actions .button.add_to_cart_button:hover {
    background-color: var(--luxury-secondary) !important;
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4) !important;
    transform: translateY(-2px);
}

/* 4. Sticky Mobile Navigation Bar */
.pinsu-mobile-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    .pinsu-mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
        z-index: 9999;
        padding: 5px 0 10px 0;
        border-top: 1px solid var(--luxury-border);
        justify-content: space-around;
        align-items: center;
    }
    
    .sticky-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--luxury-dark);
        font-size: 11px;
        font-weight: 600;
        padding: 8px;
        transition: color 0.3s;
    }
    
    .sticky-nav-item i {
        font-size: 22px;
        margin-bottom: 4px;
        color: var(--luxury-primary);
    }
    
    .sticky-nav-item:hover, .sticky-nav-item:active {
        color: var(--luxury-secondary);
    }
    
    .sticky-nav-item:hover i {
        color: var(--luxury-secondary);
    }
    
    /* Sticky Navigation Cart Badge */
    .sticky-cart-wrap {
        position: relative;
    }
    
    .sticky-cart-count {
        position: absolute;
        top: -5px;
        right: -8px;
        background: var(--luxury-secondary);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid #fff;
    }
    
    /* Fix overlap with WA widget and scroll to top */
    .pinsu-wa-container {
        bottom: 100px !important;
    }
    #topcontrol {
        bottom: 100px !important;
    }
    
    /* Add padding to body so content doesn't hide behind sticky bar */
    body {
        padding-bottom: 70px !important;
    }
}

/* 5. Utility Classes */
.desktop-flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .desktop-flex-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .mt-mobile-20 {
        margin-top: 20px;
    }
}

/* ==========================================================================
   HOMEPAGE V4 — D2C BEAUTY BRAND LAYOUT
   ========================================================================== */

/* 1. HERO V4 */
.pinsu-hero-v4 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,10,5,0.78) 0%, rgba(60,20,10,0.55) 100%);
    z-index: 1;
}
.hero-inner-v4 { position: relative; z-index: 2; padding: 100px 0; }
.hero-content-v4 { max-width: 700px; }
.hero-eyebrow-tag {
    display: inline-block;
    background: rgba(197,160,89,0.18);
    border: 1px solid rgba(197,160,89,0.45);
    color: var(--luxury-secondary);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 20px; border-radius: 30px;
    margin-bottom: 25px;
}
.hero-h1-v4 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff; line-height: 1.15;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-h1-gold { color: var(--luxury-secondary); }
.hero-sub-v4 { color: rgba(255,255,255,0.82); font-size: 1.15rem; line-height: 1.7; margin-bottom: 40px; }
.hero-ctas-v4 { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 50px; }
.btn-primary-v4 {
    display: inline-block;
    background: var(--luxury-secondary); color: #fff;
    padding: 16px 34px; border-radius: 6px;
    font-weight: 700; font-size: 1rem;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; transition: all 0.3s;
}
.btn-primary-v4:hover { background: #b8913a; transform: translateY(-2px); color: #fff; }
.btn-ghost-v4 {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.7); color: #fff;
    padding: 14px 32px; border-radius: 6px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; transition: all 0.3s;
}
.btn-ghost-v4:hover { border-color: var(--luxury-secondary); color: var(--luxury-secondary); }
.hero-trust-v4 { display: flex; gap: 30px; flex-wrap: wrap; }
.ht-item { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.ht-icon { font-size: 1.1rem; }

/* 2. SOCIAL PROOF STRIP */
.hp-proof-strip { background: var(--luxury-dark); padding: 28px 0; }
.proof-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; align-items: center; padding: 10px 40px; text-align: center; }
.proof-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--luxury-secondary); line-height: 1; }
.proof-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.proof-divider { width: 1px; height: 45px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* 3. CATEGORY BANNERS */
.cat-banner-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 380px 380px; gap: 20px; }
.cat-banner-card { position: relative; border-radius: 16px; overflow: hidden; text-decoration: none; display: block; }
.cat-banner-wide { grid-column: span 2; }
.cat-banner-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.cat-banner-card:hover .cat-banner-img { transform: scale(1.06); }
.cat-banner-body { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); padding: 40px 35px; color: #fff; }
.cat-banner-body h3 { font-family: var(--font-heading); font-size: 1.7rem; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 2px; }
.cat-banner-body p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin: 0 0 20px; }
.cat-banner-btn { display: inline-block; padding: 10px 24px; border: 1.5px solid var(--luxury-secondary); color: var(--luxury-secondary); border-radius: 4px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; }
.cat-banner-card:hover .cat-banner-btn { background: var(--luxury-secondary); color: #fff; }

/* 4. BEST SELLERS — CUSTOM PHP PRODUCT CARDS */
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 15px; }
.hp-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hp-product-card {
    background: #FAF8F5; border-radius: 16px; overflow: hidden; position: relative;
    box-shadow: var(--luxury-shadow); border: 1px solid var(--luxury-border);
    transition: all 0.4s ease; display: flex; flex-direction: column;
}
.hp-product-card:hover { transform: translateY(-8px); box-shadow: var(--luxury-shadow-hover); border-color: rgba(197,160,89,0.4); }
.hp-badge-sale { position: absolute; top: 14px; left: 14px; background: var(--luxury-secondary); color: #fff; font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; z-index: 2; }
.hp-card-img-wrap { display: block; aspect-ratio: 1/1; background: #fff; overflow: hidden; }
.hp-card-img-wrap img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.6s ease; }
.hp-product-card:hover .hp-card-img-wrap img { transform: scale(1.07); }
.hp-card-img-placeholder { width: 100%; height: 100%; background: #f0ebe4; }
.hp-card-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.hp-card-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--luxury-dark); font-weight: 600; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; margin-bottom: 10px; }
.hp-card-title:hover { color: var(--luxury-secondary); }
.hp-card-rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 10px; min-height: 24px; }
.hp-card-rating .stars { color: #c5a059; font-size: 0.9rem; }
.hp-card-rating .rcount { color: #999; font-size: 0.8rem; }
.hp-card-rating .new-label { color: var(--luxury-secondary); font-size: 0.8rem; font-weight: 600; }
.hp-card-price { margin-bottom: 8px; }
.hp-card-price .woocommerce-Price-amount { font-size: 1.35rem !important; font-weight: 700 !important; color: var(--luxury-primary) !important; }
.hp-card-price del .woocommerce-Price-amount { font-size: 1rem !important; color: #aaa !important; font-weight: 400 !important; }
.hp-micro-tag { font-size: 0.78rem; color: var(--luxury-accent); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin: 0 0 18px; margin-top: auto; }
.hp-atc-btn { display: block; width: 100%; background: var(--luxury-dark); color: #fff; padding: 14px 0; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; text-align: center; transition: all 0.3s; }
.hp-atc-btn:hover { background: var(--luxury-secondary); box-shadow: 0 6px 16px rgba(197,160,89,0.4); color: #fff; transform: translateY(-2px); }
/* Modifier: instant Add to Cart (simple products) */
.hp-atc-instant { background: var(--luxury-dark); }
.hp-atc-instant:hover { background: var(--luxury-secondary); }
/* Modifier: View Options (variable products) */
.hp-atc-view { background: transparent; border: 2px solid var(--luxury-secondary); color: var(--luxury-secondary); }
.hp-atc-view:hover { background: var(--luxury-secondary); color: #fff; }

/* 5. SCIENCE SECTION */
.science-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sci-card { background: #fff; border-radius: 16px; padding: 45px 30px; text-align: center; box-shadow: var(--luxury-shadow); border: 1px solid transparent; transition: all 0.4s; }
.sci-card:hover { transform: translateY(-8px); border-color: var(--luxury-secondary); }
.sci-icon { font-size: 2.5rem; margin-bottom: 20px; }
.sci-card h4 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--luxury-dark); margin-bottom: 12px; }
.sci-card p { color: #666; font-size: 0.95rem; line-height: 1.7; margin: 0; }
.stain-progression-row { display: flex; align-items: flex-start; justify-content: center; gap: 20px; }
.stain-step { flex: 1; max-width: 280px; text-align: center; }
.stain-step-arrow { font-size: 2rem; color: var(--luxury-secondary); align-self: center; flex-shrink: 0; padding-bottom: 60px; }
.stain-img-wrap { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 16px; aspect-ratio: 4/3; background: #fff; }
.stain-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.stain-step-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.92); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.stain-step-tag.gold { background: var(--luxury-secondary); color: #fff; }
.highlight-step .stain-img-wrap { border: 3px solid var(--luxury-secondary); }
.stain-step h5 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--luxury-dark); margin-bottom: 6px; }
.stain-step p { font-size: 0.88rem; color: #666; line-height: 1.6; margin: 0; }
.mt80 { margin-top: 80px; }

/* 6. TRUST BANNER */
.hp-trust-banner { padding: 120px 0; text-align: center; }
.trust-banner-inner { max-width: 700px; margin: 0 auto; }
.trust-banner-h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px; font-weight: 700; }
.trust-banner-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 0; }

/* 7. REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card-v4 { background: #fff; border-radius: 16px; padding: 35px; box-shadow: var(--luxury-shadow); border: 1px solid var(--luxury-border); display: flex; flex-direction: column; }
.review-stars { color: var(--luxury-secondary); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 15px; }
.review-quote { font-style: italic; color: #555; font-size: 1rem; line-height: 1.75; flex-grow: 1; margin: 0; }
.review-author { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.review-name { display: block; font-weight: 700; color: var(--luxury-dark); font-size: 0.95rem; }
.review-role { display: block; color: #888; font-size: 0.8rem; margin-top: 2px; }
.review-verified { background: rgba(78,52,46,0.08); color: var(--luxury-primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 12px; border-radius: 20px; white-space: nowrap; }

/* 8. UGC GALLERY */
.ugc-insta-tag { display: block; }
.insta-tag-link { display: inline-block; color: var(--luxury-primary); font-weight: 700; font-size: 1rem; text-decoration: none; letter-spacing: 0.5px; border-bottom: 2px solid var(--luxury-secondary); padding-bottom: 4px; transition: color 0.3s; }
.insta-tag-link:hover { color: var(--luxury-secondary); }
.ugc-gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ugc-cell { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; display: block; }
.ugc-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ugc-cell:hover img { transform: scale(1.1); }
.ugc-hover-overlay { position: absolute; inset: 0; background: rgba(78,52,46,0.6); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; opacity: 0; transition: opacity 0.3s; }
.ugc-cell:hover .ugc-hover-overlay { opacity: 1; }

/* 9. INGREDIENTS V4 */
.ingredients-v4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ing-card-v4 { background: #fff; border-radius: 16px; padding: 45px 30px; text-align: center; box-shadow: var(--luxury-shadow); border: 1px solid transparent; transition: all 0.4s; }
.ing-card-v4:hover { transform: translateY(-8px); border-color: var(--luxury-secondary); }
.ing-emoji { font-size: 2.5rem; margin-bottom: 20px; }
.ing-card-v4 h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--luxury-dark); margin-bottom: 12px; }
.ing-card-v4 p { color: #666; font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* UTILITY */
.section-head { margin-bottom: 0; }
.mobile-hide { display: block; }
.mobile-show { display: none; }
.max-width-700 { max-width: 700px; }
.mb5 { margin-bottom: 5px; }
.mt50 { margin-top: 50px; }
.mt40 { margin-top: 40px; }

/* ======================== TABLET 992px ======================== */
@media (max-width: 992px) {
    .cat-banner-grid { grid-template-rows: 300px 300px; }
    .hp-product-grid { grid-template-columns: repeat(2, 1fr); }
    .science-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .ingredients-v4 { grid-template-columns: repeat(2, 1fr); }
    .ugc-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .proof-item { padding: 10px 25px; }
}

/* ======================== MOBILE 768px ======================== */
@media (max-width: 768px) {
    .pinsu-hero-v4 { min-height: 100svh; }
    .hero-inner-v4 { padding: 80px 0 120px; }
    .hero-ctas-v4 { flex-direction: column; }
    .btn-primary-v4, .btn-ghost-v4 { width: 100%; text-align: center; display: block; }
    .hero-trust-v4 { flex-direction: column; gap: 12px; }
    .proof-strip-inner { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x mandatory; flex-wrap: nowrap; }
    .proof-item { flex: 0 0 55%; scroll-snap-align: start; }
    .proof-divider { display: none; }
    .cat-banner-grid { grid-template-columns: 1fr; grid-template-rows: 260px 260px 260px; }
    .cat-banner-wide { grid-column: span 1; }
    .hp-product-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 20px; margin: 0 -15px; padding-left: 15px; padding-right: 15px; -webkit-overflow-scrolling: touch; }
    .hp-product-grid::-webkit-scrollbar { display: none; }
    .hp-product-card { flex: 0 0 78%; scroll-snap-align: start; }
    .science-cards-grid { grid-template-columns: 1fr; }
    .stain-progression-row { flex-direction: column; align-items: center; }
    .stain-step-arrow { transform: rotate(90deg); padding-bottom: 0; }
    .stain-step { max-width: 100%; width: 100%; }
    .reviews-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 20px; -webkit-overflow-scrolling: touch; }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card-v4 { flex: 0 0 85%; scroll-snap-align: start; }
    .ugc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ingredients-v4 { grid-template-columns: 1fr; }
    .section-header-flex { flex-direction: column; align-items: flex-start; gap: 10px; }
    .mobile-hide { display: none; }
    .mobile-show { display: block; }
    .hp-trust-banner { padding: 80px 0; }
}


/* ==========================================================================
   INSTAGRAM GALLERY SECTION
   ========================================================================== */

/* Handle Pill */
.insta-handle-pill { text-align: center; }
.insta-handle-link {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; font-weight: 700; font-size: 1.05rem;
    padding: 12px 28px; border-radius: 30px;
    text-decoration: none; letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(220,39,67,0.28);
}
.insta-handle-link:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(220,39,67,0.4); color: #fff; }
.insta-icon { font-size: 1.2rem; }

/* Static Fallback Grid */
.insta-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.insta-cell {
    position: relative; display: block;
    aspect-ratio: 1/1; overflow: hidden;
    border-radius: 10px;
}
.insta-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.insta-cell:hover img { transform: scale(1.1); }
.insta-cell-overlay {
    position: absolute; inset: 0;
    background: rgba(30, 10, 10, 0.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.insta-cell:hover .insta-cell-overlay { opacity: 1; }
.insta-svg-icon { width: 42px; height: 42px; }

/* Setup notice (shown only when plugin isn't installed) */
.insta-setup-note {
    text-align: center; margin-top: 20px;
    color: #999; font-size: 0.82rem; line-height: 1.6;
}

/* Smash Balloon Feed Override */
.pinsu-insta-feed-wrap #sb_instagram { padding: 0 !important; }
.pinsu-insta-feed-wrap #sbi_images { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
.pinsu-insta-feed-wrap .sbi_item { border-radius: 10px; overflow: hidden; }
.pinsu-insta-feed-wrap #sbi_load, .pinsu-insta-feed-wrap #sbi_mod_error { display: none !important; }

/* Follow Button */
.btn-insta-follow {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; font-weight: 700; font-size: 1rem;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 18px 40px; border-radius: 8px;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(188,24,136,0.28);
}
.btn-insta-follow:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(188,24,136,0.4); color: #fff; }
.insta-btn-icon { font-size: 1.2rem; }

/* Tablet — 2 columns */
@media (max-width: 992px) {
    .insta-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pinsu-insta-feed-wrap #sbi_images { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Mobile — Horizontal swipe carousel */
@media (max-width: 768px) {
    .insta-gallery-grid {
        display: flex; flex-wrap: nowrap; overflow-x: auto;
        scroll-snap-type: x mandatory; gap: 10px;
        padding-bottom: 15px; -webkit-overflow-scrolling: touch;
    }
    .insta-gallery-grid::-webkit-scrollbar { display: none; }
    .insta-cell { flex: 0 0 72%; scroll-snap-align: start; }
    .pinsu-insta-feed-wrap #sbi_images { grid-template-columns: repeat(2, 1fr) !important; }
}
