/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #FCFBF2; /* Updated background from snippet */
    --text-main: #333333;
    --h-bg: rgba(255, 253, 249, 0.95);
    --h-border: rgba(0,0,0,0.06);
    --brand: #FE0030; 
    --wa: #25D366;
    --overlay-bg: rgba(255, 255, 255, 0.98);
    --p-brand: #FE0030; 
    --p-dark: #1A1A1A; 
    --p-text: #333333;
    --card-bg: #FFFFFF;
    --border-color: rgba(0,0,0,0.08); 
    --shadow-color: rgba(0,0,0,0.06);
    --contact-bg: #E0F2F1;
    --border: #ddd;
    --bg-grad-1: rgba(255, 223, 186, 0.4);
    --bg-grad-2: rgba(255, 245, 230, 0.4);
    --bg-grad-3: rgba(243, 230, 255, 0.2);
    --card-bg-glass: rgba(255, 255, 255, 0.6);
}

/* Luxurious Typography */
/* Luxurious Typography */
/* Luxurious Typography */
/* Luxurious Typography */
.luxurious-title {
    font-family: 'Playfair Display', serif; 
    font-style: italic; /* Match reference image */
    font-size: 3.8rem; 
    font-weight: 700;
    color: #FFD700; 
    /* Vibrant Gold matching the reference "Customized" text */
    background: linear-gradient(to right, #FFD700, #FDB931, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px; /* Slightly tighter for elegant italic flow */
    text-transform: capitalize; /* Title Case */
    margin: 0 0 10px 0;
    padding-top: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6)); 
    animation: shine 4s linear infinite; 
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

[data-theme="light"] .luxurious-title {
    background: linear-gradient(135deg, #111 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

/* Fix: Gems/Rudraksha pages have dark overlay, so title must remain Gold even in Light Mode */
[data-theme="light"] .gems-header-text .luxurious-title {
    background: linear-gradient(to right, #FFD700, #FDB931, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

[data-theme="dark"] {
    --bg-main: #121212; 
    --text-main: #eeeeee;
    --h-bg: rgba(30, 30, 30, 0.95);
    --h-border: rgba(255,255,255,0.1);
    --overlay-bg: rgba(18, 18, 18, 0.98);
    --bg-card: #1e1e1e;
    --border: #333;
    --card-bg: #1e1e1e;
    --p-dark: #ffffff;
    --p-text: #cccccc;
    --contact-bg: #1a2726;
    --shadow-color: rgba(0,0,0,0.5);
    --border-color: #333;
    --bg-grad-1: rgba(40, 30, 20, 0.4);
    --bg-grad-2: rgba(30, 40, 50, 0.4);
    --bg-grad-3: rgba(40, 20, 40, 0.2);
    --card-bg-glass: rgba(30, 30, 30, 0.6);
    --price-color: #e74c3c;
    --success: #2e7d32;
}

* { box-sizing: border-box; outline: none; }
body { 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    padding-top: 80px; 
    transition: 0.3s background-color, 0.3s color;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
/* Premium Liquid Glass Buttons */
/* Premium Radiant Buttons */
.doiba-btn { 
    display: inline-flex; justify-content: center; align-items: center;
    padding: 14px 32px; border-radius: 50px; 
    text-decoration: none; font-weight: 800; font-size: 14px; 
    transition: all 0.3s ease; 
    border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
    position: relative; overflow: hidden; z-index: 1;
    background-size: 200% auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Radiant Red */
.btn-brand {
    background-image: linear-gradient(to right, #FF0030 0%, #FF512F 51%, #FF0030 100%);
    color: #fff !important;
}
.btn-brand:hover {
    background-position: right center; /* change the direction of the change here */
    box-shadow: 0 10px 25px rgba(254, 0, 48, 0.4);
    transform: translateY(-2px);
}

/* Radiant Green */
.btn-chat-main {
    background-image: linear-gradient(to right, #11998e 0%, #38ef7d 51%, #11998e 100%);
    color: #fff !important;
}
.btn-chat-main:hover {
    background-position: right center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Main Container Fix */
.doiba-container {
    width: 100%;
    max-width: 1300px; /* Constrain width */
    margin: 0 auto;
    padding: 0 20px;
}

/* ... Header / Footer / Home Styles ... */

/* --- NEW FINAL PRODUCT GRID STYLES --- */
.dd-grid-wrapper { width: 100%; max-width: 100%; padding: 40px 0; background-color: var(--bg-main); font-family: 'Poppins', sans-serif; box-sizing: border-box; }
.dd-grid-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

/* ... */

/* Hero Section Alignment Fix */
.hero-sec { 
    display: flex; 
    flex-direction: column-reverse; 
    gap: 40px; 
    padding: 40px 0; 
    align-items: center; 
    justify-content: center; /* Center content */
}
@media (min-width: 992px) { 
    .hero-sec { 
        flex-direction: row; 
        padding: 60px 0; 
        text-align: left; 
        justify-content: space-between; /* Space out but constrained by container */
    } 
    .hero-txt { flex: 0 0 50%; } 
    .hero-img-box { flex: 0 0 45%; text-align: right; } 
.hero-main-img { 
    max-width: 100%; 
    width: auto; 
    max-height: 500px; 
    display: inline-block; 
    border-radius: 40px; /* Round the square */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* Lift it */
    transition: transform 0.3s;
}
.hero-main-img:hover { transform: scale(1.02); }
}
[data-theme="dark"] .dd-image-box { background: #111; }

.dd-slider-track { display: flex; height: 100%; width: 100%; transition: transform 0.8s ease-in-out; }
.dd-slider-img { min-width: 100%; height: 100%; object-fit: cover; display: block; }
.dd-status-dot { position: absolute; top: 10px; right: 10px; width: 8px; height: 8px; background-color: #FFC107; border-radius: 50%; z-index: 5; }

.dd-title { 
    font-size: 15px; font-weight: 700; color: var(--text-main); text-align: center; 
    margin: 5px 0 5px 0; line-height: 1.3; height: 40px; 
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; 
}
.dd-title a { text-decoration: none; color: inherit; }

.dd-price-wrapper { text-align: center; margin-bottom: 12px; }
.dd-price-badge { 
    background: transparent;
    color: #D32F2F; 
    font-size: 16px; 
    font-weight: 800; 
    letter-spacing: 0.5px;
}
[data-theme="dark"] .dd-price-badge { color: #ff5252; }

/* Info Grid */
.dd-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.dd-info-box { border-radius: 8px; padding: 8px; display: flex; flex-direction: column; height: 100%; font-size: 11px; }

.dd-cost-box { background: #F8F9FA; border: 1px solid #E9ECEF; }
.dd-benefits-box { background-color: #E6F4EA !important; border: 1px solid #CEEAD6; }
[data-theme="dark"] .dd-cost-box { background: #222; border-color: #333; }
[data-theme="dark"] .dd-benefits-box { background: #1a2a1a !important; border-color: #113311; }

.dd-box-label { 
    font-size: 10px; font-weight: 700; text-transform: uppercase; 
    border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 4px; margin-bottom: 5px; text-align: center; 
}
.dd-cost-box .dd-box-label { color: #555; }
.dd-benefits-box .dd-box-label { color: #1E8E3E; }
[data-theme="dark"] .dd-cost-box .dd-box-label { color: #aaa; }
[data-theme="dark"] .dd-benefits-box .dd-box-label { color: #66bb6a; }

.dd-box-row { display: flex; justify-content: space-between; font-size: 10px; color: #666; margin-bottom: 2px; }
[data-theme="dark"] .dd-box-row { color: #888; }
.dd-box-row span.val { font-weight: 600; color: #333; }
[data-theme="dark"] .dd-box-row span.val { color: #ddd; }
span.dd-highlight-val { color: #D32F2F; font-weight: bold; } 

.dd-total-row { 
    border-top: 1px solid rgba(0,0,0,0.1); margin-top: 4px; padding-top: 4px; 
    font-weight: 800; display: flex; justify-content: space-between; font-size: 11px; color: #333;
}
[data-theme="dark"] .dd-total-row { color: #fff; border-top-color: #444; }
.dd-total-price { color: #D32F2F; }
[data-theme="dark"] .dd-total-price { color: #ff5252; }

.dd-desc { font-size: 10px; line-height: 1.3; color: #137333; font-weight: 500; }
[data-theme="dark"] .dd-desc { color: #81c784; }

/* Buttons */
.dd-btn-group { display: flex; gap: 8px; margin-top: auto; }
.dd-btn { 
    flex: 1; padding: 8px 0; border-radius: 8px; border: none; 
    font-size: 12px; font-weight: 600; text-align: center; text-decoration: none; 
    cursor: pointer; color: white !important; transition: opacity 0.2s;
}
.dd-btn-buy { background-color: #FE0030; } 
.dd-btn-chat { background-color: #25D366; } 
.dd-btn:hover { opacity: 0.85; }

/* --- OTHER SECTIONS --- */
/* Search Overlay from previous step retained... */
.dd-header-wrapper { position: fixed; top: 15px; left: 0; width: 100%; z-index: 9999; display: flex; flex-direction: column; align-items: center; padding: 0 10px; pointer-events: none; }
.dd-header-pill { pointer-events: auto; background: var(--h-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--h-border); border-radius: 50px; padding: 8px 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.05); width: 100%; max-width: 1300px; }
.dd-h-logo a { display: flex; align-items: center; text-decoration: none; color: var(--text-main); }
.dd-h-logo i { font-size: 24px; color: var(--brand); margin-right: 8px; }
.dd-h-logo-text h2 { font-size: 20px; font-weight: 800; margin: 0; color: var(--text-main); }
.dd-h-logo-text span { color: var(--brand); }
.dd-h-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.dd-h-nav a { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 14px; text-transform: uppercase; transition: 0.3s; }
.dd-h-nav a:hover, .dd-h-nav a.active { color: var(--brand); }
.dd-h-actions { display: flex; align-items: center; gap: 12px; }
.dd-search-btn { width: 36px; height: 36px; display: flex; justify-content: center; align-items: center; border-radius: 50%; background: rgba(0,0,0,0.04); cursor: pointer; color: var(--text-main); transition: 0.3s; }
[data-theme="dark"] .dd-search-btn { background: rgba(255,255,255,0.1); }
.dd-search-btn:hover { background: var(--brand); color: #fff; transform: scale(1.05); }
.dd-theme-toggle { width: 46px; height: 24px; background: #e0e0e0; border-radius: 20px; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 0 5px; }
[data-theme="dark"] .dd-theme-toggle { background: #555; }
.toggle-circle { width: 18px; height: 18px; background: white; border-radius: 50%; position: absolute; left: 3px; transition: 0.3s; }
[data-theme="dark"] .toggle-circle { left: 25px; }
.dd-wa-btn { background: var(--wa); color: white; text-decoration: none; padding: 8px 16px; border-radius: 30px; font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 6px; transition: 0.3s; }
.dd-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

.dd-search-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--overlay-bg); z-index: 99999; opacity: 0; visibility: hidden; pointer-events: none; transition: 0.3s; display: flex; flex-direction: column; align-items: center; padding-top: 80px; }
.dd-search-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.dd-search-close { position: absolute; top: 25px; right: 25px; font-size: 28px; color: #999; cursor: pointer; transition: 0.3s; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 50%; background: rgba(0,0,0,0.03); }
.dd-search-container { width: 90%; max-width: 600px; text-align: center; }
.dd-input-group { position: relative; width: 100%; border-bottom: 2px solid #ddd; display: flex; align-items: center; }
[data-theme="dark"] .dd-input-group { border-bottom-color: #444; }
.search-icon-pre { font-size: 22px; color: #999; margin-right: 15px; }
#liveSearchInput { width: 100%; padding: 15px 0; border: none; background: transparent; font-size: 22px; color: var(--text-main); outline: none; font-weight: 600; }
.dd-search-results { margin-top: 30px; text-align: left; max-height: 60vh; overflow-y: auto; opacity: 0; transform: translateY(10px); transition: 0.3s; }
.dd-search-results.has-results { opacity: 1; transform: translateY(0); }
.dd-results-list li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.dd-results-list a { display: flex; align-items: center; padding: 12px; text-decoration: none; border-radius: 12px; transition: 0.2s; gap: 15px; }
[data-theme="dark"] .dd-results-list a:hover { background: rgba(255,255,255,0.05); }
.dd-res-img { width: 45px; height: 45px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f0f0f0; }
.dd-res-img img { width: 100%; height: 100%; object-fit: cover; }
.dd-res-info { display: flex; flex-direction: column; overflow: hidden; justify-content: center; flex: 1; }
.dd-res-title { font-size: 14px; font-weight: 600; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
.dd-res-price { font-size: 13px; color: var(--brand); font-weight: 700; margin-top: 2px; }
.dd-search-section-title { 
    padding: 10px 15px 5px 15px; font-size: 11px; font-weight: 800; color: #888; 
    text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Menu */
.dd-mobile-toggle { display: none; font-size: 20px; color: var(--text-main); cursor: pointer; padding: 5px; }
.dd-mobile-menu { pointer-events: auto; width: 95%; max-width: 400px; background: var(--h-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--h-border); border-radius: 20px; margin-top: 10px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: none; flex-direction: column; animation: slideDown 0.3s ease forwards; }
.dd-mobile-menu.active { display: flex; }
.dd-mobile-menu ul { list-style: none; padding: 0; margin: 0; text-align: center; }
.dd-mobile-menu li { margin-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 8px; }
.dd-mobile-menu a { text-decoration: none; color: var(--text-main); font-weight: 600; transition: 0.3s; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Slider */
.hero-slider-wrapper { width: 100%; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); cursor: grab; }
.hero-slider-wrapper:active { cursor: grabbing; }
@media (min-width: 768px) { .hero-slider-wrapper { max-width: 1200px; margin: 20px auto; border-radius: 20px; } }
.hero-track { display: flex; transition: transform 0.5s ease-out; width: 100%; }
.hero-slide { min-width: 100%; position: relative; }
.hero-slide a { display: block; width: 100%; height: 100%; }
.hero-slide img { width: 100%; display: block; object-fit: cover; }
@media (max-width: 767px) { .hero-slide img { height: auto; aspect-ratio: 16/9; } }
@media (min-width: 768px) { .hero-slide img { height: 500px; } }
.hero-dots { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.h-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.h-dot.active { background: #fff; transform: scale(1.3); }

/* Hero Arrows (Liquid Glass) */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%; 
    border: 1px solid rgba(255, 255, 255, 0.15); /* Glass Border */
    background: rgba(255, 255, 255, 0.05); /* Ultra sheer bg */
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); /* Blur */
    color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 20; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Soft depth */
    overflow: hidden;
}
.hero-arrow::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.hero-arrow:hover { 
    background: rgba(255, 255, 255, 0.15); 
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1); 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.hero-arrow:hover::before { left: 100%; }
.hero-arrow.prev { left: 25px; }
.hero-arrow.next { right: 25px; }

@media(max-width: 768px) { 
    .hero-arrow { 
        width: 32px; height: 32px; /* Smaller on mobile */
        font-size: 12px; 
        left: 5px; 
        background: rgba(0,0,0,0.2); /* Slight dark tint for contrast */
        backdrop-filter: blur(5px);
        border-color: rgba(255,255,255,0.2);
    } 
    .hero-arrow.next { right: 5px; left: auto; } 
}

/* Hero Section */
/* Hero Section - Premium Dark Redesign */
/* Hero Section - Premium Boxed Card */
.hero-sec { 
    display: flex; flex-direction: column-reverse; gap: 40px; padding: 40px 30px; 
    align-items: center;
    background: #050505; 
    border-radius: 30px; /* Big rounded corners */
    margin: 30px 0;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Premium Shadow */
}
[data-theme="dark"] .hero-sec { background: transparent; border: 1px solid rgba(255,255,255,0.05); box-shadow: none; } 

/* Add a gold glow behind */
.hero-sec::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, rgba(0,0,0,0) 70%);
    z-index: 0; pointer-events: none;
}

@media (min-width: 992px) { 
    .hero-sec { flex-direction: row; padding: 60px 60px; text-align: left; justify-content: space-between; } 
    .hero-txt { flex: 1; z-index: 2; padding-left: 0; } 
    .hero-img-box { flex: 1; text-align: right; z-index: 1; display:flex; justify-content:flex-end; } 
}

.hero-title { 
    font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 25px; 
    color: var(--text-main); /* Uses variable for Light/Dark adaptability */
}
.hero-desc { color: var(--text-main); font-size: 16px; margin-bottom: 35px; max-width: 550px; line-height: 1.8; font-weight: 500; opacity: 0.9; }

.hero-title .hero-highlight { 
    font-family: 'Playfair Display', serif; 
    font-style: italic;
    background: linear-gradient(135deg, #FFD700 0%, #E6C200 50%, #FFD700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFD700 !important; /* Fallback Force */
    font-size: 1.1em;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

@media (min-width: 992px) { .hero-title { font-size: 58px; } }

/* About Hero Fix */
.about-hero-content {
    position: relative;
    width: 100%;
    z-index: 5;
    color: #fff;
    text-align: left; /* Align like the body content */
}
.about-hero-content h2 { margin-bottom: 10px; font-size: 32px; font-weight: 800; }
@media(min-width:768px){ .about-hero-content h2 { font-size: 48px; } }

/* Categories */
/* Categories - Premium Cards (Theme Adaptive) */
/* Categories - Redesigned Horizontal */
.cat-grid { 
    display: grid; grid-template-columns: 1fr; gap: 20px; margin: 40px 0; 
}
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

.cat-card { 
    background: #fff; 
    border: 1px solid rgba(0,0,0,0.08); 
    border-radius: 24px; 
    padding: 30px; 
    display: flex; flex-direction: row; align-items: center; justify-content: space-between; 
    text-align: left; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    text-decoration: none; 
    position: relative; overflow: hidden;
    min-height: 200px;
}
[data-theme="dark"] .cat-card { background: #1a1a1a; border-color: #333; }
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: #ff0048; }

.cat-text-wrap { flex: 1; padding-right: 20px; z-index: 2; }

.cat-h { 
    font-size: 22px; font-weight: 900; 
    margin-bottom: 8px; text-transform: uppercase; 
    color: #111; letter-spacing: 0.5px;
}
[data-theme="dark"] .cat-h { color: #fff; }

.cat-desc { 
    font-size: 13px; margin-bottom: 30px; 
    color: #ff0048; font-weight: 600; 
    opacity: 1; letter-spacing: 0px;
}

.cat-btn { 
    border: none; 
    color: #fff; 
    background: #ff0048; /* Red */
    padding: 10px 25px; 
    border-radius: 50px; 
    font-weight: 700; font-size: 12px; 
    text-transform: capitalize; 
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 0, 72, 0.3);
    display: inline-block;
}
.cat-card:hover .cat-btn { background: #d6003b; transform: scale(1.05); }

.cat-img { 
    width: 140px; height: 140px; 
    object-fit: cover; /* Changed to cover to fill the square box */
    margin-bottom: 0; 
    flex-shrink: 0;
    transition: 0.4s;
    background: transparent;
    border-radius: 16px; /* Rounded corners */
    border: 2px solid rgba(0,0,0,0.04); /* Subtle border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Soft shadow */
}
[data-theme="dark"] .cat-img {
    border-color: rgba(255,255,255,0.08); /* Dark mode border */
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.cat-card:hover .cat-img { transform: scale(1.05) rotate(3deg); border-color: rgba(254, 0, 48, 0.2); }

/* Mobile Adjustments */
@media (max-width: 600px) {
    .cat-card { padding: 20px; min-height: auto; }
    .cat-img { width: 100px; height: 100px; }
    .cat-h { font-size: 18px; }
    .cat-desc { font-size: 11px; margin-bottom: 15px; }
    .cat-btn { padding: 8px 20px; font-size: 11px; }
}

/* Contact / Other */
/* --- PREMIUM CONTACT SECTION REDESIGN (Refined) --- */
.contact-sec {
    background: linear-gradient(135deg, #051916 0%, #000000 100%);
    padding: 0;
    border-radius: 20px;
    margin: 15px 5px;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Background Decoration (Golden Glow) - Keep subtle */
.contact-sec::before {
    content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}

.contact-flex {
    padding: 30px 20px;
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 10; /* Content on top */
}

/* Integrated Mala Image (Centered Background Blend) */
.c-img-box {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px; /* Large center watermark */
    opacity: 0.15; /* Subtle blend */
    pointer-events: none;
    z-index: 1; /* Behind content */
    display: flex; justify-content: center; align-items: center;
}
.c-mala-large {
    width: 100%; height: 100%; object-fit: contain;
    /* Rotation removed for perfect center symmetry if desired, or kept subtle */
    transform: rotate(0deg); 
    /* Mobile Animation: Just Rotate, No Scale */
    animation: rotateMalaMobile 60s linear infinite;
}
@keyframes rotateMalaMobile {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.c-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    background: linear-gradient(to right, #FFD700, #FFF8E1); /* Bright Gold */
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 5px; text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Shadow for readability over image */
}
.contact-info p { opacity: 0.9; color: #ddd; font-size: 13px; text-align: center; margin-bottom: 20px; font-weight: 400; }

.c-form { width: 100%; max-width: 350px; position: relative; }

/* Premium Inputs (High Contrast White Box) */
.c-input {
    background: #ffffff !important; /* Force White */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 15px;
    color: #333 !important; /* Dark Text */
    font-size: 14px; width: 100%; 
    margin-bottom: 15px;
    transition: 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Lift it */
}
.c-input:focus { 
    background: #fff;
    border-color: #25D366; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.c-input::placeholder { 
    color: #666 !important; /* Visible Gray Placeholder */
    font-size: 12px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
    font-weight: 700;
    opacity: 1; /* Ensure distinctness */
}

/* Button Update */
.btn-chat-main {
    width: 100%;
    margin-top: 5px;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-weight: 800; letter-spacing: 1px;
}

/* Landscape / Desktop */
@media (min-width: 992px) {
    .contact-sec { margin: 60px 0; padding: 0; }
    .contact-flex { flex-direction: row; padding: 60px; text-align: left; }
    .c-title, .contact-info p { text-align: left; }
    
    /* Desktop Image: Correctly Zoomed & Positioned */
    .c-img-box { 
        position: absolute; 
        right: 100px; /* Moved Inside */
        top: 0; bottom: 0; 
        width: 50%; height: 100%; 
        display: flex; align-items: center; justify-content: center;
        opacity: 1; 
        mix-blend-mode: normal;
        left: auto;
        /* animation: floatImg 6s ease-in-out infinite; <--- REMOVED FLOAT */
        z-index: 1;
        pointer-events: none;
        transform: none; 
    }
    .c-mala-large {
        width: 100%; height: 100%; 
        object-fit: contain; 
        /* Base Transform */
        transform: rotate(0deg) scale(1.5); 
        filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
        /* ROTATION ANIMATION ADDED HERE */
        animation: rotateMala 60s linear infinite;
    }
    /* New Rotation Keyframes */
    @keyframes rotateMala { 
        from { transform: rotate(0deg) scale(1.5); } 
        to { transform: rotate(360deg) scale(1.5); } 
    }

    .c-title { font-size: 36px; position: relative; z-index: 2; }
    .contact-info p { font-size: 16px; margin-bottom: 30px; position: relative; z-index: 2; }
    .c-input { margin-bottom: 25px; padding: 15px; position: relative; z-index: 2; } /* Restored box style on desktop */
}
.testi-grid, .trust-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
@media (min-width: 768px) { .testi-grid, .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card, .trust-item, .faq-box { background: var(--card-bg); padding: 20px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 4px 10px var(--shadow-color); }
.trust-item { display: flex; gap: 15px; align-items: center; }
.testi-img-rect { width: 50px; height: 50px; border-radius: 8px; margin-bottom: 10px; object-fit: cover; }
.touch-ripple { position: absolute; width: 20px; height: 20px; background: radial-gradient(circle, rgba(255,193,7,0.8) 0%, rgba(254,0,48,0) 70%); border-radius: 50%; transform: translate(-50%, -50%); animation: ripple-anim 0.6s linear forwards; pointer-events: none; z-index: 9999; }
@keyframes ripple-anim { 0% { width: 0px; height: 0px; opacity: 0.8; } 100% { width: 150px; height: 150px; opacity: 0; } }
/* --- PREMIUM FOOTER (MATCHING USER IMAGE) --- */
.site-footer { 
    background: transparent; 
    padding: 60px 0 40px; 
    margin-top: 40px;
}
.footer-box { 
    background: #fff; 
    border-radius: 24px; 
    padding: 40px 50px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    max-width: 1300px; /* WIDENED from 1100px */
    width: 100%;
    margin: 0 auto;
}
[data-theme="dark"] .footer-box { background: #1e1e1e; border-color: #333; }

/* Columns - More balanced 'Fixed' feel */
.footer-brand { flex: 0 0 35%; min-width: 280px; }
.footer-links { flex: 0 0 20%; min-width: 150px; }
.footer-sms { flex: 0 0 35%; min-width: 280px; }

/* Brand */
.footer-brand p { color: #666; font-size: 13px; line-height: 1.6; margin-top: 10px; max-width: 300px; }
[data-theme="dark"] .footer-brand p { color: #aaa; }

/* Social Icons (Pink & Red) */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { 
    width: 36px; height: 36px; border-radius: 50%; 
    background: #FFF1F3; color: #FE0030; /* Updated Brand Color */
    display: flex; justify-content: center; align-items: center; 
    transition: 0.3s; box-shadow: 0 2px 5px rgba(254, 0, 48, 0.1);
}
.social-btn:hover { background: #FE0030; color: #fff; transform: translateY(-3px); }
[data-theme="dark"] .social-btn { background: #330000; color: #ff5252; }

/* Headings */
.footer-links h4, .footer-sms h4 { 
    font-size: 14px; font-weight: 700; color: #FE0030; /* Updated Brand Color */
    text-transform: uppercase; margin-bottom: 20px; 
}
[data-theme="dark"] .footer-links h4, .footer-sms h4 { color: #ff5252; }

/* Links */
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: #444; font-size: 14px; font-weight: 500; transition: 0.2s; }
.footer-links a:hover { color: #FE0030; padding-left: 5px; } /* Updated Brand Color */
[data-theme="dark"] .footer-links a { color: #bbb; }

/* SMS Input (Rounded) */
.sms-input-group { 
    position: relative; width: 100%; margin-top: 15px; 
}
.sms-input-group input { 
    width: 100%; padding: 15px 20px; padding-right: 50px; 
    border-radius: 50px; border: 1px solid #eee; background: #F9F9F9; 
    font-size: 13px; transition: 0.3s;
}
.sms-input-group input:focus { border-color: #FE0030; background: #fff; } /* Updated Brand Color */
[data-theme="dark"] .sms-input-group input { background: #2c2c2c; border-color: #444; color: #fff; }

.sms-send-btn { 
    position: absolute; right: 5px; top: 5px; 
    width: 38px; height: 38px; border-radius: 50%; 
    background: #FE0030; color: #fff; border: none; /* Updated Brand Color */
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.sms-send-btn:hover { background: #d50027; transform: scale(1.05); }

/* Responsive */
@media (max-width: 900px) {
    .footer-box { flex-direction: column; padding: 30px; text-align: center; }
    .footer-brand, .footer-links, .footer-sms { flex: 1; width: 100%; }
    .footer-brand p { margin: 10px auto; }
    .social-links { justify-content: center; }
    .footer-links h4, .footer-sms h4 { text-align: center; }
}
/* --- ULTIMATE SHOP GRID (FROM USER SNIPPET) --- */
/* Wrapper & Header Spacing */
.shop-custom-wrapper {
    font-family: 'Poppins', sans-serif;
    width: 100%; max-width: 1300px; margin: 0 auto;
    padding: 15px 10px;
    padding-top: 40px !important; /* Adjusted from snippet to fit non-WP header */
}
@media (min-width: 768px) { .shop-custom-wrapper { padding-top: 60px !important; } }
@media (min-width: 1024px) { .shop-custom-wrapper { padding-top: 80px !important; } }

/* Grid Layout */
/* Grid Layout - Optimized Density */
.shop-custom-grid {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 2 Columns on Mobile */
    gap: 12px;
}
@media (min-width: 600px) { .shop-custom-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 900px) { .shop-custom-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; } }
@media (min-width: 1200px) { .shop-custom-grid { gap: 30px; } }

/* Split Box (Cost & Benefits) */
.shop-split-box { display: flex; gap: 5px; margin-bottom: 8px; }

/* Card Design - Premium White Pill Style */
.shop-card {
    background: #fff; 
    border-radius: 24px; /* Increased Radius */
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 15px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
[data-theme="dark"] .shop-card { background: #1e1e1e; border-color: #333; }

/* In-Card Slider */
.shop-img-wrap {
    width: 100%; aspect-ratio: 1/1; 
    border-radius: 20px; /* Highly Rounded Corners */
    overflow: hidden;
    background: #F5F5F5; 
    margin-bottom: 5px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03); /* Subtle border for definition */
}
[data-theme="dark"] .shop-img-wrap { background: #2c2c2c; }
.shop-slider-track {
    display: flex; height: 100%; width: 100%;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.shop-slider-track::-webkit-scrollbar { display: none; }
.shop-img {
    flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover;
    scroll-snap-align: center;
}
.shop-img { min-width: 100%; height: 100%; object-fit: cover; display: block; } /* Cover ensures full fill */

.shop-slider-dot {
    position: absolute; top: 15px; right: 15px;
    width: 8px; height: 8px; background: #FFC107;
    border-radius: 50%; z-index: 5;
    animation: pulse-yellow 2s infinite;
}

/* Typography */
.shop-title { 
    font-size: 16px; font-weight: 800; color: var(--text-main); text-align: center; 
    margin: 10px 0 5px 0; line-height: 1.3; 
    height: 40px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
}
.shop-title a { text-decoration: none !important; color: inherit; }

/* Price - Red Pill Style (Brand Color) */
.shop-price { 
    font-size: 14px; font-weight: 700; color: #fff; 
    background: #FE0030; /* Brand Color Pill */
    display: inline-block !important; /* Force inline-block for pill shape */
    padding: 4px 18px; 
    border-radius: 50px;
    margin: 5px auto 15px auto; /* Center it */
    box-shadow: 0 4px 10px rgba(254, 0, 48, 0.2);
}
[data-theme="dark"] .shop-price { background: #d50027; color: #fff; }

/* Split Box (Cost & Benefits) */
.shop-split-box { display: flex; gap: 10px; margin-bottom: 15px; }

/* Mobile Optimization for 2-Col Grid */
@media (max-width: 600px) {
    .shop-split-box { flex-direction: row; gap: 2px; } /* Tighter gap */
    .shop-col { width: 50%; padding: 4px; border-radius: 6px; } 
    .shop-card { padding: 6px; }
    .shop-title { font-size: 11px; margin-bottom: 5px; height: 32px; overflow:hidden; line-height: 1.2; }
    .shop-price { font-size: 11px; padding: 2px 8px; margin-bottom: 8px; }
    
    /* Ultra Compact Inner Content */
    .shop-h { font-size: 7px; margin-bottom: 3px; letter-spacing: 0; }
    .shop-row { 
        font-size: 8px; /* Small readable size */
        margin-bottom: 2px; 
        letter-spacing: -0.3px; /* Save horizontal space */
        align-items: center; /* Ensure alignment */
    }
    .shop-row span.val { font-weight: 700; }
    
    .shop-row.total { 
        font-size: 8.5px; 
        margin-top: 5px; 
        padding-top: 4px; 
        border-top-style: dashed; /* Make it look like a receipt total */
    }
    .shop-ben-txt { font-size: 8px; -webkit-line-clamp: 5; line-clamp: 5; line-height: 1.2; }
    .shop-star { font-size: 8px; }
    
    /* Smaller Buttons */
    .shop-btns { margin-top: 5px; gap: 5px; }
    .shop-btn { padding: 4px 0; font-size: 9px; border-radius: 4px; height: auto; line-height: 1; }
    .shop-slider-dot { width: 4px; height: 4px; }

    /* Maximize Card Width */
    .shop-custom-grid { padding: 0 2px !important; } 
    
    /* Remove "Total"/"T" completely, only show Price */
    .shop-row.total span:first-child { display: none !important; }
    .shop-row.total { 
        justify-content: center; 
        margin-top: 4px; padding-top: 2px; 
        border-top: none; 
    }
    .shop-row.total span.val { font-size: 11px; }

    /* Even Smaller Buttons */
    .shop-btns { margin-top: 4px; gap: 4px; }
    .shop-btn { padding: 4px 0; font-size: 9px; border-radius: 4px; height: auto; text-transform: uppercase; letter-spacing: 0.5px; }
    .shop-slider-dot { width: 3px; height: 3px; }
}

.shop-col { flex: 1; border-radius: 12px; padding: 10px; display: flex; flex-direction: column; justify-content: space-between; }

.shop-col.cost { background: #F8F9FA; border: 1px solid #F1F3F5; }
[data-theme="dark"] .shop-col.cost { background: #111; border-color: #333; }

.shop-h { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; color: #888; margin-bottom: 8px; border: none; padding: 0; }

.shop-row { display: flex; justify-content: space-between; margin-bottom: 4px; color: #666; font-size: 10px; }
.shop-row span.val { font-weight: 600; color: #333; }
[data-theme="dark"] .shop-row span.val { color: #ccc; }

.shop-row.total { margin-top: 6px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 6px; font-weight: 800; color: #FE0030; font-size: 11px; }
[data-theme="dark"] .shop-row.total { border-color: #444; color: #ff5252; }
.shop-row.total span.val { color: #FE0030; }
.shop-row.total span:first-child { margin-right: 5px; } /* Reduced margin */
[data-theme="dark"] .shop-row.total span.val { color: #ff5252; }

.shop-col.benefit { background: #F9F9F9; border: 1px solid #F1F1F1; }
[data-theme="dark"] .shop-col.benefit { background: #1b1b1b; border-color: #333; }
.shop-col.benefit .shop-h { color: #555; margin-bottom: 5px; }

.shop-ben-txt { 
    color: #555; line-height: 1.5; text-align: left; 
    font-size: 10px; padding: 0; font-weight: 400; 
    display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
[data-theme="dark"] .shop-ben-txt { color: #aaa; }
.shop-star { color: #FFA000; text-align: right; font-size: 12px; line-height: 1; margin-top: auto; }

/* Shop Buttons */
.shop-btns { display: flex; gap: 10px; margin-top: auto; }
.shop-btn { 
    flex: 1; padding: 10px 0; border-radius: 8px; 
    text-align: center; color: #fff !important; text-decoration: none !important;
    font-weight: 700; font-size: 13px; border: none; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.2s;
}
.shop-btn:hover { opacity: 0.95; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }
.shop-btn.buy { background: #FE0030; } /* Brand Red Buy Button */
.shop-btn.chat { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); } /* Premium Green Chat Button */

/* --- REMEDIES / BLOG POSTS --- */
.rem-grid { 
    display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 30px; 
}
@media(min-width: 600px) { .rem-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 992px) { .rem-grid { grid-template-columns: repeat(3, 1fr); } }

.rem-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft Shadow */
    transition: 0.3s;
    display: flex; flex-direction: column;
}
.rem-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--p-brand); }
[data-theme="dark"] .rem-card { background: #151515; border-color: #333; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.rem-img-wrap { width: 100%; height: 220px; overflow: hidden; position: relative; }
.rem-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.rem-card:hover .rem-img { transform: scale(1.05); }

.rem-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.rem-meta { 
    font-size: 10px; font-weight: 800; text-transform: uppercase; 
    color: var(--p-brand); margin-bottom: 15px; letter-spacing: 1px;
}

.rem-title { 
    font-size: 18px; font-weight: 800; margin-bottom: 12px; line-height: 1.4; color: var(--text-main);
}
.rem-title a { text-decoration: none; color: inherit; transition: 0.2s; }
.rem-title a:hover { color: var(--p-brand); }
[data-theme="dark"] .rem-title { color: #fff; }

.rem-excerpt { 
    font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 25px; 
    display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
[data-theme="dark"] .rem-excerpt { color: #aaa; }

.rem-btn { 
    margin-top: auto; 
    display: inline-block; 
    font-size: 12px; font-weight: 700; 
    color: var(--text-main); 
    border-bottom: 2px solid rgba(0,0,0,0.1); 
    padding-bottom: 2px; width: fit-content;
    transition: 0.2s;
}
.rem-btn:hover { color: var(--p-brand); border-color: var(--p-brand); }
[data-theme="dark"] .rem-btn { color: #fff; border-color: rgba(255,255,255,0.2); }
[data-theme="dark"] .rem-btn:hover { color: var(--p-brand); border-color: var(--p-brand); }

/* Mobile Menu Fix for new styles if needed */
@media (max-width: 900px) { .dd-h-nav { display: none; } .dd-mobile-toggle { display: block; margin-right: 10px; } }

/* --- PREMIUM ABOUT PAGE --- */
.ab-hero {
    text-align: center; padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--card-bg) 100%);
}
.ab-title { font-size: 3rem; font-weight: 800; color: var(--text-main); margin-bottom: 15px; letter-spacing: -1px; }
.ab-sub { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.ab-sec { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.ab-split { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.ab-split.rev { flex-direction: row-reverse; }
.ab-txt { flex: 1; }
.ab-img-box { flex: 1; position: relative; }
.ab-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: rotate(-2deg); transition: 0.5s; background: #ddd; min-height: 300px; object-fit: cover; }
.ab-img-box:hover .ab-img { transform: rotate(0deg) scale(1.02); }

.ab-h2 { font-size: 2rem; font-weight: 700; color: var(--text-main); margin-bottom: 20px; position: relative; display: inline-block; }
.ab-h2::after { content:''; position:absolute; bottom:-10px; left:0; width:50px; height:3px; background:var(--brand); border-radius:2px; }
.ab-p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; margin-bottom: 20px; }

/* Stats Redesign */
.ab-stats-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    background: var(--card-bg); padding: 40px; border-radius: 24px;
    box-shadow: 0 10px 40px var(--shadow-color); border: 1px solid var(--border-color);
}
@media(min-width: 900px) { .ab-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.ab-stat-item { text-align: center; padding: 20px; border-right: 1px solid var(--border-color); }
.ab-stat-item:last-child { border-right: none; }
.ab-stat-num { font-size: 2.5rem; font-weight: 800; background: linear-gradient(45deg, var(--brand), #ff6b6b); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 5px; }
.ab-stat-lbl { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* Mission Cards */
.ab-grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 50px; }
@media(min-width: 768px) { .ab-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.ab-card {
    background: var(--card-bg); padding: 30px; border-radius: 20px; border: 1px solid var(--border-color);
    transition: 0.3s; position: relative; overflow: hidden;
}
.ab-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px var(--shadow-color); border-color: var(--brand); }
.ab-icon { width: 60px; height: 60px; background: var(--bg-body); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--brand); margin-bottom: 20px; box-shadow: 0 5px 15px var(--shadow-color); }
.ab-card-h { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.ab-card-p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 900px) {
    .ab-split { flex-direction: column !important; gap: 30px; text-align: center; }
    .ab-h2::after { left: 50%; transform: translateX(-50%); }
    .ab-stat-item { border-right: none; border-bottom: 1px solid var(--border-color); }
    .ab-stat-item:last-child { border-bottom: none; }
    .ab-stat-item:nth-child(2) { border-right: none; } /* Mobile 2x2 fix */
}

/* Why Choose Us */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
@media(min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-card {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 25px; border-radius: 16px; background: #fff;
    border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
[data-theme="dark"] .why-card { background: #1a1a1a; border-color: #333; }
.why-icon {
    width: 50px; height: 50px; background: #FFF1F3; color: #FE0030;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
[data-theme="dark"] .why-icon { background: #330000; color: #ff5252; }

/* Founder Quote */
.founder-quote {
    font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px;
    text-align: center; max-width: 800px; margin: 60px auto; color: var(--text-main);
    position: relative; padding: 0 40px;
}
.founder-quote::before { content: '"'; font-size: 80px; color: var(--p-brand); opacity: 0.2; position: absolute; left: 0; top: -20px; }
.founder-sig { font-family: 'Poppins', sans-serif; font-style: normal; font-size: 14px; font-weight: 700; margin-top: 20px; display: block; color: var(--p-brand); }
/* --- CONTACT SECTION (HOMEPAGE) --- */
.contact-sec {
    background: #0d1b16; /* Dark Greenish Black */
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}
.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.contact-info {
    flex: 1; /* Takes remaining space */
    max-width: 600px;
}
.c-title { font-size: 32px; font-weight: 800; margin-bottom: 5px; color: #a9f0d1; }
.c-form .c-input {
    width: 100%; padding: 15px; margin-bottom: 15px;
    border-radius: 10px; border: none; outline: none;
    font-size: 14px;
}
.c-img-box {
    width: 300px; /* Fixed width for image */
    flex-shrink: 0;
    display: flex; justify-content: center;
}
.c-mala-large {
    width: 100%; height: auto;
    filter: drop-shadow(0 0 20px rgba(0,255,100,0.1));
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .contact-flex { flex-direction: column; text-align: center; }
    .contact-info { width: 100%; }
    .c-img-box { width: 100%; max-width: 250px; margin-top: 30px; }
}

/* --- PREMIUM TESTIMONIALS --- */
/* --- PREMIUM TESTIMONIALS --- */
.testi-premium-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Bottom align for "standing" look */
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    position: relative;
    padding-top: 20px;
}
.tp-card {
    text-align: center;
    width: 300px;
    position: relative;
    z-index: 1;
}
.tp-card.center {
    width: 400px; /* Wider center */
    margin-bottom: 0px;
    transform: none; /* Reset transform */
    z-index: 2;
}
.tp-img {
    width: 100%; 
    height: 200px; /* Fixed height for side images */
    border-radius: 0; /* NO CIRCLE */
    object-fit: contain; /* Show full image */
    margin-bottom: 10px;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); /* Soft shadow behind cutout */
}
.tp-img.center-img {
    width: 100%;
    height: 350px; /* Much taller center image */
    object-position: bottom; /* Align to bottom */
}
.tp-quote {
    color: #ff3366; 
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: 500;
    padding: 0 10px;
}
.tp-name {
    color: #fff; 
    font-weight: 800;
    font-size: 20px;
    text-transform: capitalize;
    margin-top: 5px;
}
.tp-name.large {
    font-size: 32px; 
    color: #fff; /* Keep white for consistency, or highlighted */
}

/* Arrows */
.tp-arrow {
    width: 35px; height: 35px;
    background: #ff0033;
    color: #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 100px; /* Lift arrow up between columns */
    box-shadow: 0 5px 15px rgba(255,0,0,0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .testi-premium-wrapper { flex-direction: column; align-items: center; gap: 40px; }
    .testi-premium-wrapper > div { order: 1; } /* Reset order logic if needed */
    .tp-card.center { width: 100%; max-width: 350px; margin-bottom: 0; }
    .tp-card.side { width: 100%; max-width: 300px; }
    .tp-arrow { display: none; }
    .tp-img { height: 250px; }
    .tp-img.center-img { height: 300px; }
}

/* Remedies Grid Fixes */
.rem-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 20px;
}
.rem-card { 
    background: var(--card-bg); 
    border-radius: 20px; 
    overflow: hidden; 
    border: 1px solid var(--border-color); 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column;
}
.rem-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 40px var(--shadow-color); 
    border-color: var(--brand); 
}
.rem-img-wrap { 
    display: block; 
    position: relative; 
    width: 100%; 
    height: 220px; 
    overflow: hidden; 
    background: #f8f8f8; 
}
.rem-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.rem-card:hover .rem-img { 
    transform: scale(1.05); 
}
.rem-content { 
    padding: 25px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    background: var(--card-bg);
}
.rem-meta { 
    font-size: 0.75rem; 
    color: var(--p-brand); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 10px; 
    font-weight: 700; 
}
.rem-title { 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
    line-height: 1.4; 
    color: var(--text-main); 
    font-weight: 700;
}
.rem-title a { color: inherit; }
.rem-title a:hover { color: var(--brand); }
.rem-excerpt { 
    font-size: 0.95rem; 
    color: var(--p-text); 
    margin-bottom: 20px; 
    line-height: 1.6; 
    flex-grow: 1;
}
.rem-btn { 
    font-size: 0.85rem; 
    font-weight: 800; 
    color: var(--text-main); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    display: inline-block;
    border-bottom: 2px solid transparent;
}
.rem-btn:hover { border-color: var(--brand); color: var(--brand); }

/* =========================================
   SINGLE PRODUCT PAGE STYLES (Moved from product.php)
   ========================================= */
.sp-wrapper {
    width: 100%; position: relative;
    padding: 40px 15px; min-height: 100vh; background: transparent; overflow: hidden;
}
.sp-wrapper::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: 
        radial-gradient(at 20% 30%, var(--bg-grad-1) 0px, transparent 50%),
        radial-gradient(at 80% 70%, var(--bg-grad-2) 0px, transparent 50%),
        radial-gradient(at 50% 50%, var(--bg-grad-3) 0px, transparent 60%);
    filter: blur(60px); opacity: 0.8;
}

/* CARD */
.sp-card { 
    background: var(--card-bg-glass); backdrop-filter: blur(25px) saturate(120%);
    border: 1px solid var(--border-color); box-shadow: 0 8px 32px 0 var(--shadow-color);
    padding: 25px; border-radius: 24px; width: 100%; max-width: 1200px; margin: 0 auto; 
    display: flex; flex-direction: column; gap: 40px; 
}
@media (min-width: 992px) { 
    .sp-wrapper { padding: 60px 20px; } 
    .sp-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 50px; } 
}

/* IMAGES */
.sp-img-box { width: 100%; position: relative; }
.sp-main-img-wrap { 
    position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 20px; 
    overflow: hidden; border: 1px solid var(--border-color); 
    box-shadow: 0 15px 35px var(--shadow-color); background: var(--card-bg); 
}
.sp-main-img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform 0.4s; } 
.sp-main-img:hover { transform: scale(1.03); }
.sp-arrow { 
    position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; 
    background: var(--card-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    cursor: pointer; z-index: 10; font-size: 18px; color: var(--text-main); 
    border: 1px solid var(--border-color); transition:0.3s;
}
.sp-arrow:hover { background: var(--brand); color: #fff; transform: translateY(-50%) scale(1.1); }
.sp-prev { left: 15px; } .sp-next { right: 15px; }
.sp-zoom-badge { 
    position: absolute; bottom: 15px; right: 15px; background: var(--card-bg); 
    padding: 5px 12px; border-radius: 30px; font-size: 11px; font-weight: 600; 
    color: var(--text-muted); pointer-events: none; border: 1px solid var(--border-color); 
}
.sp-thumbs { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.sp-t-img { 
    width: 65px; height: 65px; border-radius: 12px; border: 2px solid transparent; 
    object-fit: cover; cursor: pointer; opacity: 0.7; transition: 0.3s; background: var(--card-bg); 
} 
.sp-t-img.active { opacity: 1; border-color: var(--brand); transform: translateY(-3px); }

/* INFO */
.sp-info { width: 100%; }
.sp-code { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 8px; }
.sp-title { font-size: 28px; font-weight: 700; color: var(--text-main); margin: 0 0 15px 0; line-height: 1.2; }
.sp-price { font-size: 30px; font-weight: 700; color: #FFD700; margin-bottom: 25px; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.sp-desc { 
    font-size: 15px; color: var(--text-main); line-height: 1.7; margin-bottom: 35px; padding: 15px; 
    background: var(--bg-body); border-left: 3px solid var(--brand); border-radius: 0 10px 10px 0; 
}
.sp-why-sec {
    margin-top: 50px; padding: 25px; background: var(--card-bg-glass); 
    border-radius: 16px; border: 1px solid var(--border-color);
}
.sp-why-title { font-size: 16px; font-weight: 800; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.sp-why-item { display: flex; align-items: center; gap: 15px; }
.sp-why-icon { width: 40px; height: 40px; background: var(--card-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 18px; box-shadow: 0 4px 10px var(--shadow-color); }

/* BOXES */
.sp-grid-boxes { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 35px; } 
@media (min-width: 480px) { .sp-grid-boxes { grid-template-columns: 1fr 1fr; } }
.sp-box { 
    padding: 25px; border-radius: 16px; background: var(--card-bg); 
    border: 1px solid var(--border-color); display: flex; flex-direction: column; 
    transition: all 0.3s ease; box-shadow: 0 4px 15px var(--shadow-color); 
}
.sp-box:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow-color); border-color: var(--brand); }
.sp-h { 
    font-size: 11px; font-weight: 800; text-transform: uppercase; border-bottom: 2px solid var(--border-color); 
    padding-bottom: 12px; margin-bottom: 15px; text-align: center; color: var(--text-muted); letter-spacing: 1.5px; 
}
.sp-r { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-muted); } 
.sp-r span.b { font-weight: 700; color: var(--text-main); } 
.sp-r span.red { color: #FFD700; font-weight: 800; }
.sp-tot { 
    border-top: 1px dashed var(--border-color); margin-top: 15px; padding-top: 15px; 
    font-weight: 800; color: #FFD700; display: flex; justify-content: space-between; font-size: 16px; 
}
.sp-benefit-text { flex-grow: 1; font-size: 14px; margin: 0; line-height: 1.6; color: var(--success); text-align: center; font-weight: 500; }
.sp-star { text-align: center; margin-top: auto; color: #f1c40f; font-size: 16px; padding-top: 12px; }

/* BUTTONS */
.sp-btns { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; } 
@media (min-width: 480px) { .sp-btns { flex-direction: row; } }
.sp-btn { 
    flex: 1; padding: 16px; border-radius: 14px; text-align: center; color: #fff !important; 
    text-decoration: none; font-weight: 600; font-size: 16px; border: none; 
    backdrop-filter: blur(4px); transition: all 0.3s ease; box-shadow: 0 4px 15px var(--shadow-color); cursor: pointer; 
}
.sp-btn:hover { transform: translateY(-4px); } 
.sp-btn.buy { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); } 
.sp-btn.chat { background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); }

/* TRUST & ACCORDION */
.sp-trust-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 30px; padding: 20px; 
    background: var(--card-bg-glass); border: 1px solid var(--border-color); 
    border-radius: 16px; box-shadow: 0 5px 20px var(--shadow-color); 
}
.sp-trust-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sp-trust-icon { 
    width: 40px; height: 40px; background: var(--card-bg); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 18px; 
    color: var(--brand); box-shadow: 0 4px 10px var(--shadow-color); border: 1px solid var(--border-color); 
}
.sp-trust-txt { font-size: 10px; font-weight: 700; color: var(--text-muted); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }

.sp-acc { 
    margin-bottom: 15px; background: var(--bg-body); border-radius: 12px; overflow: hidden; 
    border: 1px solid var(--brand); box-shadow: 0 4px 15px var(--shadow-color); transition: all 0.3s ease; 
}
.sp-acc:hover { transform: translateY(-2px); background: var(--card-bg); }
.sp-acc[open] { background: var(--card-bg); }
.sp-acc summary { 
    padding: 16px 20px; cursor: pointer; font-size: 15px; font-weight: 700; color: var(--brand); 
    list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; 
}
.sp-acc-content { padding: 0 20px 20px 20px; font-size: 14px; color: var(--text-main); line-height: 1.7; border-top: none; }

/* SECTIONS (Rec/Reviews) */
/* SECTIONS (Rec/Reviews) */
.sp-section-box { 
    margin: 50px auto; /* Centered with top margin */
    width: 95%; max-width: 1200px; /* Constrained width */
    background: var(--card-bg); padding: 30px; border-radius: 24px; 
    box-shadow: 0 8px 30px var(--shadow-color); border: 1px solid var(--border-color);
}

/* PREMIUM BUTTONS (Desktop + Mobile Sticky) */
.sp-btn, .sp-sticky-btn {
    border: none; border-radius: 12px; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer;
    transition: 0.3s; position: relative; overflow: hidden; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; text-decoration: none;
    gap: 8px; /* Added spacing for icons */
}
.sp-btn.buy, .sp-sticky-btn.buy {
    background: linear-gradient(135deg, #FF0036 0%, #FF4B6A 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 54, 0.4);
}
.sp-btn.chat, .sp-sticky-btn.chat {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.sp-btn:hover, .sp-sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}
/* Shine Effect */
.sp-btn::before, .sp-sticky-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s; z-index: -1;
}
.sp-btn:hover::before, .sp-sticky-btn:hover::before { left: 100%; }


    .dd-wa-btn {
        width: 36px !important; height: 36px !important; padding: 0 !important;
        border-radius: 50% !important; justify-content: center !important;
        min-width: 0;
    }
    .dd-wa-btn .wa-text { display: none !important; }
    .dd-wa-btn i { font-size: 18px; margin: 0; }

.sp-section-title { 
    font-size: 22px; font-weight: 800; margin-bottom: 25px; 
    border-left: 5px solid var(--brand); padding-left: 15px; color: var(--text-main); 
}

/* Horizontal Scroll Grid for Mobile */
.sp-rec-grid { 
    display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; 
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.sp-rec-grid::-webkit-scrollbar { display: none; }

.sp-rec-card { 
    min-width: 160px; /* Fixed width for horizontal scroll */
    scroll-snap-align: center;
    background: var(--card-bg); border-radius: 12px; overflow: hidden; text-decoration: none; 
    border: 1px solid var(--border-color); transition: 0.3s; padding: 10px; 
    display: flex; flex-direction: column; gap: 10px; 
}

@media(min-width: 768px) { 
    .sp-rec-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow-x: visible; padding-bottom: 0; }
    .sp-rec-card { min-width: 0; padding: 15px; } 
}
.sp-rec-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px var(--shadow-color); border-color: var(--brand); }
.sp-rec-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; background: #f9f9f9; }
.sp-rec-title { font-size: 14px; font-weight: 700; color: var(--text-main); line-height: 1.3; }
.sp-rec-price { font-size: 14px; font-weight: 700; color: var(--price-color); margin-top: auto; }

/* REVIEWS */
.sp-rev-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.sp-rev-item { padding: 20px; background: var(--bg-body); border-radius: 12px; border: 1px solid var(--border-color); }
.sp-rev-top { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.sp-rev-name { font-weight: 700; color: var(--text-main); }
.sp-rev-stars { color: #f1c40f; }
.sp-rev-txt { font-size: 14px; line-height: 1.6; color: var(--text-main); font-style: italic; opacity: 0.9; }
.sp-rev-form { display: none; margin-top: 20px; padding: 25px; background: var(--bg-body); border-radius: 15px; border: 1px solid var(--border-color); }
.sp-inp { width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--card-bg); color: var(--text-main); }
.star-rating { display: flex; flex-direction: row-reverse; gap: 5px; justify-content: flex-end; margin-bottom: 15px; }
.star-rating input { display: none; }
.star-rating label { font-size: 25px; color: var(--border-color); cursor: pointer; transition: 0.2s; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: #f1c40f; }

/* FOOTER & LIGHTBOX */
.sp-sticky-footer { 
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; 
    background: var(--card-bg-glass); backdrop-filter: blur(10px); padding: 12px 20px; 
    box-shadow: 0 -5px 25px var(--shadow-color); gap: 12px; align-items: center; 
    border-top: 1px solid var(--border-color); 
}
@media (max-width: 767px) { .sp-sticky-footer { display: flex; } }
.sp-sticky-btn { flex: 1; padding: 14px; border-radius: 10px; text-align: center; color: #fff !important; text-decoration: none; font-weight: 600; font-size: 14px; box-shadow: 0 4px 10px var(--shadow-color); }

/* PREMIUM LIGHTBOX */
.sp-lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.sp-lightbox.show { opacity: 1; pointer-events: all; }

.sp-lightbox-img {
    max-width: 90%; max-height: 85vh; border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sp-lightbox.show .sp-lightbox-img { transform: scale(1); }

.sp-close {
    position: absolute; top: 30px; right: 30px;
    width: 50px; height: 50px; background: rgba(255,255,255,0.1);
    color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; cursor: pointer; transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}
.sp-close:hover { background: #ff4757; border-color: #ff4757; transform: rotate(90deg); }

/* --- FLOATING WHATSAPP BUTTON --- */
.float-wa-btn {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px; /* Small size */
    height: 45px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: 0.3s;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
}
.float-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Mobile: Hide Header WA, Show Floating WA */
@media (max-width: 900px) {
    .dd-h-actions .dd-wa-btn { display: none !important; } /* Hide Header Button */
    .float-wa-btn { display: flex; } /* Show Float Button */
}

.sp-lightbox-img {
    max-width: 90%; max-height: 85vh; border-radius: 12px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sp-lightbox.show .sp-lightbox-img { transform: scale(1); }

.sp-close {
    position: absolute; top: 30px; right: 30px;
    width: 50px; height: 50px; background: rgba(255,255,255,0.1);
    color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; cursor: pointer; transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}
.sp-close:hover { background: #ff4757; border-color: #ff4757; transform: rotate(90deg); }

/* --- PREMIUM CONTACT PAGE MOBILE FIX --- */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
    max-width: 1200px; margin: 0 auto;
}
.contact-info-grid { display: flex; flex-direction: column; gap: 20px; }

/* Premium Card Style */
.c-card {
    display: flex; align-items: center; gap: 20px; padding: 25px;
    border-radius: 16px; border: 1px solid var(--border-color);
    background: var(--card-bg); transition: 0.3s;
}
.c-card:hover { transform: translateY(-5px); border-color: var(--brand); box-shadow: 0 10px 30px var(--shadow-color); }

.c-icon-box {
    width: 60px; height: 60px; background: rgba(254, 0, 48, 0.1); color: var(--brand);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.c-label { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--text-main); }
.c-val { color: var(--text-muted); font-size: 14px; }

/* Premium Form Box */
.c-form-box { padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); background: var(--card-bg); box-shadow: 0 10px 40px var(--shadow-color); }
.c-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

/* Dark Inputs Fix */
.c-input {
    width: 100%; padding: 15px 20px; border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-body) !important; /* Force dark background */
    color: var(--text-main) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px; transition: 0.3s; outline: none;
}
.c-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.c-input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(254,0,48,0.1); background: var(--card-bg) !important; }
.c-textarea { height: 150px; resize: none; }

/* Wrapper Padding Fix */
.contact-container-pad { padding: 140px 20px 60px; }

/* Mobile Optimizations */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .c-input-row { grid-template-columns: 1fr; gap: 15px; }
    .c-form-box { padding: 25px; }
    .c-card { padding: 20px; }
    .c-icon-box { width: 50px; height: 50px; font-size: 20px; }
    .contact-container-pad { padding: 100px 20px 40px; }
}


/* --- PREMIUM SEND MESSAGE BUTTON --- */
.btn-msg-custom {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #fe0030 0%, #ff4757 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(254, 0, 48, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.btn-msg-custom::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-msg-custom:hover::after { left: 100%; }
.btn-msg-custom:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(254, 0, 48, 0.6);
}
.btn-msg-custom i { font-size: 20px; }
/* --- ABOUT PAGE MOBILE FIXES --- */
@media (max-width: 600px) {
    /* Header Compact - Aggressive Fix */
    .ab-hero { 
        padding: 10px 20px 20px !important; 
        margin-top: 0 !important; /* Reset to avoid overlap */
    }
    .ab-title { 
        font-size: 1.8rem; 
        line-height: 1.2; 
        margin-top: 0 !important;
        margin-bottom: 10px; 
        padding-top: 0 !important;
    }
    .ab-sub { font-size: 0.95rem; padding: 0; margin-bottom: 10px; }
    
    /* Who We Are Title Fix */
    .ab-h2 { 
        font-size: 1.5rem; 
        margin-top: 0 !important; 
        margin-bottom: 10px; 
        padding-top: 0 !important;
    }
    
    /* Stats & Grid Compact */
    .ab-stats-grid {	
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; padding: 15px; margin-bottom: 20px;
    }
    .ab-stat-item {
        padding: 10px; border: none !important;
        background: var(--bg-body); border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);	
    }
    .ab-stat-num { font-size: 1.5rem; margin-bottom: 0; }
    .ab-stat-lbl { font-size: 0.65rem; margin-top: 5px; }

    .why-grid { gap: 15px; margin-top: 20px; }
    .why-card { padding: 15px; gap: 12px; }
    .why-icon { width: 40px; height: 40px; font-size: 18px; }
    
    .founder-quote { margin: 20px auto; padding: 0 10px; font-size: 16px; }
    .founder-quote::before { font-size: 40px; top: -10px; }
    
    /* Reduce Section Padding */
    .ab-sec { padding: 10px 15px !important; }
}

/* --- Touch Ripple Animation --- */
.touch-ripple {
    position: absolute;
    background: var(--brand);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: rippleEffect 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
    z-index: 9999;
    box-shadow: 0 0 15px var(--brand);
}

@keyframes rippleEffect {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.7;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* --- FIXES START --- */

/* 1. Floating WhatsApp Button (Fixed & Raised on Mobile) */
.float-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
    text-decoration: none;
}
.float-wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); color: #fff; }

@media (max-width: 768px) {
    .float-wa-btn {
        bottom: 100px; /* Raised significantly to avoid covering 'Buy Now' */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* 2. Hero Section Mobile Fixes (Remove artifacts) */
@media (max-width: 768px) {
    .hero-sec {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 20px 0 !important;
        overflow: visible !important;
    }
    .hero-sec::before { display: none !important; } /* Remove gold glow artifact */
    
    /* Ensure image area is clean */
    .hero-img-box { margin-bottom: 20px; }
}

/* 3. Mobile Menu Active State Highlight */
.dd-mobile-menu a.active {
    color: var(--brand);
    padding-left: 10px;
    border-left: 3px solid var(--brand);
}

/* Global Hero Image Styling (Mobile & Desktop) - Fix Square Look */
.hero-main-img {
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- GEMS PAGE LUXURY AESTHETICS --- */
.diamond-bg-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #112225 0%, #000 100%); /* Deep, rich dark blend */
    z-index: 1; pointer-events: none;
    overflow: hidden;
}
/* Tiny stars/shines generated by JS */
.diamond-shine {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.7);
    animation: twinkle 4s infinite ease-in-out;
}
.diamond-shine:nth-child(even) {
    background: #e0faff;
    box-shadow: 0 0 8px 3px rgba(185, 242, 255, 0.5);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.4); }
}

/* Decorative Diamonds in Title */
.diamond-deco {
    color: #b9f2ff; /* Light Diamond Cyan */
    font-size: 1.3em;
    filter: drop-shadow(0 0 10px rgba(185, 242, 255, 0.8));
    animation: floatDiamond 4s ease-in-out infinite;
    display: inline-block;
}
@keyframes floatDiamond {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

/* Rounded & Shadowed Gems Hero */
.gems-hero-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); /* Deep floating shadow */
    margin-top: 20px;
    background: transparent !important; /* Ensure container is clear */
}
/* Allow Diamond Stars to show through black parts of hero image */
.gems-hero-container .hero-slide img {
    mix-blend-mode: screen; 
    filter: brightness(1.2) contrast(1.1); /* Enhance pop against stars */
}
/* Force White Text for Gems Paragraph */
.gems-header-text p {
    color: #ffffff !important;
}

/* Luxury Gold Gradient for Gems Title - High Specificity Override */
html body .gems-header-text h1 {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    animation: shine 4s linear infinite;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}
/* --- DIAMOND / GEMS OVERLAY RESTORED --- */
.diamond-bg-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(20, 20, 30, 0.95) 0%, #000 100%);
    pointer-events: none; z-index: 1;
}
.diamond-shine {
    position: absolute; background: white; border-radius: 50%;
    opacity: 0; animation: twinkle 3s infinite ease-in-out;
    box-shadow: 0 0 5px rgba(255,255,255,0.8);
}
@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}
.diamond-deco { color: #00C2CB; text-shadow: 0 0 10px rgba(0, 194, 203, 0.5); animation: floatDiamond 3s ease-in-out infinite; }
/* --- BOOTSTRAP COMPATIBILITY SHIM (FOR ABOUT PAGE) --- */
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; box-sizing: border-box; }
.align-items-center { align-items: center; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.flex-row-reverse { flex-direction: row-reverse; }
.img-fluid { max-width: 100%; height: auto; }
.text-muted { color: var(--text-muted) !important; opacity: 0.8; }
.rounded-custom { border-radius: 16px; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.3); }

@media (max-width: 768px) {
    .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    .flex-row-reverse { flex-direction: column-reverse; } /* Stack normally on mobile */
}

/* --- ABOUT PAGE SPECIFICS --- */
.section-title {
    font-size: 2.5rem; font-weight: 700; margin-bottom: 20px;
    background: linear-gradient(135deg, var(--brand) 0%, #ff8e5e 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-box { display: flex; gap: 30px; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: white; display: block; margin-bottom: 5px; }
.stat-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.about-img-wrap {
    position: relative; padding: 10px; border: 1px solid var(--border-color);
    border-radius: 20px; background: rgba(255,255,255,0.02);
}
.about-img-wrap img { border-radius: 12px; display: block; }

.check-list { list-style: none; padding: 0; }
.check-list li {
    font-size: 1.1rem; margin-bottom: 12px; display: flex; align-items: center; color: var(--text-main);
}
.check-list li i { color: #2ecc71; margin-right: 12px; font-size: 1.2rem; }

