/* ==========================================================================
   AstroZiva Storefront - Premium E-Commerce Design System (Light Luxury)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

:root {
    /* Logo-Inspired Vibrant Orange Color Palette */
    --bg-primary: #fffaf5;
    /* Soft Orange/Peach Wash */
    --bg-secondary: #ffffff;
    /* Pure Luminescent White */
    --bg-tertiary: #ffedd5;
    /* Elegant Light Orange */

    /* Global Brand Gradient */
    --brand-gradient: linear-gradient(135deg, #ea5a0b 0%, #f9ae10 100%);

    --bg-accent: var(--brand-gradient);
    /* Vibrant Logo Gradient Background */

    --text-primary: #1e293b;
    /* Rich Dark Slate */
    --text-secondary: #334155;
    /* Secondary Gray */
    --text-light: #64748b;
    /* Warm Sophisticated Taupe */

    --accent-gold: #f97316;
    /* Main Logo Orange */
    --accent-gold-hover: #ea580c;
    /* Deeper Orange */
    --accent-gold-light: #fff7ed;
    /* Light Orange Wash */

    --accent-yellow: #facc15;
    /* Vibrant Glowing Logo Highlight Yellow */
    --accent-yellow-hover: #eab308;

    --accent-emerald: #16a34a;
    /* Positive Manifestation Green */
    --accent-rose: #be123c;
    /* Urgent Logo Crimson-Red */

    --border-color: #ffffff;
    /* Sleek Sand-Ivory Border */
    --border-light: #f6eee0;

    /* Premium Visual Shadows */
    --shadow-premium: 0 16px 48px rgba(61, 36, 23, 0.04);
    --shadow-hover: 0 28px 64px rgba(61, 36, 23, 0.08);
    --shadow-gold: 0 12px 36px rgba(223, 165, 24, 0.12);
    --shadow-glow: 0 0 24px rgba(223, 165, 24, 0.08);

    /* Layout & Micro-Interaction Radii */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button,
input,
select,
textarea {
    font-family: 'Outfit', sans-serif;
}

input[type="radio"] {
    accent-color: var(--accent-gold);
}


body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Page Wrapper */
.page-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-header {
    background: #ffffff;
    /* Clean white background for the orange logo */
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
    /* Soft orange border */
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.logo img {
    max-height: 75px;
    /* Larger logo size */
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    /* Highly readable dark chocolate text */
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 1.25rem;
    color: var(--text-primary);
    /* Highly readable dark chocolate icons */
    cursor: pointer;
}

.header-icons i:hover {
    color: var(--accent-gold);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ==========================================================================
   PRODUCT HERO SECTION (E-Commerce Classical Grid)
   ========================================================================== */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 4%;
}

.product-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: start;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Gallery System */
.gallery-container {
    position: sticky;
    top: 90px;
}

@media (max-width: 1024px) {
    .gallery-container {
        position: relative;
        top: 0;
    }
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-image-wrapper:hover img {
    transform: scale(1.04);
}

.lab-cert-stamp {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: #000000;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.8px;
    z-index: 10;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumb-item {
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--bg-secondary);
    opacity: 0.7;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--accent-gold);
    opacity: 1;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Content Details Column */
.breadcrumbs {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.breadcrumbs span {
    color: var(--text-primary);
    font-weight: 600;
}

.product-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.product-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #facc15;
    font-size: 0.95rem;
}

.review-count {
    color: var(--text-secondary);
    margin-left: 6px;
    font-size: 0.85rem;
    text-decoration: underline;
    font-weight: 600;
}

.stock-status {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

/* Pricing Layout */
.price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.original-price {
    font-size: 1.35rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.discount-badge {
    background: #ffe4e6;
    color: #e11d48;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    align-self: center;
}

.tax-shipping-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Short Description Bullet Points */
.product-short-desc {
    margin-bottom: 25px;
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.product-short-desc ul {
    list-style: none;
}

.product-short-desc li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.product-short-desc li span {
    line-height: 1.45;
}

.product-short-desc li i {
    color: var(--accent-emerald);
    margin-top: 3px;
    font-size: 0.95rem;
}

/* Deal Option Cards */
.deal-options-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deal-option-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.deal-option-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

.deal-option-card.active {
    border-color: var(--accent-gold);
    background: #fefcf8;
    box-shadow: var(--shadow-gold);
}

.deal-radio {
    accent-color: var(--accent-gold);
    margin-right: 12px;
    transform: scale(1.15);
    cursor: pointer;
}

.deal-details {
    flex: 1;
}

.deal-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.deal-subtitle {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.deal-prices {
    text-align: right;
}

.deal-price {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.deal-orig-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.deal-badge {
    background: var(--accent-yellow);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

/* Scarcity Section */
.scarcity-alert {
    background: #fffcf0;
    border: 1px solid #f9edd4;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: #c2410c;
    margin: 25px 0 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.03);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: #f3e8d3;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-rose);
    border-radius: 3px;
    width: 35%;
    animation: animate-progress 2s ease-out forwards;
}

/* Buying Actions */
.btn-primary-ecom {
    font-family: 'Outfit', sans-serif;
    background: var(--accent-yellow);
    color: #000000;
    border: 1px solid #e2bf10;
    padding: 18px;
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(253, 216, 20, 0.25);
    margin-bottom: 12px;
}

.btn-primary-ecom:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 216, 20, 0.35);
}

.btn-secondary-ecom {
    font-family: 'Outfit', sans-serif;
    background: var(--accent-brand, #d84315);
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(216, 67, 21, 0.15);
    margin-bottom: 25px;
}

.btn-secondary-ecom:hover {
    background: #b23207;
    transform: translateY(-2px);
}

/* Trust Badges under Buy buttons */
.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 25px 0;
    text-align: center;
}

.trust-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.tf-icon {
    width: 44px;
    height: 44px;
    background: #f4efe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.trust-feature span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.25;
    font-weight: 600;
}

.live-viewer-ecom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: #f7f3eb;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

/* Accordion Specification block */
.accordion-wrapper {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    padding: 0px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--accent-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    padding-bottom: 18px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

/* ==========================================================================
   "WHY ASTROZIVA?" EXCLUSIVE TRUST BLOCK
   ========================================================================== */
.why-astroziva-section {
    background: #fefbf6;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--shadow-premium);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.why-card {
    background: var(--bg-secondary);
    padding: 25px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
}

.why-icon {
    font-size: 2.25rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PROBLEM / SOLUTION & STONE POWER
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header h2 span {
    color: var(--accent-gold);
}

.section-header p {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
}

.prob-sol-section {
    padding: 20px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    flex-wrap: wrap;
}

.benefit-card {
    background: var(--bg-secondary);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.b-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gold-light);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stones Section & Power */
.stones-section {
    padding: 25px 0;
}

.stones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stone-card {
    background: var(--bg-secondary);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.stone-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stone-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid var(--bg-primary);
    box-shadow: 0 0 0 1px var(--border-color), var(--shadow-premium);
}

.stone-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.stone-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stones-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   RITUAL ACTIVATION TIMELINE
   ========================================================================== */
.ritual-section {
    padding: 25px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 30px auto 0;
}

.timeline::before {
    display: none;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
}

.t-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 2;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: var(--shadow-premium);
}

.t-content {
    flex: 1;
    background: var(--bg-secondary);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    border-left: 4px solid var(--accent-gold);
}

.t-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.t-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   VALUE STACK SECTION
   ========================================================================== */
.value-stack-container {
    max-width: 850px;
    margin: 30px auto;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.stack-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.05rem;
    font-weight: 500;
}

.stack-item.bonus {
    color: var(--accent-gold);
    font-weight: 700;
}

.luxury-value-box {
    margin-top: 20px;
    padding: 22px 25px;
    background: #fdfbf7;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px dashed var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.total-value-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    letter-spacing: 0.5px;
}

.final-price-tag {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 2px 0 10px;
}

.countdown-box {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 10px 0 15px;
}

.cd-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    text-align: center;
    min-width: 65px;
    box-shadow: var(--shadow-premium);
}

.cd-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-rose);
    line-height: 1;
}

.cd-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    font-weight: 700;
}

/* ==========================================================================
   ADMIN DASHBOARD STYLES (PRESERVED)
   ========================================================================== */
.admin-layout {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
}

.admin-nav {
    width: 260px;
    transition: width 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-right: 1px solid var(--accent-orange, #FF5722);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
}

.admin-nav.collapsed {
    width: 80px;
    padding: 30px 10px;
}

.admin-nav.collapsed .nav-text {
    display: none;
}

.admin-nav.collapsed .admin-nav-logo {
    justify-content: center !important;
}

.admin-nav.collapsed .admin-nav-logo img {
    margin: 0 auto;
}

.admin-nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
}

.admin-nav-logo img {
    height: 40px;
}

.admin-nav-logo span {
    font-size: 1.2em;
    font-weight: 700;
    color: #FFB74D;
    letter-spacing: 1px;
}

.admin-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.admin-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
    width: 100%;
    white-space: nowrap;
}

.admin-nav-links a i {
    width: 20px;
    text-align: center;
    font-size: 1.1em;
}

.admin-nav-links a:hover,
.admin-nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFB74D;
}

.admin-nav-links a.logout-btn {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4c4c;
}

.admin-nav-links a.logout-btn:hover {
    background: rgba(255, 0, 0, 0.2);
}

.admin-content {
    flex: 1;
    max-width: 100% !important;
    margin: 0;
    width: calc(100% - 260px);
    transition: width 0.3s ease;
    padding: 40px 50px;
    box-sizing: border-box;
}

.admin-content.expanded {
    width: calc(100% - 80px);
}

/* Admin Tables */
.admin-table-container {
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

.admin-table th {
    background: rgba(197, 158, 53, 0.08);
    color: var(--accent-gold);
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95em;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: var(--bg-primary);
}

/* Admin Actions */
.action-btn {
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.action-btn.delete {
    background: rgba(255, 76, 76, 0.1);
    color: #ff4c4c;
    border: 1px solid rgba(255, 76, 76, 0.3);
}

.action-btn.delete:hover {
    background: rgba(255, 76, 76, 0.2);
}

/* Admin Forms */
.admin-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-premium);
    width: 100%;
    box-sizing: border-box;
}

.admin-card h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.admin-input {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1em;
    transition: 0.3s;
}

.admin-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
}

.admin-submit-btn {
    background: var(--accent-gold);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.admin-submit-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.admin-btn-small {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85em;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.admin-btn-small:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

/* ==========================================================================
   DETAILED STORE REVIEWS & FAQ ACCORDIONS (GemsMantra Theme Style)
   ========================================================================== */
.site-footer {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.review-summary-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.rs-score {
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.rs-score-val {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.rs-score-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 5px;
}

.rs-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rs-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.rs-bar-lbl {
    min-width: 45px;
}

.rs-bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.rs-bar-fill {
    height: 100%;
    background: #facc15;
    border-radius: 4px;
}

.rs-cta {
    text-align: center;
    padding-left: 20px;
    border-left: 1px solid var(--border-light);
}

.rs-cta p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.btn-write-review {
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-write-review:hover {
    background: var(--text-primary);
    color: #fff;
    border-color: var(--text-primary);
}

@media (max-width: 768px) {
    .review-summary-block {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .rs-score {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 20px;
    }

    .rs-cta {
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-top: 20px;
        padding-left: 0;
    }
}

/* Verified Buyer Image Row */
.buyer-images-block {
    margin-bottom: 20px;
}

.buyer-images-block h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.buyer-images-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.buyer-img-card {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.buyer-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.buyer-img-card:hover img {
    transform: scale(1.06);
}

/* Individual Review Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 15px;
    flex-wrap: wrap;
}

.review-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    pointer-events: none;
    font-weight: 900;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold-hover);
    box-shadow: var(--shadow-hover);
}

.review-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.review-image:hover {
    transform: scale(1.02);
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid #f6f2eb;
    padding-top: 18px;
}

.r-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5efe4, #dfd2bd);
    color: #8c7450;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.user-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 700;
}

.verified-buyer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--accent-emerald);
    font-weight: 700;
    letter-spacing: 0.3px;
    background: rgba(22, 163, 74, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-left: auto;
    font-weight: 500;
}

/* ==========================================================================
   FAQ ACCORDION & MODAL OVERLAYS
   ========================================================================== */
.faq-section {
    padding: 25px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 5px 24px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 28, 26, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    max-width: 100%;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

.close-modal {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: #ff4c4c;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Form Styles inside Modal */
.birth-details-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(197, 158, 53, 0.08);
}

.btn-final-pay {
    font-family: 'Outfit', sans-serif;
    background: var(--accent-yellow);
    color: #000;
    border: 1px solid #e2bf10;
    padding: 15px;
    width: 100%;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(253, 216, 20, 0.2);
}

.btn-final-pay:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   STICKY BAR & SALES NOTIFICATION TOAST
   ========================================================================== */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 12px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.sticky-active-state {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sticky-price-row strong {
    font-size: 1.35rem;
    color: var(--text-primary);
}

.sticky-price-row small {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.btn-pay-now {
    font-family: 'Outfit', sans-serif;
    background: var(--accent-yellow);
    color: #000;
    border: 1px solid #e2bf10;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-pay-now:hover {
    font-family: 'Outfit', sans-serif;
    background: var(--accent-yellow-hover);
    transform: translateY(-1px);
}

.sales-toast {
    position: fixed;
    bottom: 85px;
    left: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    box-shadow: var(--shadow-premium);
}

.sales-toast.show {
    transform: translateX(0);
}

.toast-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.toast-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.toast-text small {
    color: var(--text-secondary);
    font-size: 0.72rem;
}

/* ==========================================================================
   LUXURIOUS MODERN EMERALD GREEN FOOTER
   ========================================================================== */
.main-footer {
    background: var(--brand-gradient);
    color: rgba(255, 255, 255, 0.9);
    padding: 35px 5% 35px;
    border-top: 4px solid #ea580c;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

/* Horizontal Trust Banner in Footer */
.footer-trust-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.footer-trust-item i {
    font-size: 1.45rem;
    color: var(--accent-gold);
    background: rgba(197, 158, 53, 0.08);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 158, 53, 0.2);
    transition: var(--transition);
}

.footer-trust-item:hover i {
    transform: translateY(-3px) scale(1.05);
    background: rgba(197, 158, 53, 0.15);
    box-shadow: 0 4px 15px rgba(197, 158, 53, 0.4);
    border-color: var(--accent-gold);
}

.footer-trust-item span {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-about img {
    max-height: 75px;
    /* Larger logo size */
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffffff;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(197, 158, 53, 0.4);
    border-color: var(--accent-gold);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--accent-gold);
    font-size: 1.05rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-payments {
    display: flex;
    gap: 12px;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Logo Mobile constraints */
    .logo img {
        max-height: 50px !important;
        transition: var(--transition);
    }

    /* Compact Global Padding & Spacing */
    .main-container {
        padding: 15px 4% !important;
    }

    .product-hero {
        margin-bottom: 25px !important;
        gap: 20px !important;
    }

    .why-astroziva-section {
        padding: 20px !important;
        margin: 25px 0 !important;
    }

    .prob-sol-section {
        padding: 20px 0 !important;
    }

    .section-header {
        margin-bottom: 20px !important;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
    }

    .main-footer {
        padding: 35px 5% 15px !important;
    }

    /* Deal Option Cards Mobile Enhancements */
    .deal-option-card {
        padding: 10px 12px !important;
        margin-bottom: 8px !important;
    }

    .deal-name {
        flex-wrap: wrap !important;
        gap: 4px !important;
    }

    .deal-badge {
        margin-left: 0 !important;
        margin-top: 2px !important;
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }

    .deal-price {
        font-size: 0.95rem !important;
    }

    .deal-orig-price {
        font-size: 0.75rem !important;
    }

    /* Compact Trust Icons */
    .trust-features-grid {
        margin: 15px 0 !important;
        gap: 5px !important;
    }

    .tf-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.95rem !important;
    }

    .trust-feature span {
        font-size: 0.65rem !important;
    }

    /* Value Stack Mobile Enhancements */
    .value-stack-container {
        padding: 18px !important;
        margin: 25px auto !important;
    }

    .stack-item {
        padding: 10px 0 !important;
        font-size: 0.85rem !important;
    }

    .luxury-value-box {
        padding: 15px !important;
        margin-top: 15px !important;
    }

    .final-price-tag {
        font-size: 2rem !important;
    }

    /* Footer Mobile Overrides */
    .footer-trust-banner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding-bottom: 25px !important;
        margin-bottom: 25px !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 500px) {
    .footer-trust-banner {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   DEDICATED POLICY PAGE STYLING
   ========================================================================== */
.policy-main-container {
    display: block !important;
}

.policy-body h3 {
    color: var(--accent-gold) !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 35px 0 15px;
    font-family: 'Outfit', sans-serif;
}

.policy-body p {
    margin-bottom: 20px;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 500;
}

.policy-body ul {
    margin: 15px 0 25px 20px;
    padding-left: 10px;
}

.policy-body li {
    margin-bottom: 12px;
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    list-style-type: square;
}

.policy-body li::marker {
    color: var(--accent-gold);
}

.policy-body a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: var(--transition);
}

.policy-body a:hover {
    color: #ffffff;
}

/* Responsive Policy Padding */
@media (max-width: 768px) {
    .policy-main-container {
        padding: 110px 4% 40px !important;
    }

    .policy-main-container>div {
        padding: 30px 20px !important;
    }

    .policy-main-container h1 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }
}

/* ==========================================================================
   LANDING PAGE RESPONSIVE REFINEMENTS
   ========================================================================== */

/* 1. Dual Columns Grid (Tiger Eye & Buddha Columns) */
.dual-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .dual-columns-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        flex-wrap: wrap;
    }
}

/* 2. How to Use Main Grid */
.how-to-use-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .how-to-use-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 3. Recommended Placements Sub-Grid */
.placements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 580px) {
    .placements-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
}

/* 4. Faith, Stability, Abundance Flex Pillars */
.faith-pillars {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .faith-pillars {
        gap: 12px;
        font-size: 1.05rem;
        justify-content: center;
        align-items: center;
    }

    .faith-pillars span {
        white-space: nowrap;
    }
}

/* ==========================================================================
   SACRED PRACTICES SECTION (PREMIUM GILDED REDESIGN)
   ========================================================================== */
.sacred-practices-section {
    position: relative;
    padding: 20px 5%;
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 158, 53, 0.25);
    margin: 25px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.practices-backdrop-decor {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 158, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.section-header-practices {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.section-header-practices .sub-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header-practices .main-title {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
}

.section-header-practices .main-title span {
    color: var(--accent-gold);
}

.section-header-practices .desc-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.practices-layout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.placements-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
}

.practices-layout-grid .column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.practices-layout-grid .column-header .column-badge {
    background: rgba(197, 158, 53, 0.15);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 158, 53, 0.3);
    font-family: 'Outfit', sans-serif;
}

.practices-layout-grid .column-header h3 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.practices-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.practice-visual-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.practice-visual-card .card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 158, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.practice-visual-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 158, 53, 0.4);
    box-shadow: 0 15px 35px rgba(197, 158, 53, 0.15);
}

.practice-visual-card:hover .card-glow-effect {
    opacity: 1;
}

.practice-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(197, 158, 53, 0.12);
    border: 1px solid rgba(197, 158, 53, 0.25);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.practice-visual-card:hover .practice-icon-wrapper {
    background: var(--accent-gold);
    color: #121914;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(197, 158, 53, 0.4);
}

.practice-card-content h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.practice-card-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.best-practices-column {
    height: 100%;
}

.best-practices-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(197, 158, 53, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.best-practices-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
}

.bp-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0 25px;
}

.bp-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}

.bp-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.bp-star-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.bp-list-item:hover .bp-star-icon {
    transform: rotate(90deg) scale(1.2);
}

.bp-item-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.bp-item-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.5;
    display: block;
}

.bp-stamp {
    background: rgba(197, 158, 53, 0.08);
    border: 1px dashed rgba(197, 158, 53, 0.25);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bp-stamp i {
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .practices-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .practices-cards-grid {
        grid-template-columns: 1fr;
    }

    .best-practices-card {
        padding: 25px 20px;
    }
}

/* Stars Animated Background */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Crystal Showcase Interactive Styles */
.crystal-tab {
    transition: var(--transition);
}

.crystal-tab:hover {
    background: rgba(212, 175, 55, 0.05) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    transform: translateX(4px);
}

.crystal-tab.active {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15) !important;
}

.crystal-preview-card {
    transition: opacity 0.2s ease-in-out;
}




/* Navbar Styling */
.navbar-custom {
    background: linear-gradient(to right, rgb(94 67 2 / 95%) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(223, 165, 24, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
}

.navbar-custom .nav-link {
    color: #190c2e !important;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    padding-bottom: 5px;
}

.nav-btn-chat {
    background: #eab308;
    color: #ea580c !important;
    border: 1px solid #eab308;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-btn-chat:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-custom .nav-link:hover {
    color: #f97316 !important;
}

.navbar-toggler {
    border-color: rgba(223, 165, 24, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(223, 165, 24, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body {
    background: rgb(37, 23, 57);
    color: #f5eedc;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Flatpickr Custom Overrides */
.flatpickr-calendar.dob-flatpickr {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(226, 232, 240, 0.8) !important;
    border: none !important;
    padding: 10px 8px 6px !important;
    font-family: 'Outfit', sans-serif !important;
    width: 310px !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-months {
    background: #fff7ed !important;
    border-radius: 10px !important;
    padding: 6px 4px !important;
    margin-bottom: 8px !important;
    align-items: center !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-month {
    color: #1e293b !important;
    fill: #1e293b !important;
    height: 38px !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-current-month {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-monthDropdown-months {
    background: #ffffff !important;
    border: 1px solid #fed7aa !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-weight: 700 !important;
    color: #ea580c !important;
    font-size: 0.92rem !important;
    cursor: pointer !important;
}

.flatpickr-calendar.dob-flatpickr .numInputWrapper {
    background: #ffffff !important;
    border: 1px solid #fed7aa !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    color: #ea580c !important;
    font-weight: 700 !important;
}

.flatpickr-calendar.dob-flatpickr .numInputWrapper input.cur-year {
    color: #ea580c !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-weekday {
    color: #64748b !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-day {
    color: #1e293b !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    height: 36px !important;
    line-height: 36px !important;
    margin: 2px 0 !important;
    transition: all 0.15s ease !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-day:hover {
    background: #fff7ed !important;
    color: #ea580c !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-day.selected,
.flatpickr-calendar.dob-flatpickr .flatpickr-day.selected:hover {
    background: #ea580c !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-color: #ea580c !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-day.today {
    border-color: #ea580c !important;
    color: #ea580c !important;
}

.flatpickr-calendar.dob-flatpickr .flatpickr-day.flatpickr-disabled {
    color: #cbd5e1 !important;
    cursor: not-allowed !important;
}

.flatpickr-calendar:not(.dob-flatpickr) {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(223, 165, 24, 0.3) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--brand-gradient) !important;
    border-color: #f97316 !important;
    color: #090412 !important;
    font-weight: 800 !important;
}

/* Past dates in grey background */
.flatpickr-day.flatpickr-disabled {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.2) !important;
    text-decoration: none !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
}

/* Fully booked dates in red background */
.flatpickr-day.fully-booked-day {
    background: rgba(239, 68, 68, 0.22) !important;
    color: #f87171 !important;
    text-decoration: line-through !important;
    text-decoration-color: #ef4444 !important;
    opacity: 0.75 !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
}

/* Available future dates in orange background */
.flatpickr-day:not(.flatpickr-disabled):not(.fully-booked-day):not(.prevMonthDay):not(.nextMonthDay) {
    background: rgba(234, 88, 12, 0.15) !important;
    color: #ea580c !important;
    font-weight: 700 !important;
    border-color: transparent !important;
}

.flatpickr-day:not(.flatpickr-disabled):not(.fully-booked-day):not(.prevMonthDay):not(.nextMonthDay):hover {
    background: #ea580c !important;
    color: #ffffff !important;
    border-color: #ea580c !important;
}

/* Muted orange background for next/prev month available days */
.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):not(.fully-booked-day),
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):not(.fully-booked-day) {
    background: rgba(234, 88, 12, 0.05) !important;
    color: rgba(234, 88, 12, 0.5) !important;
    border-color: transparent !important;
}

/* Highlight today's date */
.flatpickr-day.today {
    border: 2px solid #ea580c !important;
    box-shadow: 0 0 10px rgba(223, 165, 24, 0.5) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .numInputWrapper span.arrowUp:after,
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    color: #f97316 !important;
    fill: #f97316 !important;
}

.flatpickr-current-month {
    color: #f5eedc !important;
}

.flatpickr-weekday {
    color: #bfa58f !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: rgba(223, 165, 24, 0.3) !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    border-top-color: rgba(223, 165, 24, 0.3) !important;
}

/* Twinkling static star elements generated by JS */
.static-star {
    position: fixed;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    transition: opacity 0.5s ease;
}

@keyframes starTwinkle {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.2;
    }
}

.booking-flow-container {
    max-width: 850px;
    margin: 20px auto;
    padding: 0 20px 80px;
}

/* Stepper Styling */
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(223, 165, 24, 0.2);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #190c2e;
    border: 2px solid rgba(223, 165, 24, 0.3);
    color: #bfa58f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #bfa58f;
    display: block;
}

.step-sublabel {
    font-size: 0.7rem;
    color: #8c7694;
    display: block;
    margin-top: 2px;
}

/* Active / Completed Stepper States */
.step.active .step-circle {
    background: var(--brand-gradient);
    border-color: #f97316;
    color: #090412;
    box-shadow: 0 0 20px rgba(223, 165, 24, 0.6), inset 0 0 5px rgba(255, 255, 255, 0.4);
}

.step.active .step-label {
    color: #f97316;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(223, 165, 24, 0.3);
}

.step.completed .step-circle {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(22, 163, 74, 0.4);
}

.step.completed .step-label {
    color: #16a34a;
}

/* Form Layout Cards */
.form-section-card {
    background: rgba(26, 12, 45, 0.75);
    border: 1px solid rgba(223, 165, 24, 0.28);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.form-section-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid #f97316;
    padding-left: 12px;
    text-shadow: 0 0 10px rgba(223, 165, 24, 0.2);
}

.form-group {
    margin-bottom: 24px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-group label span {
    color: #f43f5e;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(223, 165, 24, 0.2);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #f5eedc;
    background: rgba(14, 6, 26, 0.85);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.form-control:focus {
    border-color: #f97316;
    box-shadow: 0 0 12px rgba(223, 165, 24, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Dropdown Options */
.form-control option {
    background: #120724;
    color: #f5eedc;
}

/* Make date picker calendar icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Autocomplete results dropdown */
#pobAutocomplete {
    border-color: rgba(223, 165, 24, 0.35) !important;
    background: #150a28 !important;
}

.autocomplete-item {
    padding: 12px 18px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(223, 165, 24, 0.1);
    transition: all 0.2s ease;
    text-align: left;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: var(--brand-gradient);
    color: #090412;
    font-weight: 600;
}

.phone-input-container {
    display: flex;
    gap: 10px;
}

.phone-prefix {
    flex-shrink: 0;
    width: 130px;
}

/* Inline time selectors */
.time-select-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-select-row select {
    flex: 1;
}

/* Consultation Mode Buttons */
.mode-selector-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mode-btn {
    flex: 1;
    padding: 14px;
    border: 1px solid rgba(223, 165, 24, 0.2);
    border-radius: 10px;
    background: rgba(14, 6, 26, 0.7);
    color: #bfa58f;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mode-btn.active {
    border-color: #f97316;
    background: rgba(223, 165, 24, 0.15);
    color: #f97316;
    box-shadow: 0 0 15px rgba(223, 165, 24, 0.2);
    font-weight: 700;
}

.astrologer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .astrologer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .astrologer-grid {
        grid-template-columns: 1fr;
    }
}

.astrologer-card {
    background: rgba(18, 8, 30, 0.85);
    border: 1px solid rgba(223, 165, 24, 0.22);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

.astrologer-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(223, 165, 24, 0.12), 0 0 0 3px rgba(223, 165, 24, 0.06);
}

.astrologer-card.active {
    border-color: #f97316;
    background: linear-gradient(135deg, rgba(223, 165, 24, 0.07) 0%, rgba(250, 164, 11, 0.02) 100%);
    box-shadow: 0 10px 25px rgba(223, 165, 24, 0.18), 0 0 0 3px rgba(223, 165, 24, 0.1);
}

.astrologer-image-container {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(223, 165, 24, 0.25);
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 2px rgba(223, 165, 24, 0.08), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.astrologer-card.active .astrologer-image-container {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(223, 165, 24, 0.15), 0 6px 15px rgba(223, 165, 24, 0.2);
    transform: scale(1.05) translateY(-2px);
}

.astrologer-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astrologer-info {
    flex-grow: 1;
    margin-bottom: 6px;
    width: 100%;
}

.astrologer-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #f5eedc;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.astrologer-card.active .astrologer-name {
    color: #f97316;
}

.astrologer-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #f97316;
    margin-bottom: 6px;
    font-size: 0.50rem;
}

.astrologer-desig {
    font-size: 0.72rem;
    color: #f97316;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

.astrologer-card.active .astrologer-desig {
    color: #090412;
    background: var(--brand-gradient);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(223, 165, 24, 0.25);
}

.astrologer-spec {
    font-size: 0.75rem;
    color: #a08ca8;
    line-height: 1.4;
    font-weight: 500;
}

.astrologer-select-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: #f97316;
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(223, 165, 24, 0.08);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(223, 165, 24, 0.12);
}

.astrologer-card.active .astrologer-select-badge {
    display: inline-flex;
}

/* Falling Cosmic Dots */
.cosmic-star {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    opacity: 0;
    animation: driftDown 10s linear infinite;
    box-shadow: 0 0 8px currentColor;
}

@keyframes driftDown {
    0% {
        transform: translateY(-5vh) translateX(0) scale(0.3);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    85% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(105vh) translateX(50px) scale(1.2);
        opacity: 0;
    }
}

.error-feedback {
    color: #f43f5e;
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.has-error .form-control {
    border-color: #f43f5e;
}

.has-error .error-feedback {
    display: block;
}

.btn-continue {
    background: var(--brand-gradient);
    color: #090412;
    border: none;
    padding: 18px 24px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(223, 165, 24, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 165, 24, 0.55);
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secure-footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: #8c7694;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Step 2 Payment Summary Style */
.payment-summary-box {
    background: rgba(26, 12, 45, 0.75);
    border: 1px solid rgba(223, 165, 24, 0.28);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #ffffff;
}

.summary-row.total-row {
    border-top: 1px solid rgba(223, 165, 24, 0.2);
    padding-top: 14px;
    font-weight: 800;
    font-size: 1.35rem;
    color: #f97316;
}

/* Thank you Screen */
.thankyou-box {
    background: rgba(26, 12, 45, 0.75);
    border: 1px solid rgba(223, 165, 24, 0.28);
    border-radius: 16px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
}

.thankyou-icon {
    font-size: 4.5rem;
    color: #16a34a;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(22, 163, 74, 0.3));
}



/* Ziva Labs Section */
.ziva-labs-section {
    padding: 20px 5% 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.ziva-labs-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.ziva-labs-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.ziva-mall-section {
    padding: 40px 0;
    background: #faf6ee;
    position: relative;
}

.ziva-mall-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.ziva-mall-slider-wrap {
    position: relative;
}

.ziva-mall-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 10px 4px 20px 4px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y pinch-zoom;
}

.ziva-mall-slider-track:active {
    cursor: grabbing;
}

.ziva-mall-slider-track::-webkit-scrollbar {
    display: none;
}

.ziva-mall-item {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    scroll-snap-align: start;
}

@media (max-width: 1199px) {
    .ziva-mall-item {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .ziva-mall-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

}

@media (max-width: 480px) {
    .ziva-mall-item {
        flex: 0 0 calc(78% - 10px);
        min-width: calc(78% - 10px);
    }
}

.ziva-product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ziva-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.12);
    border-color: rgba(234, 88, 12, 0.3);
}

.ziva-product-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 1/1;
}

.ziva-product-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ziva-product-card:hover .ziva-product-image-wrapper img {
    transform: scale(1.05);
}

.ziva-sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ea580c;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(234, 88, 12, 0.35);
}

.ziva-product-info {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ziva-product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    text-align: left;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
    transition: color 0.2s ease;
}

.ziva-product-card:hover .ziva-product-title {
    color: #ea580c;
}

.ziva-product-price {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.ziva-price-sale {
    color: #ea580c;
    font-size: 1.15rem;
    font-weight: 800;
}

.ziva-price-original {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 500;
}

.ziva-slider-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.ziva-slider-nav-btn:hover {
    background: #ea580c;
    color: #ffffff;
    border-color: #ea580c;
    transform: scale(1.05);
}

/* Extracted Global CSS */
/* From category.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
}

.hero-section {
    padding: 20px 20px 40px;
    text-align: center;
}

/* Navbar Styling */
.navbar-custom {
    background: linear-gradient(to right, rgb(94 67 2 / 95%) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(223, 165, 24, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-custom .nav-link {
    color: #190c2e !important;
    font-weight: 600;
    margin: 0 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #f97316 !important;
}

.navbar-toggler {
    border-color: rgba(223, 165, 24, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(223, 165, 24, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-btn-chat {
    background: #fef08a;
    color: #ea580c;
    border: 1px solid #eab308;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-btn-chat:hover {
    background: #eab308;
    color: #78350f;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: #ea580c;
}

.hero-section p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 40px;
}

.expert-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    max-width: 500px;
    margin: 0 auto 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.expert-card img {
    display: block;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #eab308;
    object-fit: cover;
}

.expert-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.expert-card p {
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-section {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.form-group label {
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.input-group-custom {
    display: flex;
    align-items: center;
    background: #fdf5e6;
    border: 1px solid #eab308;
    border-radius: 10px;
    padding: 5px 15px;
    margin-bottom: 20px;
}

.input-group-custom i {
    color: #ea580c;
    margin-right: 15px;
}

.form-control-custom {
    background: transparent;
    border: none;
    color: #190c2e;
    width: 100%;
    padding: 10px 0;
    outline: none;
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

.btn-generate {
    background: #fef08a;
    color: #422006;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(253, 224, 71, 0.4);
}

::-webkit-calendar-picker-indicator {
    filter: invert(0) !important;
    opacity: 0.6;
    cursor: pointer;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Time slots */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 8px 15px;
    background: #ffffff;
    border: 1px solid #eab308;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4b5563;
    transition: all 0.3s;
}

.time-slot:hover {
    background: #fef08a;
}

.time-slot.selected {
    background: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
    font-weight: 700;
}

/* Custom Flatpickr styles */
.flatpickr-day:not(.flatpickr-disabled):not(.today) {
    color: #ea580c !important;
    font-weight: 600;
}

.flatpickr-day.flatpickr-disabled {
    color: #666 !important;
}

.flatpickr-day.today {
    border-color: #f97316 !important;
    box-shadow: 0 0 10px rgba(223, 165, 24, 0.5) !important;
}

/* From checkout.php */
button,
input,
select,
textarea {
    font-family: 'Outfit', sans-serif;
}

:root {
    --bg-primary: #fdfbf7;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f5efe6;
    --bg-sidebar: #f7f3eb;
    --text-primary: #000000;
    --text-secondary: #222222;
    --text-light: #555555;
    --accent-gold: #c59e35;
    --accent-gold-hover: #b0892a;
    --border-color: #eae3da;
    --radius-sm: 8px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #faf6ee;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* Header layout */
.checkout-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(223, 165, 24, 0.3);
    padding: 15px 5%;
    text-align: center;
}

.checkout-header img {
    max-height: 50px;
}

/* Container Layout */
.checkout-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 81px);
}

.left-col {
    padding: 20px 5% 40px 8%;
    background-color: var(--bg-secondary);
}

.right-col {
    padding: 20px 8% 40px 5%;
    background-color: var(--bg-sidebar);
    border-left: 1px solid var(--border-color);
}

/* Breadcrumbs */
.checkout-breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 25px;
    align-items: center;
}

.checkout-breadcrumbs a {
    color: var(--accent-gold);
    text-decoration: none;
}

.checkout-breadcrumbs i {
    font-size: 0.7rem;
    opacity: 0.5;
}

/* Sections */
.checkout-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Input fields styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 158, 53, 0.1);
}

/* Payment Selector Card */
.payment-method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.payment-card {
    border: 2px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.payment-card.active {
    border-color: var(--accent-gold);
    background-color: rgba(197, 158, 53, 0.05);
}

.payment-card input[type="radio"] {
    accent-color: var(--accent-gold);
    transform: scale(1.1);
    cursor: pointer;
}

.payment-card-text {
    text-align: left;
}

.payment-card-title {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.payment-card-sub {
    font-size: 0.72rem;
    color: var(--text-light);
}

/* Sidebar Product Summary */
.product-summary-row {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.summary-img-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background-color: #fff;
    position: relative;
}

.summary-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-qty-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #555;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-prod-details {
    flex: 1;
}

.summary-prod-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.summary-prod-subtitle {
    font-size: 0.78rem;
    color: var(--text-light);
}

.summary-prod-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Price Calculation list */
.price-breakdown-list {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
}

.breakdown-row.total-row {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    padding-top: 10px;
}

.orig-price-cross {
    text-decoration: line-through;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-right: 5px;
}

/* Complete Order Button */
.btn-checkout-submit {
    background-color: var(--accent-gold);
    color: #fff;
    border: 1px solid var(--accent-gold-hover);
    padding: 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    font-family: inherit;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(197, 158, 53, 0.2);
    margin-top: 20px;
}

.btn-checkout-submit:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-1px);
}

.btn-checkout-submit:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Security badges */
.security-badge-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    opacity: 0.75;
}

.security-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
}

.security-badge-item i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .left-col {
        padding: 30px 5%;
        order: 2;
    }

    .right-col {
        padding: 30px 5%;
        order: 1;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* From consultancy.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Flatpickr Custom Overrides */
.flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* Past dates in grey background */
.flatpickr-day.flatpickr-disabled {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    text-decoration: none !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
}

/* Fully booked dates in red background */
.flatpickr-day.fully-booked-day {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    text-decoration: line-through !important;
    text-decoration-color: #ef4444 !important;
    opacity: 0.75 !important;
    border-color: transparent !important;
    cursor: not-allowed !important;
}

/* Available future dates in orange background */
.flatpickr-day:not(.flatpickr-disabled):not(.fully-booked-day):not(.prevMonthDay):not(.nextMonthDay) {
    background: rgba(234, 88, 12, 0.15) !important;
    color: #ea580c !important;
    font-weight: 700 !important;
    border-color: transparent !important;
}

.flatpickr-day:not(.flatpickr-disabled):not(.fully-booked-day):not(.prevMonthDay):not(.nextMonthDay):hover {
    background: #ea580c !important;
    color: #ffffff !important;
    border-color: #ea580c !important;
}

/* Muted orange background for next/prev month available days */
.flatpickr-day.prevMonthDay:not(.flatpickr-disabled):not(.fully-booked-day),
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled):not(.fully-booked-day) {
    background: rgba(234, 88, 12, 0.05) !important;
    color: rgba(234, 88, 12, 0.5) !important;
    border-color: transparent !important;
}

/* Highlight today's date */
.flatpickr-day.today {
    border: 2px solid #ea580c !important;
    background: transparent !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .numInputWrapper span.arrowUp:after,
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    color: #ea580c !important;
    fill: #ea580c !important;
}

.flatpickr-current-month {
    color: #190c2e !important;
}

.flatpickr-weekday {
    color: #bfa58f !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: rgba(223, 165, 24, 0.3) !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    border-top-color: rgba(223, 165, 24, 0.3) !important;
}

/* Twinkling static star elements generated by JS */
.static-star {
    position: fixed;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    transition: opacity 0.5s ease;
}

@keyframes starTwinkle {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.2;
    }
}

.booking-flow-container {
    max-width: 850px;
    margin: 20px auto;
    padding: 0 20px 80px;
}

/* Stepper Styling */
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(223, 165, 24, 0.2);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(245, 158, 11, 0.3);
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
    display: block;
}

.step-sublabel {
    font-size: 0.7rem;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

/* Active / Completed Stepper States */
.step.active .step-circle {
    background: var(--brand-gradient);
    border-color: #f97316;
    color: #090412;
    box-shadow: 0 0 20px rgba(223, 165, 24, 0.6), inset 0 0 5px rgba(255, 255, 255, 0.4);
}

.step.active .step-label {
    color: #f97316;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(223, 165, 24, 0.3);
}

.step.completed .step-circle {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(22, 163, 74, 0.4);
}

.step.completed .step-label {
    color: #16a34a;
}

/* Form Layout Cards */
.form-section-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-section-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid #f59e0b;
    padding-left: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.form-group label span {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #190c2e;
    background: #fdf5e6;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: #f97316;
    box-shadow: 0 0 12px rgba(223, 165, 24, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Placeholder Styling */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

/* Dropdown Options */
.form-control option {
    background: #120724;
    color: #f5eedc;
}

/* Make date picker calendar icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Autocomplete results dropdown */
#pobAutocomplete {
    border-color: rgba(223, 165, 24, 0.35) !important;
    background: #ffffff !important;
}

.autocomplete-item {
    padding: 12px 18px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #000;
    border-bottom: 1px solid rgba(223, 165, 24, 0.1);
    transition: all 0.2s ease;
    text-align: left;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #fdf5e6;
    color: #ea580c;
    font-weight: 600;
}

.phone-input-container {
    display: flex;
    gap: 10px;
}

.phone-prefix {
    flex-shrink: 0;
    width: 130px;
}

/* Inline time selectors */
.time-select-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-select-row select {
    flex: 1;
}

/* Consultation Mode Buttons */
.mode-selector-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mode-btn {
    flex: 1;
    padding: 14px;
    border: 1px solid rgba(223, 165, 24, 0.2);
    border-radius: 10px;
    background: rgba(14, 6, 26, 0.7);
    color: #bfa58f;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mode-btn.active {
    border-color: #f97316;
    background: rgba(223, 165, 24, 0.15);
    color: #f97316;
    box-shadow: 0 0 15px rgba(223, 165, 24, 0.2);
    font-weight: 700;
}

.astrologer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .astrologer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .astrologer-grid {
        grid-template-columns: 1fr;
    }
}

.astrologer-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.astrologer-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.12), 0 0 0 3px rgba(245, 158, 11, 0.06);
}

.astrologer-card.active {
    border-color: #f59e0b;
    background: #fffbeb;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.18), 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.astrologer-image-container {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(223, 165, 24, 0.25);
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 2px rgba(223, 165, 24, 0.08), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.astrologer-card.active .astrologer-image-container {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(223, 165, 24, 0.15), 0 6px 15px rgba(223, 165, 24, 0.2);
    transform: scale(1.05) translateY(-2px);
}

.astrologer-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astrologer-info {
    flex-grow: 1;
    margin-bottom: 6px;
    width: 100%;
}

.astrologer-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #190c2e;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.astrologer-card.active .astrologer-name {
    color: #ea580c;
}

.astrologer-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #f97316;
    margin-bottom: 6px;
    font-size: 0.50rem;
}

.astrologer-desig {
    font-size: 0.72rem;
    color: #f97316;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

.astrologer-card.active .astrologer-desig {
    color: #090412;
    background: var(--brand-gradient);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(223, 165, 24, 0.25);
}

.astrologer-spec {
    font-size: 0.75rem;
    color: #a08ca8;
    line-height: 1.4;
    font-weight: 500;
}

.astrologer-select-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: #f97316;
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(223, 165, 24, 0.08);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(223, 165, 24, 0.12);
}

.astrologer-card.active .astrologer-select-badge {
    display: inline-flex;
}

/* Falling Cosmic Dots */
.cosmic-star {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    opacity: 0;
    animation: driftDown 10s linear infinite;
    box-shadow: 0 0 8px currentColor;
}

@keyframes driftDown {
    0% {
        transform: translateY(-5vh) translateX(0) scale(0.3);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    85% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(105vh) translateX(50px) scale(1.2);
        opacity: 0;
    }
}

.error-feedback {
    color: #f43f5e;
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.has-error .form-control {
    border-color: #f43f5e;
}

.has-error .error-feedback {
    display: block;
}

.btn-continue {
    background: var(--brand-gradient);
    color: #090412;
    border: none;
    padding: 18px 24px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(223, 165, 24, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 165, 24, 0.55);
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secure-footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: #8c7694;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Step 2 Payment Summary Style */
.payment-summary-box {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #4b5563;
}

.summary-row.total-row {
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding-top: 14px;
    font-weight: 800;
    font-size: 1.35rem;
    color: #ea580c;
}

/* Thank you Screen */
.thankyou-box {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.thankyou-icon {
    font-size: 4.5rem;
    color: #16a34a;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(22, 163, 74, 0.3));
}

/* From digital_products.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Starry Background Effect */
.stars-container {
    display: none;
}

/* Secondary Nav (Digital Products specific) */
.secondary-nav {
    display: none;
}

/* Layout */
.main-content {
    padding: 20px 0%;
    margin: 0 auto;
}

.back-link {
    color: #bfa58f;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #f97316;
}

/* Glassmorphic Form Card */
.glass-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.glass-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.glass-card p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-custom i {
    position: absolute;
    left: 15px;
    color: #ea580c;
    font-size: 1.1rem;
}

.form-control-custom {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 15px 14px 45px;
    color: #190c2e;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

.form-control-custom:focus {
    border-color: #f59e0b;
    background: transparent;
}

/* Date/Time pickers native icons */
::-webkit-calendar-picker-indicator {
    opacity: 0.8;
    cursor: pointer;
    filter: invert(0);
    /* Black icon */
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Submit Button */
.btn-generate {
    width: 100%;
    background: var(--brand-gradient);
    color: #090412;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(223, 165, 24, 0.3);
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(223, 165, 24, 0.5);
}

/* Right Side Content */
.info-section {
    padding: 30px 20px 30px 60px;
}

@media (max-width: 991px) {
    .info-section {
        padding: 20px 0 0 0;
    }
}

.badge-custom {
    display: inline-block;
    background: rgba(223, 165, 24, 0.15);
    color: #f97316;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(223, 165, 24, 0.3);
}

.info-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.info-desc {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item:nth-child(2) .feature-icon {
    background: rgba(223, 165, 24, 0.15);
    border-color: rgba(223, 165, 24, 0.3);
    color: #f97316;
}

.feature-item:nth-child(3) .feature-icon {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    color: #a855f7;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* From digital_products.php */
.autocomplete-suggestions {
    border: 1px solid #e0e0e0;
    background: #FFF;
    overflow: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 9999;
    max-height: 250px;
    width: calc(100% - 30px);
}

.autocomplete-suggestion {
    padding: 10px 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
}

.autocomplete-suggestion:hover {
    background: #fdf5e6;
    color: #d97706;
}

.autocomplete-suggestion strong {
    font-weight: 600;
    color: #ea580c;
}

/* From index.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Starry Background Effect (Softened for Light Theme) */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #f59e0b, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #f59e0b, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #f59e0b, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #f59e0b, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #f59e0b, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 160px 120px, #f59e0b, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
    animation: drift 100s linear infinite;
}

@keyframes drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

/* Navbar Styling */
.navbar-custom {
    background: linear-gradient(to right, rgb(94 67 2 / 95%) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(223, 165, 24, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-custom .nav-link {
    color: #190c2e !important;
    font-weight: 600;
    margin: 0 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #f97316 !important;
}

.navbar-toggler {
    border-color: rgba(223, 165, 24, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(223, 165, 24, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-btn-chat {
    background: #fef08a;
    color: #ea580c;
    border: 1px solid #eab308;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-btn-chat:hover {
    background: #eab308;
    color: #78350f;
}

/* Secondary Nav */
.secondary-nav {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(223, 165, 24, 0.15);
    padding: 12px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.secondary-nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.secondary-nav a:hover,
.secondary-nav a.active {
    color: #f97316;
}

/* New Hero Section */
.new-hero-section {
    padding: 20px 5% 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-title-main {
    font-size: 3.8rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title-main span {
    color: #f59e0b;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 150px;
    border: 4px solid transparent;
}

.hero-img[data-pos="0"] {
    /* Left */
    z-index: 1;
    opacity: 0.8;
    transform: translateX(-140px) scale(0.6);
}

.hero-img[data-pos="1"] {
    /* Center */
    z-index: 2;
    opacity: 1;
    transform: translateX(0) scale(1);
    border-color: #f59e0b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-img[data-pos="2"] {
    /* Right */
    z-index: 1;
    opacity: 0.8;
    transform: translateX(140px) scale(0.6);
}

.hero-img-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fef08a;
    object-fit: cover;
}

.hero-img-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #f59e0b;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-subtitle-main {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.btn-chat {
    background: #fef08a;
    color: #ea580c;
    border: 1px solid #eab308;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.6);
    color: #78350f;
    background: #eab308;
}

/* Quick Action Cards */
.quick-actions-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 5%;
    flex-wrap: wrap;
}

.qa-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.qa-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.qa-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.qa-card:nth-child(1) .qa-icon-box {
    background: var(--brand-gradient);
}

.qa-card:nth-child(2) .qa-icon-box {
    background: #ec4899;
}

.qa-card:nth-child(3) .qa-icon-box {
    background: #3b82f6;
}

.qa-card:nth-child(4) .qa-icon-box {
    background: #10b981;
}

.qa-title {
    color: #4b5563;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

/* Daily Panchang Section */
.panchang-section {
    padding: 30px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.panchang-container {
    background: rgba(25, 12, 46, 0.6);
    border: 1px solid rgba(223, 165, 24, 0.15);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    backdrop-filter: blur(12px);
}

.panchang-left {
    flex: 1;
    min-width: 300px;
}

.panchang-badge {
    background: rgba(223, 165, 24, 0.15);
    color: #f97316;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(223, 165, 24, 0.3);
}

.panchang-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.panchang-desc {
    color: #bfa58f;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-outline-gold {
    background: var(--brand-gradient);
    color: #090412;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(223, 165, 24, 0.3);
}

.btn-outline-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 165, 24, 0.5);
    color: #090412;
}

.panchang-right {
    flex: 1.2;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.panchang-card {
    background: rgba(43, 27, 65, 0.5);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.p-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pc-1 {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.pc-2 {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.pc-3 {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.pc-4 {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.p-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #8c7694;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.p-card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Daily Horoscope Grid */
.horoscope-section {
    padding: 30px 5%;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #bfa58f;
    font-size: 1rem;
    margin-bottom: 20px;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.zodiac-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.zodiac-item:hover {
    transform: translateY(-5px);
}

.zodiac-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s;
}

.zodiac-item:hover .zodiac-icon {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.zodiac-icon img {
    width: 55%;
    height: auto;
    filter: brightness(0) invert(1);
}

.z-aries {
    background: #ef4444;
}

.z-taurus {
    background: #22c55e;
}

.z-gemini {
    background: #eab308;
}

.z-cancer {
    background: #3b82f6;
}

.z-leo {
    background: var(--brand-gradient);
}

.z-virgo {
    background: #10b981;
}

.z-libra {
    background: #ec4899;
}

.z-scorpio {
    background: #a855f7;
}

.z-sag {
    background: #8b5cf6;
}

.z-cap {
    background: #64748b;
}

.z-aqua {
    background: #06b6d4;
}

.z-pisces {
    background: #0ea5e9;
}

.zodiac-name {
    color: #f5eedc;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Top Astrologers */
.astrologers-section {
    padding: 30px 0%;
    margin: 0 auto 0px;
}

.astro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.astro-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.view-all {
    color: #d97706;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    background: #fef3c7;
    padding: 8px 16px;
    border-radius: 20px;
}

.astro-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

.astro-grid > a, .astro-grid > .category-astro-card {
    flex: 0 1 270px;
    max-width: 280px;
    width: 100%;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* New Services Section Styles */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

.service-card-new {
    background: #ffffff;
    border: 1px solid #fce7d2;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(24ce7, 210, 2, 0.02);
    transition: all 0.3s;
    height: 100%;
}

.service-card-new:hover {
    border-color: #fbd38d;
    box-shadow: 0 8px 25px rgba(251, 211, 141, 0.15);
    transform: translateY(-3px);
}

.service-icon-box {
    width: 45px;
    height: 45px;
    background: #fff8f0;
    border: 1px solid #fce7d2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-card-new h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.service-card-new p {
    font-size: 0.85rem;
    color: #a8a29e;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 80%;
}

.service-arrow-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: #fff8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    text-decoration: none;
    transition: all 0.3s;
}

.service-card-new:hover .service-arrow-btn {
    background: #fef3c7;
    color: #ea580c;
}

.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: var(--brand-gradient);
}

.category-card:hover h3,
.category-card:hover p {
    color: #ffffff !important;
}

.category-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.category-line {
    position: absolute;
    top: 75px;
    /* middle of avatar assuming top padding is 30 and avatar is 90 */
    left: 0;
    right: 0;
    height: 1px;
    background: #f3f4f6;
    z-index: 1;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.category-card p {
    color: #bfa58f;
    font-size: 0.85rem;
    margin: 0;
}

.astro-card {
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.astro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, #fdf5e6, #ffffff);
    z-index: 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.05);
}

.astro-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.12);
}

.astro-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    padding: 4px;
    border: 2px dashed rgba(245, 158, 11, 0.5);
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    right: 2px;
    border: 2px solid #190c2e;
}

.status-online {
    background: #22c55e;
}

.status-busy {
    background: #eab308;
}

.astro-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.astro-status-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-online {
    background: #dcfce7;
    color: #16a34a;
}

.badge-busy {
    background: #fef9c3;
    color: #ca8a04;
}

.btn-astro-chat {
    background: var(--brand-gradient);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 11px 15px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-astro-chat:hover {
    background: var(--brand-gradient);
    opacity: 0.9;
    color: #ffffff;
}

.astro-price {
    color: #d97706;
    font-weight: 700;
    font-size: 1rem;
}

/* Testimonials New Design */
.testimonials-section {
    padding: 20px 0%;
    max-width: 1300px;
    margin: 0 auto;
}

.testi-left {
    padding-right: 40px;
}

.testi-subtitle {
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testi-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.text-orange {
    color: #d97706;
}

.testi-rating-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testi-score {
    font-size: 3.5rem;
    font-weight: 500;
    color: #d97706;
    line-height: 1;
}

.testi-stars-wrap {
    display: flex;
    flex-direction: column;
}

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testi-count {
    color: #9ca3af;
    font-size: 0.85rem;
}

.testi-desc {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

.testi-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testi-btn:hover {
    border-color: #d97706;
    color: #d97706;
}

.testi-indicator {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    width: 50px;
    text-align: center;
}

.testi-card-large {
    background: #ffffff;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testi-stars-large {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testi-quote-icon {
    font-size: 5rem;
    color: #f3f4f6;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
    font-family: serif;
    z-index: 0;
}

.testi-content {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin-bottom: 20px;
}

.testi-author-block {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f3f4f6;
    padding-top: 25px;
}

.testi-author-block img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author-block h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.testi-author-block span {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Footer */
.site-footer {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    margin-top: 25px;
}

.site-footer p {
    color: #6b7280;
    margin: 0;
}

/* From policy.php */
button,
input,
select,
textarea {
    font-family: 'Outfit', sans-serif;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('trajan-pro-3/TrajanPro3SemiBold.eot');
    src: local('Trajan Pro 3 SemiBold'), local('TrajanPro3-SemiBold'),
        url('trajan-pro-3/TrajanPro3SemiBold.eot?#iefix') format('embedded-opentype'),
        url('trajan-pro-3/TrajanPro3SemiBold.woff2') format('woff2'),
        url('trajan-pro-3/TrajanPro3SemiBold.woff') format('woff'),
        url('trajan-pro-3/TrajanPro3SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('trajan-pro-3/TrajanPro3Bold.eot');
    src: local('Trajan Pro 3 Bold'), local('TrajanPro3-Bold'),
        url('trajan-pro-3/TrajanPro3Bold.eot?#iefix') format('embedded-opentype'),
        url('trajan-pro-3/TrajanPro3Bold.woff2') format('woff2'),
        url('trajan-pro-3/TrajanPro3Bold.woff') format('woff'),
        url('trajan-pro-3/TrajanPro3Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('trajan-pro-3/TrajanPro3ExtraLight.eot');
    src: local('Trajan Pro 3 ExtraLight'), local('TrajanPro3-ExtraLight'),
        url('trajan-pro-3/TrajanPro3ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('trajan-pro-3/TrajanPro3ExtraLight.woff2') format('woff2'),
        url('trajan-pro-3/TrajanPro3ExtraLight.woff') format('woff'),
        url('trajan-pro-3/TrajanPro3ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('trajan-pro-3/TrajanPro3Light.eot');
    src: local('Trajan Pro 3 Light'), local('TrajanPro3-Light'),
        url('trajan-pro-3/TrajanPro3Light.eot?#iefix') format('embedded-opentype'),
        url('trajan-pro-3/TrajanPro3Light.woff2') format('woff2'),
        url('trajan-pro-3/TrajanPro3Light.woff') format('woff'),
        url('trajan-pro-3/TrajanPro3Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('trajan-pro-3/TrajanPro3Regular.eot');
    src: local('Trajan Pro 3 Regular'), local('TrajanPro3-Regular'),
        url('trajan-pro-3/TrajanPro3Regular.eot?#iefix') format('embedded-opentype'),
        url('trajan-pro-3/TrajanPro3Regular.woff2') format('woff2'),
        url('trajan-pro-3/TrajanPro3Regular.woff') format('woff'),
        url('trajan-pro-3/TrajanPro3Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('trajan-pro-3/TrajanPro3Black.eot');
    src: local('Trajan Pro 3 Black'), local('TrajanPro3-Black'),
        url('trajan-pro-3/TrajanPro3Black.eot?#iefix') format('embedded-opentype'),
        url('trajan-pro-3/TrajanPro3Black.woff2') format('woff2'),
        url('trajan-pro-3/TrajanPro3Black.woff') format('woff'),
        url('trajan-pro-3/TrajanPro3Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}











/* Modern Premium Editorial Style overrides for AstroZiva Policies */
body {
    background: #faf6ee !important;
}

.policy-main-container {
    padding: 120px 5% 60px !important;
    max-width: 900px !important;
    margin: 0 auto;
    display: block;
}

.policy-card {
    background: #ffffff !important;
    border: 1px solid rgba(197, 158, 53, 0.15) !important;
    border-top: 4px solid var(--accent-gold) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(92, 83, 73, 0.05) !important;
    padding: 25px 45px !important;
    transition: var(--transition);
}

.policy-card h1 {
    font-family: 'Outfit', sans-serif;
    color: #112817 !important;
    /* Luxurious brand forest green */
    margin-bottom: 25px;
    font-size: 2.3rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(197, 158, 53, 0.2);
    padding-bottom: 15px;
    text-align: center;
}

.policy-body {
    font-family: 'Outfit', sans-serif;
    color: #000000 !important;
    /* Pristine pure black text */
    font-size: 1rem !important;
    line-height: 1.8 !important;
}

.policy-body p {
    color: #000000 !important;
    /* Absolute black paragraphs */
    margin-bottom: 20px !important;
    font-weight: 400;
}

.policy-body h3 {
    font-family: 'Outfit', sans-serif;
    color: #112817 !important;
    /* Brand forest green */
    font-size: 1.40rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-body h3::before {
    content: "Ã¢Å“Â¦";
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.policy-body ul {
    margin-bottom: 25px;
    padding-left: 5px;
    list-style: none;
}

.policy-body li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #000000 !important;
}

.policy-body li::before {
    content: "Ã¢Å“â€œ";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.policy-body strong {
    color: #000000 !important;
    font-weight: 700;
}

.policy-body a {
    color: var(--accent-gold) !important;
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.policy-body a:hover {
    color: var(--accent-gold-hover) !important;
}

.about-quote {
    background: rgba(197, 158, 53, 0.05) !important;
    border-left: 4px solid var(--accent-gold) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    margin: 25px 0 !important;
}

.about-quote p {
    margin: 0 !important;
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-main-container {
        padding: 20px 4% 40px !important;
    }

    .policy-card {
        padding: 30px 20px !important;
        border-radius: 12px !important;
    }

    .policy-card h1 {
        font-size: 1.75rem !important;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .policy-body h3 {
        font-size: 1.15rem !important;
        margin-top: 25px;
    }

    .policy-body {
        font-size: 0.92rem !important;
        line-height: 1.7 !important;
    }
}

/* From privacy_policy.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
}

.hero-section {
    padding: 20px 20px 40px;
    text-align: center;
}

/* Navbar Styling */
.navbar-custom {
    background: linear-gradient(to right, rgb(94 67 2 / 95%) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(223, 165, 24, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-custom .nav-link {
    color: #190c2e !important;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #f97316 !important;
}

.nav-btn-chat {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 165, 24, 0.4);
}

.nav-btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 165, 24, 0.6);
    color: white;
}

.content-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(61, 36, 23, 0.05);
    margin-bottom: 30px;
    text-align: left;
}

.content-box h1,
.content-box h2,
.content-box h3 {
    color: #422006;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-box p,
.content-box li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-box ul {
    margin-bottom: 25px;
}

/* From refund_policy.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
}

.hero-section {
    padding: 20px 20px 40px;
    text-align: center;
}

/* Navbar Styling */
.navbar-custom {
    background: linear-gradient(to right, rgb(94 67 2 / 95%) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(223, 165, 24, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-custom .nav-link {
    color: #190c2e !important;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #f97316 !important;
}

.nav-btn-chat {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 165, 24, 0.4);
}

.nav-btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 165, 24, 0.6);
    color: white;
}

.content-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(61, 36, 23, 0.05);
    margin-bottom: 30px;
    text-align: left;
}

.content-box h1,
.content-box h2,
.content-box h3 {
    color: #422006;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-box p,
.content-box li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-box ul {
    margin-bottom: 25px;
}

/* From success.php */
button,
input,
select,
textarea {
    font-family: 'Outfit', sans-serif;
}

body {
    background: #faf6ee;
    font-family: 'Outfit', sans-serif;
    color: #190c2e;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
}

.success-card {
    background: #ffffff;
    border: 1px solid #eae3da;
    padding: 25px 40px;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(92, 83, 73, 0.06);
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.1);
}

.success-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1f1c1a;
}

.success-card p {
    font-size: 1.05rem;
    color: #6e645a;
    line-height: 1.6;
    margin-bottom: 30px;
}

.delivery-info {
    background: #fffdf5;
    border: 1px dashed #c59e35;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
    text-align: left;
}

.delivery-info h4 {
    color: #c59e35;
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.delivery-info p {
    font-size: 0.92rem;
    color: #6e645a;
    margin-bottom: 0;
    line-height: 1.5;
}

.action-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-home {
    background: #facc15;
    color: #000;
    border: 1px solid #e2bf10;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(253, 216, 20, 0.2);
    flex: 1;
}

.btn-home:hover {
    background: #facc15;
    transform: translateY(-1px);
}

.btn-support {
    background: #112817;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-support:hover {
    background: #1d3e26;
    transform: translateY(-1px);
}

@media(max-width: 500px) {
    .action-btns {
        flex-direction: column;
    }
}

/* From terms_conditions.php */
body {
    background: #faf6ee;
    color: #190c2e;
    font-family: 'Outfit', sans-serif;
}

.hero-section {
    padding: 20px 20px 40px;
    text-align: center;
}

/* Navbar Styling */
.navbar-custom {
    background: linear-gradient(to right, rgb(94 67 2 / 95%) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(223, 165, 24, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-custom .nav-link {
    color: #190c2e !important;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #f97316 !important;
}

.nav-btn-chat {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 165, 24, 0.4);
}

.nav-btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 165, 24, 0.6);
    color: white;
}

.content-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(61, 36, 23, 0.05);
    margin-bottom: 30px;
    text-align: left;
}

.content-box h1,
.content-box h2,
.content-box h3 {
    color: #422006;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-box p,
.content-box li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-box ul {
    margin-bottom: 25px;
}


/* Extracted Global CSS */

/* Extracted Global CSS */

/* Extracted Global CSS */

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 36, 23, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f6eee0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 64px rgba(61, 36, 23, 0.08);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: #f97316;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more {
    font-size: 0.95rem;
    color: #f97316;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-reading-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(61, 36, 23, 0.04);
    border: 1px solid #f6eee0;
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.blog-header-meta {
    margin-bottom: 15px;
}

.single-blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.single-blog-content {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.single-blog-content h2,
.single-blog-content h3 {
    color: #0f172a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.single-blog-content p {
    margin-bottom: 20px;
}

/* Floating Navbar Redesign */
.navbar-floating {
    background: var(--brand-gradient) !important;

    border-radius: 12px;
    margin: 20px auto;
    padding: 10px 30px !important;
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.3) !important;
    backdrop-filter: none !important;
    border: none !important;
}

.navbar-floating .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 12px;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.navbar-floating .nav-link:hover,
.navbar-floating .nav-link.show {
    opacity: 0.8;
}

.navbar-floating .nav-btn-chat {
    background: #ffffff !important;
    color: #ea580c !important;
    border-radius: 30px !important;
    padding: 10px 25px !important;
    font-weight: 700 !important;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-floating .nav-btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar-floating .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;


    margin-top: 10px;
}

.navbar-floating .nav-item {
    margin-bottom: 10px;
}

.navbar-floating .nav-btn-chat {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    display: block;
}


/* ==========================================================================
   ADMIN DASHBOARD RESPONSIVENESS
   ========================================================================== */
.mobile-admin-header {
    display: none;
}

@media (max-width: 768px) {
    .admin-nav {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        z-index: 1050;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }

    .admin-nav.mobile-active {
        left: 0;
    }

    .admin-content {
        width: 100% !important;
        padding: 15px !important;
    }

    .mobile-admin-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: #251739;
        border-radius: 12px;
        margin-bottom: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .admin-table-container {
        overflow-x: auto;
    }

    .admin-card {
        padding: 20px !important;
    }
}

/* ==========================================================================
   BLOG PAGES RESPONSIVENESS
   ========================================================================== */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .blog-reading-container {
        padding: 20px 15px;
        border-radius: 12px;
        margin: 0 10px;
    }

    .single-blog-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .single-blog-content {
        font-size: 1rem;
    }

    .blog-hero-image img {
        border-radius: 10px;
        margin-bottom: 20px;
    }
}


/* ==========================================================================
   GLOBAL MOBILE SPACING & TYPOGRAPHY
   ========================================================================== */
@media (max-width: 768px) {

    /* Reduce large section paddings */
    section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .hero-section {
        padding: 40px 15px !important;
    }

    /* Scale down large headings */
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    /* Store / Service Cards */
    .service-card,
    .store-card {
        margin-bottom: 20px;
    }
}







.blog-content a {
    text-decoration: underline;
    color: #ea580c;
    font-weight: 600;
}

.blog-content a:hover {
    color: #c2410c;
}

/* Remove browser autofill white background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* --- MODERN SINGLE BLOG PAGE STYLES --- */

/* Hero Section */
.blog-hero-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-category-badge a {
    display: inline-block;
    background: #fffbeb;
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 20px;
    border: 1px solid #fef3c7;
    transition: all 0.3s ease;
}

.blog-category-badge a:hover {
    background: var(--accent-gold);
    color: #fff;
}

.modern-blog-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .modern-blog-title {
        font-size: 2.2rem;
    }
}

.blog-author-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2.5rem;
    color: #94a3b8;
}

.author-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.publish-date {
    color: #64748b;
    font-size: 0.85rem;
}

/* Reading Container */
.modern-reading-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Featured Image */
.modern-blog-image {
    margin: -30px 0 50px;
    position: relative;
    z-index: 10;
}

.modern-blog-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    max-height: 500px;
}

/* Article Content Typography */
.modern-blog-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    background: #fff;
}

table th,
table td {
    border: 1px solid #000;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

table th {
    background-color: #f5f5f5;
    font-weight: 700;
}

table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

table tbody tr:hover {
    background-color: #f1f7ff;
}

table p {
    margin: 0;
}
}

.modern-blog-content p {
    margin-bottom: 0.8em;
}

.modern-blog-content h2,
.modern-blog-content h3 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 16px;
    line-height: 1.3;
}

.modern-blog-content h2 {
    font-size: 2rem;
}

.modern-blog-content h3 {
    font-size: 1.5rem;
}

.modern-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em 0;
}

.modern-blog-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #475569;
    border-left: 4px solid var(--accent-gold);
    padding: 10px 0 10px 20px;
    margin: 2em 0;
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
}

.modern-blog-content a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.modern-blog-content a:hover {
    border-bottom-color: var(--accent-gold);
}

/* Footer Interactions */
.blog-footer-interactions {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.modern-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modern-tag-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-tag-pill i {
    color: #94a3b8;
    margin-right: 4px;
}

.modern-tag-pill:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.blog-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 5px;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Ghost Button */
.btn-ghost-back {
    display: inline-block;
    padding: 12px 28px;
    color: #64748b;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost-back:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* --- UPDATED HERO BANNER STYLES --- */
.blog-hero-section.has-bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 40px;
    position: relative;
    border-bottom: none;
    color: #ffffff;
}

.blog-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* Dark overlay */
    z-index: 1;
}

.blog-hero-section .relative-z {
    position: relative;
    z-index: 2;
}

.has-bg-img .modern-blog-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.has-bg-img .author-name,
.has-bg-img .publish-date {
    color: #f8fafc;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.has-bg-img .author-avatar {
    color: #f8fafc;
}

.has-bg-img .blog-category-badge a {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.has-bg-img .blog-category-badge a:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

/* --- PAGINATION STYLES --- */
.pagination .page-link {
    color: var(--accent-gold);
    border: 1px solid #e2e8f0;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #fffbeb;
    color: var(--accent-gold);
    border-color: #fef3c7;
}

.pagination .page-item.disabled .page-link {
    color: #94a3b8;
    background-color: #f8fafc;
    border-color: #e2e8f0;
}


/* --- MOBILE LAYOUT OVERRIDES (2 ITEMS PER ROW) --- */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .astro-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .services-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Smaller font for astrologer cards to fit 2 in a row */
    .astro-name {
        font-size: 1rem !important;
    }

    .astro-card p {
        font-size: 0.75rem !important;
    }

    .astro-card .btn-astro-chat {
        font-size: 0.8rem !important;
        padding: 6px !important;
    }

    /* Services font size adjustment */
    .service-card-new h3 {
        font-size: 1rem !important;
    }

    .service-card-new p {
        font-size: 0.75rem !important;
    }

    /* Categories adjustment */
    .category-card h3 {
        font-size: 0.95rem !important;
    }

    .category-card p {
        font-size: 0.7rem !important;
    }

    /* Testimonials Mobile Compact */
    .testi-left {
        padding-right: 0 !important;
        text-align: center;
        margin-bottom: 20px;
    }

    .testi-title {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }

    .testi-rating-box {
        justify-content: center;
        margin-bottom: 15px !important;
    }

    .testi-score {
        font-size: 2.5rem !important;
    }

    .testi-nav {
        justify-content: center;
    }

    .testi-card-large {
        padding: 15px !important;
        border-radius: 15px !important;
    }

    .testi-quote-icon {
        font-size: 3rem !important;
        top: 10px !important;
        left: 10px !important;
    }

    .testi-content {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .testi-author-block {
        padding-top: 15px !important;
    }

    .testi-author-block img {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {

    /* Ensure even on smallest screens it stays 2 columns */
    .categories-grid,
    .astro-grid,
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .category-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
}

/* Custom Flatpickr Time Picker Styles (Mockup Match) */
.flatpickr-calendar.noCalendar {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    padding-bottom: 0;
}

.flatpickr-time {
    border: none !important;
    height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px !important;
}

.flatpickr-time .numInputWrapper {
    width: 65px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.flatpickr-time .numInputWrapper input.numInput {
    height: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    padding: 0;
    text-align: center;
}

.flatpickr-time .numInputWrapper:hover,
.flatpickr-time .numInputWrapper.focused,
.flatpickr-time .numInputWrapper:focus-within {
    border-color: var(--accent-gold);
    background-color: #ffffff !important;
}

.flatpickr-time .numInputWrapper input.numInput:hover,
.flatpickr-time .numInputWrapper input.numInput.focused,
.flatpickr-time .numInputWrapper input.numInput:focus {
    background-color: #ffffff !important;
    color: #333 !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
    width: auto !important;
}

/* Add custom dropdown arrow to fake select appearance */
.flatpickr-time .numInputWrapper::after {
    content: '\f107'; /* FontAwesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #666;
    pointer-events: none;
}
.flatpickr-time .numInputWrapper input.numInput {
    padding-right: 15px; /* space for arrow */
}

/* Hide Flatpickr native up/down arrows to look cleaner */
.flatpickr-time .numInputWrapper span.arrowUp,
.flatpickr-time .numInputWrapper span.arrowDown {
    display: none !important;
}

/* Style the AM/PM button */
.flatpickr-time .flatpickr-am-pm {
    width: 55px;
    height: 45px;
    background: #f4f4f4;
    color: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
    background: var(--accent-gold) !important;
    color: #fff !important;
}

/* Style the appended Done button */
.btn-flatpickr-done {
    display: inline-block;
    background: var(--accent-gold);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-flatpickr-done:hover {
    background: #c2410a;
}

.flatpickr-am-pm::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7em;
    margin-left: 5px;
    display: inline-block;
}
/* --- NEW FULL-WIDTH DARK NAVBAR --- */
.navbar-dark-custom {
    width: 100%;
    left: 0px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px 30px;
    margin-top: 0 !important;
    top: 0 !important;
}
.header-transparent {
    background: transparent !important;
    position: absolute !important;
}
.header-solid {
    background-color: #28183a !important;
    position: relative !important;
}

.navbar-dark-custom .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px !important;
}

.navbar-dark-custom .nav-link i {
    font-size: 1.1rem;
}

.navbar-dark-custom .nav-link:hover {
    opacity: 0.8;
}

.navbar-dark-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-dark-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 1199px) {
    .navbar-dark-custom .navbar-collapse {
        background-color: #1e112a;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }
}

/* --- HERO SECTION BACKGROUND & OVERLAY --- */
.new-hero-section {
    background-image: url('images/astroziva.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    color: white !important;
}

.new-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.new-hero-section>.container {
    position: relative;
    z-index: 1;
}

.new-hero-section .hero-title-main {
    color: #ffffff !important;
}

.new-hero-section p,
.new-hero-section h3,
.new-hero-section .hero-title-main span {
    color: #ffffff !important;
}

.new-hero-section .hero-title-main span {
    color: #f59e0b !important;
}

.new-hero-section .live-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

/* --- HOVER ANIMATIONS WITH SMOOTH GRADIENT TRANSITIONS --- */
/* 1. Category Card */
.category-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e06a2d 0%, #7213ef 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.section-para {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.category-card:hover {
    background: #ffffff;
    /* reset original background to let ::after show */
}

.category-card:hover::after {
    opacity: 1;
}

/* Ensure content stays above the background */
.category-card>* {
    position: relative;
    z-index: 2;
}

/* 2. Service Card */
.service-card-new {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e06a2d 0%, #7213ef 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card-new:hover {
    background: #ffffff;
    /* reset original */
}

.service-card-new:hover::after {
    opacity: 1;
}

.service-card-new:hover h3,
.service-card-new:hover p {
    color: #ffffff !important;
}

.service-card-new>* {
    position: relative;
    z-index: 2;
}

/* 3. Astro Card */
.astro-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.astro-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e06a2d 0%, #7213ef 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.astro-card:hover {
    background: #ffffff;
}

.astro-card:hover::after {
    opacity: 1;
}

.astro-card:hover h3,
.astro-card:hover p,
.astro-card:hover .astro-name,
.astro-card:hover .astro-specialty {
    color: #ffffff !important;
}

.astro-card>* {
    position: relative;
    z-index: 2;
}

/* Make icons transition colors too */
.category-card h3,
.category-card p,
.service-card-new h3,
.service-card-new p,
.astro-card h3,
.astro-card p,
.astro-card .astro-name,
.astro-card .astro-specialty {
    transition: color 0.3s ease;
}

/* If there are specific icons inside Astro card that should change */
.astro-card:hover .info-item i {
    color: #ffffff !important;
}

/* Fix service card arrow positioning */
.service-card-new .service-arrow-btn {
    position: absolute !important;
}
/* Fix header button hover text disappearing */
.navbar .nav-btn-chat:hover {
    background: #ea580c !important;
    color: #ffffff !important;
}

/* --- FOOTER HOVER EFFECTS --- */
.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-link:hover {
    color: #ea580c !important;
    transform: translateY(-2px);
}

.footer-social {
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-social:hover {
    color: #ea580c !important;
    transform: translateY(-3px) scale(1.1);
}

/* --- HERO SECTION MOBILE RESPONSIVENESS --- */
.hero-stats-container {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-stat-divider {
    border-left: 1px solid #e5e7eb;
    height: 40px;
}

@media (max-width: 991px) {
    .hero-banner-responsive {
        padding-top: 120px !important;
    }
    .hero-stats-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-banner-responsive {
        padding-top: 100px !important; 
    }
    .hero-title-main {
        font-size: 2.8rem !important;
    }
    .hero-stats-container {
        gap: 15px !important;
        justify-content: center;
        margin-top: 25px !important;
    }
    .hero-stat-item h3 {
        font-size: 1.6rem !important;
    }
    .hero-stat-item p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .hero-banner-responsive {
        padding-top: 120px !important; /* Extra padding for mobile header */
        padding-bottom: 20px !important;
    }
    .hero-title-main {
        font-size: 2.3rem !important;
    }
    .hero-stats-container {
        gap: 0 !important;
        justify-content: space-around;
        flex-wrap: nowrap;
        width: 100%;
    }
    .hero-stat-item {
        flex: 1;
        text-align: center;
    }
    .hero-stat-item h3 {
        font-size: 1.4rem !important;
    }
    .hero-stat-item p {
        font-size: 0.75rem !important;
    }
    .hero-stat-divider {
        height: 30px;
        border-left: 1px solid #e5e7eb;
        margin: 0 10px;
    }
    
    /* Make button full width on very small screens */
    .hero-banner-responsive .btn-chat {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

/* --- EXTRA MOBILE OPTIMIZATIONS FOR ASTRO CARDS --- */
@media (max-width: 480px) {
    .astro-card {
        padding: 15px 10px !important;
    }
    .astro-avatar {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 8px !important;
    }
    .astro-status-badge {
        padding: 3px 8px !important;
        font-size: 0.65rem !important;
        margin-bottom: 5px !important;
    }
    .astro-name {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .astro-card p {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Specifically target the experience paragraph to reduce bottom margin */
    .astro-card > div > p:last-of-type {
        margin-bottom: 12px !important;
    }
    .btn-astro-chat {
        font-size: 0.75rem !important;
        padding: 8px 2px !important;
        white-space: nowrap !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px !important;
        width: 100% !important;
        overflow: hidden;
    }
}

/* --- MAIN WRAPPER FOR OVERFLOW PREVENTION --- */
#main-wrapper {
    overflow-x: clip;
    position: relative;
    max-width: 1900px;
    margin: 0 auto;
    width: 100%;
}

/* --- NEW ASTRO CARD LAYOUT (RESPONSIVE) --- */
.new-astro-card {
    height: 100%; 
    cursor: pointer; 
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.astro-avatar-wrapper {
    position: relative;
    margin-bottom: 15px;
}
.new-astro-card .astro-status-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fee2e2;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #fff;
    white-space: nowrap;
    text-transform: uppercase;
}
.new-astro-card .badge-online {
    background: #dcfce7;
    color: #16a34a;
}
.astro-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.new-astro-card .astro-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
.astro-action-mobile {
    display: none;
}
.new-astro-card .astro-specialty {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 2px;
    margin-top: 5px;
}
.new-astro-card .astro-experience {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.astro-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.btn-astro-chat-desktop {
    background: var(--brand-gradient, linear-gradient(135deg, #f59e0b, #ea580c));
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 15px;
}
.btn-astro-chat-mobile {
    background: transparent;
    color: #22c55e;
    border: 1px solid #22c55e;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* MOBILE LIST LAYOUT */
@media (max-width: 768px) {
    .astro-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .new-astro-card {
        flex-direction: row;
        text-align: left;
        padding: 15px !important;
        align-items: center;
    }
    .astro-avatar-wrapper {
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    .new-astro-card .astro-avatar {
        width: 70px !important;
        height: 70px !important;
        margin: 0 !important;
        border: 2px solid #22c55e;
        padding: 2px;
    }
    /* Move status badge to overlap avatar */
    .new-astro-card .astro-status-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        bottom: -5px;
    }
    .astro-info-wrapper {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .astro-name-row {
        justify-content: space-between;
        margin-bottom: 2px;
    }
    .new-astro-card .astro-name {
        font-size: 1rem !important;
    }
    .new-astro-card .astro-specialty {
        font-size: 0.75rem !important;
        margin-top: 0;
    }
    .new-astro-card .astro-experience {
        font-size: 0.75rem !important;
        margin-bottom: 4px;
    }
    .astro-rating-row {
        justify-content: flex-start;
        font-size: 0.8rem;
    }
    .astro-action-mobile {
        display: block;
    }
    .btn-astro-chat-desktop {
        display: none !important;
    }
}

/* --- FIX ASTRO GRID MOBILE OVERFLOW --- */
@media (max-width: 768px) {
    .astro-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .astro-grid > a, .astro-grid > .category-astro-card {
        flex: 1 1 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .astro-card {
        min-width: 0 !important; /* Allow shrinking below content width */
        width: 100% !important;
        padding: 10px 8px !important; /* Even smaller padding */
    }
    .astro-name {
        font-size: 0.9rem !important;
        white-space: normal !important; /* Allow wrapping */
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
    }
    .astro-card p {
        font-size: 0.7rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }
    .btn-astro-chat {
        font-size: 0.7rem !important;
        padding: 8px 4px !important;
        white-space: normal !important; /* Allow button text to wrap if really needed */
        line-height: 1.1 !important;
    }
    .astro-avatar {
        width: 60px !important;
        height: 60px !important;
    }
}

/* --- FIX SERVICES GRID MOBILE OVERFLOW --- */
@media (max-width: 768px) {
    .services-grid-new {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .service-card-new {
        min-width: 0 !important; /* Allow shrinking */
        width: 100% !important;
        padding: 12px 10px !important;
        box-sizing: border-box !important;
    }
    .service-card-new h3 {
        font-size: 0.95rem !important;
        white-space: normal !important; /* Allow wrapping */
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
    }
    .service-card-new p {
        font-size: 0.75rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        padding-right: 22px !important; /* Space for arrow button so text doesn't overlap it */
    }
    .service-card-new .service-arrow-btn {
        width: 28px !important;
        height: 28px !important;
        bottom: 12px !important;
        right: 10px !important;
        font-size: 0.75rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .service-card-new .service-icon-box {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
}

/* --- MOBILE BLOG CARD OVERRIDES --- */
@media (max-width: 768px) {
    .blog-img-wrapper {
        height: 160px !important; 
    }
    .blog-card-content {
        padding: 15px !important;
    }
    .blog-title {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    .blog-excerpt {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }
    .read-more {
        font-size: 0.85rem !important;
        padding: 6px 15px;
        background: #fffbeb; /* Light orange/gold tint */
        border: 1px solid #fde68a;
        border-radius: 20px;
        display: inline-flex !important;
        align-self: flex-start;
        margin-top: auto !important;
    }
}

/* --- MOBILE SINGLE BLOG BANNER OVERRIDES --- */
@media (max-width: 768px) {
    .blog-hero-section.has-bg-img {
        padding: 50px 0 40px !important; /* Reduce banner height */
    }
    .modern-blog-title {
        font-size: 1.6rem !important; /* Reduce title font size */
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
    }
    .blog-category-badge a {
        padding: 4px 12px !important;
        font-size: 0.75rem !important;
        margin-bottom: 15px !important;
    }
    .author-name, .publish-date {
        font-size: 0.85rem !important;
    }
    .author-avatar {
        font-size: 1.5rem !important;
    }
    .modal-content {
            padding: 10px;
    }
    .form-control-custom {

    padding: 14px 15px 14px 26px;}
}

/* ==========================================================================
   BLOG FAQs SECTION
   ========================================================================== */
.blog-faqs-section {
    margin-top: 50px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.faqs-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-details {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-details:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-summary {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default arrow */
    position: relative;
}

.faq-summary::-webkit-details-marker {
    display: none; /* Hide default arrow for Safari */
}

.faq-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);}
/* --- FIX ASTRO GRID MOBILE OVERFLOW --- */
@media (max-width: 768px) {
    .astro-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .astro-card {
        min-width: 0 !important; /* Allow shrinking below content width */
        width: 100% !important;
        padding: 10px 8px !important; /* Even smaller padding */
    }
    .astro-name {
        font-size: 0.9rem !important;
        white-space: normal !important; /* Allow wrapping */
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
    }
    .astro-card p {
        font-size: 0.7rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }
    .btn-astro-chat {
        font-size: 0.7rem !important;
        padding: 8px 4px !important;
        white-space: normal !important; /* Allow button text to wrap if really needed */
        line-height: 1.1 !important;
    }
    .astro-avatar {
        width: 60px !important;
        height: 60px !important;
    }
}

/* --- FIX SERVICES GRID MOBILE OVERFLOW --- */
@media (max-width: 768px) {
    .services-grid-new {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .service-card-new {
        min-width: 0 !important; /* Allow shrinking */
        width: 100% !important;
        padding: 12px 10px !important;
        box-sizing: border-box !important;
    }
    .service-card-new h3 {
        font-size: 0.95rem !important;
        white-space: normal !important; /* Allow wrapping */
        line-height: 1.2 !important;
        margin-bottom: 5px !important;
    }
    .service-card-new p {
        font-size: 0.75rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        padding-right: 0px !important; /* Space for arrow button so text doesn't overlap it */
    }
    .service-card-new .service-arrow-btn {
        width: 28px !important;
        height: 28px !important;
        bottom: 12px !important;
        right: 10px !important;
        font-size: 0.75rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .service-card-new .service-icon-box {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    .modal-content .modal-body {
        padding: 0px !important;
    }
    .modal-content .modal-header {
        padding: 15px 0px !important;
    }
    .booking-section {
        padding: 20px !important;
    }
    .form-control-custom {
        padding: 8px 15px 8px 26px;
    }
    .profile-right-content {
        padding: 15px !important;
    }
    .review-list {
        padding: 10px !important;
       
        gap: 10px !important;
    }
    .calculator-wrapper {
        padding: 20px !important;
        .btn-primary {
            font-size: 1rem !important;
        }
    }
    .contact-info {
        justify-content: center !important;
    }
}

/* --- MOBILE BLOG CARD OVERRIDES --- */
@media (max-width: 768px) {
    .blog-img-wrapper {
        height: 160px !important; 
    }
    .blog-card-content {
        padding: 15px !important;
    }
    .blog-title {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    .blog-excerpt {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }
    .read-more {
        font-size: 0.85rem !important;
        padding: 6px 15px;
        background: #fffbeb; /* Light orange/gold tint */
        border: 1px solid #fde68a;
        border-radius: 20px;
        display: inline-flex !important;
        align-self: flex-start;
        margin-top: auto !important;
    }
}

/* --- MOBILE SINGLE BLOG BANNER OVERRIDES --- */
@media (max-width: 768px) {
    .blog-hero-section.has-bg-img {
        padding: 50px 0 40px !important; /* Reduce banner height */
    }
    .modern-blog-title {
        font-size: 1.6rem !important; /* Reduce title font size */
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
    }
    .blog-category-badge a {
        padding: 4px 12px !important;
        font-size: 0.75rem !important;
        margin-bottom: 15px !important;
    }
    .author-name, .publish-date {
        font-size: 0.85rem !important;
    }
    .author-avatar {
        font-size: 1.5rem !important;
    }
}

/* ==========================================================================
   BLOG FAQs SECTION
   ========================================================================== */
.blog-faqs-section {
    margin-top: 50px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.faqs-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-details {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-details:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-summary {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default arrow */
    position: relative;
}

.faq-summary::-webkit-details-marker {
    display: none; /* Hide default arrow for Safari */
}

.faq-details[open] .faq-summary {
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 10px;
}

.faq-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 15px 25px 25px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    animation: fadeInDown 0.3s ease forwards;
    max-height: none !important;
    overflow: visible !important;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   BLOG TABLES
   ========================================================================== */
.modern-blog-content table, 
.modern-blog-content table * {
    box-sizing: border-box;
}

.modern-blog-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
    background: #fff !important;
    border: 1px solid var(--border-color) !important;
    font-size: 1rem !important;
}

.modern-blog-content th,
.modern-blog-content td {
    padding: 15px 20px !important;
    border: 1px solid var(--border-color) !important;
    text-align: left !important;
    vertical-align: top !important;
}

.modern-blog-content th {
    background: rgba(223, 165, 24, 0.05) !important;
    color: var(--text-primary) !important;
    font-weight: 700 !important;
}

.modern-blog-content tr:nth-child(even) {
    background: rgba(0,0,0,0.02) !important;
}





/* Astroziva Brand Colors for Flatpickr Time Picker */
.flatpickr-time input:hover, 
.flatpickr-time input:focus, 
.flatpickr-time .flatpickr-am-pm:hover, 
.flatpickr-time .flatpickr-am-pm:focus {
    background-color: #ea580c !important;
    color: #fff !important;
}
.flatpickr-time .numInputWrapper span.arrowUp:after { 
    border-bottom-color: #ea580c !important; 
}
.flatpickr-time .numInputWrapper span.arrowDown:after { 
    border-top-color: #ea580c !important; 
}




/* Free Calculators Mega Menu and Form Styles */
.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    background-color: #a85e21 !important;
    border: none !important;
    border-radius: 0 0 10px 10px !important;
    padding: 30px 15px;
    margin-top: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
    .navbar .dropdown.position-static {
        position: static !important;
    }
}

.mega-menu-list li {
    margin-bottom: 12px;
}

.mega-menu-list a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    opacity: 0.95;
}

.mega-menu-list a:hover {
    color: #ffecd1 !important;
    padding-left: 5px;
    opacity: 1;
}

/* Minimalist Border-Bottom Form Fields (for Calculators) */
.form-minimal {
    background: #fdf5e6 !important;
    border: 1px solid #eab308 !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    color: #190c2e !important;
    box-shadow: none !important;
    font-size: 1rem;
    width: 100%;
}

.form-minimal:focus {
    border: 1px solid #ea580c !important;
    background: #fffbeb !important;
    box-shadow: 0 0 8px rgba(234, 88, 12, 0.2) !important;
    outline: none !important;
}

.label-minimal {
    font-weight: 500;
    color: #5a2c0a;
    font-size: 1.1rem;
    margin-bottom: 0px;
}

.calculator-wrapper {
    background-color: #faeed7;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto;
}


.form-minimal::placeholder {
    color: #000000 !important;
    opacity: 0.8 !important;
}


/* Mega Menu Overrides for Premium Look and Hover Support */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        margin-top: 0px;
        animation: fadeIn 0.3s ease;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-menu {
    background-color: #a35d1f !important;
    border-top: 3px solid #f97316 !important;
    padding: 35px 0 !important;
}
.mega-menu .dropdown-header {
    font-size: 1.4rem !important;
    font-family: 'Outfit', sans-serif;
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Premium Calculator Report Styles */
.premium-content-wrapper {
    position: relative;
    width: 100%;
}
.blurred-section {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    opacity: 0.6;
    transition: filter 0.5s ease, opacity 0.5s ease;
}
.premium-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #ea580c;
    width: 80%;
    max-width: 400px;
    font-family: 'Outfit', sans-serif;
}
.premium-overlay h3 {
    color: #ea580c;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}
.premium-overlay p {
    color: #4a2105;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

/* Blog Category Filter Buttons */
.blog-cat-filter {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.blog-cat-filter:hover {
    background: #d1d5db;
    color: #1f2937;
}
.blog-cat-filter.active {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: #fff;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}
.dropdown-header {
    color:  #fff !important;
}

@media (max-width: 768px) {
    .blog-cat-filter {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

.mega-menu-list a {
    font-size: 1.15rem !important;
    padding: 8px 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}
.mega-menu-list a:hover {
    color: #f97316 !important;
    transform: translateX(8px);
}


/* Short Width Mega Menu Override */
.navbar-nav .nav-item.dropdown .mega-menu {
    width: max-content !important;
    min-width: 650px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}
@media (max-width: 768px) {
    .navbar-nav .nav-item.dropdown .mega-menu {
        width: 100% !important;
        min-width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }
}


/* Final Container Width Mega Menu Override */
.navbar-nav .nav-item.dropdown.position-static .mega-menu {
    width: 100% !important;
    max-width: 1140px !important; /* Standard Bootstrap container width */
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important; /* Center it */
    transform: none !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}
@media (max-width: 1200px) {
    .navbar-nav .nav-item.dropdown.position-static .mega-menu {
        max-width: 960px !important;
    }
}
@media (max-width: 992px) {
    .navbar-nav .nav-item.dropdown.position-static .mega-menu {
        max-width: 720px !important;
    }
}
@media (max-width: 768px) {
    .navbar-nav .nav-item.dropdown.position-static .mega-menu {
        max-width: 100% !important;
        border-radius: 0 !important;
    }
        .category-line {
        display: none;
    }
    .astro-header h2 {
        text-align: center;
    }
    .section-para {
        font-size: 16px;
        line-height: 1.4;
    }
    .astro-card {
        i {
            font-size: 10px;
        }
        .reviewss {
            gap: 0px !important;
            font-size: 10px !important;
        }
    }
}

/* ==========================================================================
   GLOBAL FLOATING LIVE CHAT WIDGET STYLES
   ========================================================================== */
.global-chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(234, 88, 12, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    animation: gcSlideIn 0.4s ease forwards;
}

.global-chat-launcher:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(234, 88, 12, 0.25), 0 0 0 2px #ea580c;
}

.launcher-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
}

.launcher-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ea580c;
}

.launcher-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    animation: gcPulse 2s infinite;
}

.launcher-info {
    display: flex;
    flex-direction: column;
}

.launcher-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.launcher-subtitle {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ea580c;
}

.launcher-badge {
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launcher-close-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 4px;
    cursor: pointer;
}

/* Chat Window Modal */
.global-chat-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 385px;
    max-width: calc(100vw - 30px);
    height: 570px;
    max-height: calc(100vh - 40px);
    z-index: 100000;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: gcWindowOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header */
.gc-header {
    background: #1e1b4b;
    color: #ffffff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gc-header-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gc-avatar-wrap {
    position: relative;
    width: 40px;
    height: 40px;
}

.gc-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fed7aa;
}

.gc-online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid #1e1b4b;
    border-radius: 50%;
}

.gc-user-details h5 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
}

.gc-user-status {
    font-size: 0.76rem;
    color: #10b981;
    font-weight: 600;
}

.gc-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gc-timer-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fde047;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: monospace;
}

.gc-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #cbd5e1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.gc-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.gc-action-btn.gc-btn-end:hover {
    background: #ef4444;
    color: #ffffff;
}

/* Waiting Screen */
.gc-waiting-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    background: #fff8f0;
}

.gc-pulse-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.gc-pulse-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ea580c;
}

.gc-pulse-ring::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #ea580c;
    border-radius: 50%;
    animation: gcPulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.gc-waiting-container h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gc-waiting-container p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.btn-start-chat-now {
    background: var(--brand-gradient);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-start-chat-now:hover {
    transform: scale(1.03);
}

/* Alert Banner */
.gc-recharge-alert {
    background: #fef2f2;
    border-bottom: 1px solid #fecaca;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b91c1c;
}

.gc-recharge-btn {
    background: #dc2626;
    color: #ffffff !important;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Messages Body */
.gc-messages-body {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gc-intake-card {
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.82rem;
    box-shadow: 0 2px 6px rgba(234, 88, 12, 0.06);
    margin-bottom: 6px;
}

.gc-intake-header {
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.gc-intake-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
    color: #475569;
}

.gc-intake-grid span {
    color: #94a3b8;
}

.gc-messages-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gc-msg-row {
    display: flex;
    width: 100%;
}

.gc-msg-user {
    justify-content: flex-end;
}

.gc-msg-astro {
    justify-content: flex-start;
}

.gc-msg-bubble {
    max-width: 82%;
    padding: 9px 13px;
    border-radius: 14px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

.gc-msg-user .gc-msg-bubble {
    background: var(--brand-gradient);
    color: #ffffff;
    border-bottom-right-radius: 3px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.2);
}

.gc-msg-astro .gc-msg-bubble {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.gc-msg-time {
    font-size: 0.68rem;
    margin-top: 3px;
    text-align: right;
    opacity: 0.8;
}

.gc-msg-astro .gc-msg-time {
    color: #94a3b8;
}

.gc-msg-user .gc-msg-time {
    color: rgba(255, 255, 255, 0.85);
}

/* Ended Screen */
.gc-ended-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    background: #ffffff;
}

.gc-ended-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 15px;
}

.gc-ended-container h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gc-ended-container p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 20px;
}

.btn-close-ended-chat {
    background: #1e293b;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Input Bar */
.gc-input-bar {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gc-input-bar input {
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    padding: 9px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.gc-input-bar input:focus {
    border-color: #ea580c;
}

.gc-input-bar button {
    background: var(--brand-gradient);
    border: none;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(234, 88, 12, 0.25);
    transition: transform 0.2s;
}

.gc-input-bar button:hover {
    transform: scale(1.05);
}

/* Keyframe Animations */
@keyframes gcSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gcWindowOpen {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes gcPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes gcPulseRing {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .global-chat-launcher {
        bottom: 16px;
        right: 16px;
        padding: 6px 12px 6px 6px;
    }
    .launcher-avatar-wrap {
        width: 38px;
        height: 38px;
    }
    .global-chat-window {
        bottom: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
    }
}

