/* =========================
  Header New CSS
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eee;
}

/* =========================
   GLOBAL RESET & LAYOUT FIX
========================= */
/* Box sizing sanity */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent horizontal scroll issues */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Image & media safety */
img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default tap highlight on mobile */
a,
button {
    -webkit-tap-highlight-color: transparent;
}

/* Improve text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*=======FULL BODY SIZE START END=======*/

/* =========================
   PREMIUM HEADER (RESPONSIVE) FIX
========================= */

.site-header-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
}

/* CONTAINER */
.container-wide {
    max-width: 1200px;
    margin-inline: auto;
    padding: 1.25rem 1.5rem;
}

/* BRAND */
.brand-name-premium {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

/* HEADER LAYOUT */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* NAV */
.header-nav-premium {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.header-nav-premium a {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
}

/* CTA */
.nav-cta-premium {
    padding: 10px 18px;
    border-radius: 999px;
    background: #111827;
    color: #fff !important;
    font-weight: 600;
}

.nav-cta-premium:hover {
    background: #000;
    text-decoration: none;
}

/* =========================
   MOBILE HEADER FIX
========================= */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav-premium {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e5e7eb;
    }

    .header-nav-premium a {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    .nav-cta-premium {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}


/*=======PREMIUM HEADER FIX END=======*/


/* =========================
   MICRO SECTION — PREMIUM FIX REFINED
========================= */

.micro-section {
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at top left,
            rgba(37,99,235,0.08),
            transparent 55%),
        linear-gradient(180deg, #f9fafb, #ffffff);
}

/* GRID */
.micro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.2rem;
}

/* CARD */
.micro-card {
    position: relative;
    background: #ffffff;
    padding: 2.6rem 2.4rem;
    border-radius: 26px;
    text-align: center;
    box-shadow:
        0 25px 50px rgba(0,0,0,.08),
        0 0 0 1px rgba(15,23,42,0.04);
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
}

/* SUBTLE GLOW ON HOVER */
.micro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(37,99,235,0.12),
        rgba(14,165,233,0.12)
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.micro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(0,0,0,.14);
}

.micro-card:hover::before {
    opacity: 1;
}

/* ICON */
.micro-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(37,99,235,.45);
}

/* TITLE */
.micro-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #020617;
}

/* TEXT */
.micro-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #475569;
}

/* =========================
   MOBILE POLISH
========================= */
@media (max-width: 768px) {
    .micro-section {
        padding: 3.2rem 0;
    }

    .micro-card {
        padding: 2.2rem 2rem;
    }

    .micro-card h4 {
        font-size: 1.05rem;
    }

    .micro-card p {
        font-size: 0.95rem;
    }
}

/*=====MICRO SECTION — PREMIUM FIX End==*/

/* =========================
   PRODUCT HERO
========================= */
.product-hero {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 5rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 1rem;
}

.product-benefits {
    margin-top: 2rem;
    padding-left: 0;
    list-style: none;
}

.product-benefits li {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.price-box {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-buy-premium {
    padding: 14px 28px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
}

.btn-buy-premium:hover {
    background: #1d4ed8;
    text-decoration: none;
}

/* MOCKUP */
.product-mockup {
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}



/*=======PRODUCT HERO END=======*/


/* =========================
   PREMIUM FOOTER (FINAL LOCK) FIXED
========================= */

.site-footer-premium {
    background: radial-gradient(circle at top, #020617 0%, #020617 100%);
    color: #e5e7eb;
    padding: 5rem 0 2rem;
    width: 100%;
}

/* INNER GRID */
.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* BRAND / ABOUT */
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-desc {
    margin-top: 0.9rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 420px;
}

/* LINKS */
.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

/* DIVIDER */
.footer-divider {
    margin: 3rem auto 1.5rem;
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
    padding: 1.2rem 1rem 0;
}

/* =========================
   MOBILE FOOTER FIX
========================= */

@media (max-width: 768px) {

    .site-footer-premium {
        padding: 4rem 0 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links a:hover {
        transform: none; /* avoid jump on mobile */
    }
}

/*=======FOOTER FIX REFINE End=======*/

/*=======Product Image Start=======*/

.product-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.18);
    object-fit: cover;
}

/*=======Product Image End=======*/

/* =========================
   SUBTLE ANIMATIONS
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }


/*=======SUBTLE ANIMATIONS End=======*/


/* =========================
   MOBILE HERO POLISH
========================= */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-subtitle {
        font-size: 1rem;
    }

    .product-benefits {
        text-align: left;
        display: inline-block;
        margin: 1.5rem auto 0;
    }

    .price-box {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-buy-premium {
        width: 100%;
        text-align: center;
    }
}

/*=======MOBILE HERO POLISH End=======*/


/* =========================
   TRUST BADGES
========================= */
.trust-badges {
    margin-top: 1.2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #4b5563;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/*=======TRUST BADGES End=======*/


/* =========================
   PREMIUM FINISH
========================= */
.product-hero {
    position: relative;
}

.product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(37, 99, 235, 0.08),
        transparent 40%
    );
    pointer-events: none;
}

.btn-buy-premium {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

.btn-buy-premium:hover {
    transform: translateY(-1px);
}


/*=======TRUST BADGES End=======*/


/* =========================
   HOME HERO — ALIVE EFFECT FIXED REFINE
========================= */

/* FLOATING IMAGE (SUBTLE, PREMIUM) */
@keyframes heroFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-float {
    animation: heroFloat 3.5s ease-in-out infinite;
    will-change: transform;
}

/* LIVE / NEWS BADGE */
.hero-live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(34,197,94,0.12);
    color: #16a34a;
}

/* PULSE DOT */
.hero-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 rgba(34,197,94,0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34,197,94,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0);
    }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    /* Reduce motion on mobile */
    .hero-float {
        animation-duration: 5s;
        transform: none;
    }

    .hero-live {
        font-size: 0.65rem;
        padding: 5px 10px;
        margin-bottom: 0.75rem;
    }
}

/* =========================
   ACCESSIBILITY (IMPORTANT)
========================= */
@media (prefers-reduced-motion: reduce) {
    .hero-float {
        animation: none;
    }

    .hero-live::before {
        animation: none;
    }
}
 
 
/*========HOME HERO IMAGE FLOATING AND OTHERS FIX==*/

/* =========================
   CHECKOUT PAGE (PREMIUM)
========================= */
.checkout-hero {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 5rem 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: flex-start;
}

/* LEFT CARD */
.checkout-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.checkout-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.checkout-subtitle {
    margin-top: 0.5rem;
    color: #4b5563;
}

.checkout-price {
    margin: 1.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

/* FORM */
.checkout-form {
    margin-top: 1.5rem;
}

.checkout-form label {
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-input {
    width: 100%;
    margin-top: 0.5rem;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
}

.checkout-input:focus {
    outline: none;
    border-color: #2563eb;
}

/* CTA */
.btn-checkout {
    width: 100%;
    margin-top: 1.5rem;
    padding: 16px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 25px 45px rgba(37, 99, 235, 0.4);
}

.btn-checkout:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* TRUST */
.checkout-trust {
    margin-top: 1.2rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    flex-wrap: wrap;
}

.checkout-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* RIGHT SUMMARY */
.checkout-summary {
    background: #f9fafb;
    border-radius: 24px;
    padding: 2rem;
}

.checkout-summary h4 {
    font-weight: 600;
}

.summary-item,
.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
    font-size: 0.95rem;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.summary-total {
    font-weight: 700;
}

.summary-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #374151;
}

/* MOBILE */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-hero {
        padding: 3rem 0;
    }
}

/*=======CHECKOUT PAGE (PREMIUM) End=======*/

 
 /*=======Flash Alert Starts=======*/ 
 .alert-success {
    margin: 1rem 0;
    padding: 14px 18px;
    border-radius: 12px;
    background: #ecfdf5;
    color: #065f46;
    font-weight: 500;
}

 /*=======Flash Alert Ends=======*/
 
 
 /* =========================
   ADMIN TABLE
========================= */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.admin-table th,
.admin-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.95rem;
}

.admin-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.admin-table tr:not(:last-child) td {
    border-bottom: 1px solid #e5e7eb;
}

.admin-actions a {
    margin-right: 10px;
    font-weight: 500;
    color: #2563eb;
}

.admin-actions a.delete {
    color: #dc2626;
}


 /*=======Admin Table Ends=======*/
 
 
 /* =========================
   BRAND / LOGO
========================= */
.brand {
    display: flex;
    flex-direction: column;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    height: 36px;
    max-width: 160px;
    object-fit: contain;
}

.brand-name-premium {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

 /*=======BRAND / LOGO Ends=======*/
 
 
 /* =========================
   PREMIUM PRODUCT CARD
========================= */
.product-card-premium {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #facc15;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
}

.product-card-body {
    padding: 1.5rem;
}

.product-subtitle {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 600;
}

.product-desc {
    font-size: 0.9rem;
    color: #4b5563;
    margin-top: 0.5rem;
}

.product-highlights {
    margin-top: 1rem;
    padding-left: 0;
    list-style: none;
    font-size: 0.85rem;
}

.product-highlights li {
    margin-bottom: 0.4rem;
}

.product-card-footer {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 /*=======PREMIUM PRODUCT CARD Ends=======*/
 
 /*=======BACK BUTTON START=======*/
 .back-button-wrapper {
    max-width: 1200px;
    margin: 1rem auto;
}

.back-button {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 500;
}

 /*=======BACK BUTTON END=======*/
 
 /* =========================
   PREMIUM PRODUCT CARD (ENHANCED)
========================= */
.product-card-premium {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid #fde68a; /* default badge tone */
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #facc15;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 2;
}

.product-card-body {
    padding: 1.6rem;
}

.product-highlights {
    margin-top: 1rem;
    padding-left: 0;
    list-style: none;
    font-size: 0.88rem;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
    color: #374151;
}

.highlight-check {
    color: #facc15; /* same as badge */
    font-weight: 700;
}

 /*=======PREMIUM PRODUCT CARD (ENHANCED) END=======*/
 
 
 /* =========================
   PRODUCT IMAGE HOVER ZOOM
========================= */
.product-card-img {
    transition: transform 0.4s ease;
}

.product-card-premium:hover .product-card-img {
    transform: scale(1.08);
}

 /*=======PRODUCT IMAGE HOVER ZOOM END=======*/
 
 
 /* =========================
   CATEGORY FILTERS
========================= */
.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-pill {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

 /*=======CATEGORY FILTERS END=======*/
 
 
 
  /*=======DASHBOARD STATS CSS START=======*/
 
 .admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.stat-card h4 {
    font-size: 0.9rem;
    color: #6b7280;
}

.stat-card p {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0.4rem;
}

 /*=======DASHBOARD STATS CSS END=======*/
 
 
 .product-hero h1 span {
    background: linear-gradient(90deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

 /*=======Product Hero END=======*/
 
 
 /* =========================
   TYPOGRAPHY POLISH
========================= */
h1, h2, h3 {
    font-family: inherit;
    letter-spacing: -0.015em;
}

h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111827;
}

h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
}

p {
    line-height: 1.65;
    color: #4b5563;
}

/* Card titles */
.stat-card h4,
.product-card-premium h3 {
    font-weight: 600;
    color: #111827;
}

/* Subtle premium feel */
.stat-card p,
.product-desc {
    font-size: 0.95rem;
}

 /*=======TYPOGRAPHY POLISH END=======*/


/* =========================
   LINK POLISH
========================= */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    opacity: 0.85;
}

 /*=======LINK POLISH END=======*/
 
 
 /* =========================
   AUTHORITY DARK SECTION
========================= */
.authority-section {
    background-image: url("/assets/images/connect-bento-background.webp");
    color: #e5e7eb;
    padding: 6rem 0;
}

.authority-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
}

.authority-subtitle {
    text-align: center;
    max-width: 680px;
    margin: 1rem auto 4rem;
    font-size: 1.1rem;
    color: #94a3b8;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.authority-card {
    background: rgba(255,255,255,0.05);
    border-radius: 22px;
    padding: 2.2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.authority-card:hover {
    transform: translateY(-6px);
}

.authority-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.authority-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #facc15;
}

.authority-card p {
    font-size: 1rem;
    color: #cbd5f5;
}


 /*=======AUTHORITY DARK SECTION END=======*/



/* =========================
   PREMIUM CTA (STRIPE-LEVEL)
========================= */

.cta-premium {
    padding: 7rem 0;
    background-image: url("/assets/images/platform-graphic-background_2x.webp");
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.cta-card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.cta-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #020617;
    margin-bottom: 1.2rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* ACTIONS */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 16px 30px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 25px 45px rgba(37, 99, 235, 0.4);
}

.cta-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cta-btn-secondary {
    padding: 16px 30px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 500;
}

.cta-btn-secondary:hover {
    background: #f1f5f9;
}

/* FOOTNOTE */
.cta-footnote {
    margin-top: 1.8rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.1rem;
    }

    .cta-card {
        padding: 3rem 1.8rem;
    }
}

/* =========================
   CTA VIDEO BLOCK
========================= */

.cta-media {
    margin: 2.8rem auto 3rem;
    max-width: 720px;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.cta-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Optional hover life */
.cta-media:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}



/*=======NEW CTA END===========*/

/* =========================
   AUTHORITY FEATURE (STRIPE STYLE)
========================= */

/* =========================
   EDITORIAL FEATURE (LIGHT)
========================= */

.editorial-feature {
    background: #ffffff;
    padding: 6rem 0;
}

.editorial-eyebrow {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.editorial-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #020617;
}

/* CARD */
.editorial-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    background: #f8fafc;
    border-radius: 28px;
    padding: 3rem;
}

/* IMAGE SIDE */
.editorial-media {
    background: #3b2a14;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-media img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* CONTENT */
.editorial-content {
    position: relative;
}

.editorial-logo {
    position: absolute;
    top: 0;
    right: 0;
}

.editorial-logo img {
    height: 54px;
}

.editorial-title {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.editorial-title span {
    font-weight: 600;
}

.editorial-author {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.4rem;
}

.editorial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    max-width: 640px;
}

.editorial-tags {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.editorial-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

/* MOBILE */
@media (max-width: 900px) {
    .editorial-card {
        grid-template-columns: 1fr;
    }

    .editorial-logo {
        position: static;
        margin-bottom: 1rem;
    }
}

/*==AUTHORITY FEATURE (STRIPE STYLE) END===*/


/*===========Header Subtle Separation Start=======*/

.nav-divider {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
    margin: 0 1rem;
}

.admin-name {
    font-size: 0.85rem;
    color: #6b7280;
}

/*====Header Subtle Separation End=======*/

/* =========================
   ABOUT HERO FIX REFINE
========================= */

.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 6rem 0;
    overflow: hidden;
}

/* Dark overlay for readability */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(2,6,23,0.78),
        rgba(2,6,23,0.6)
    );
    z-index: 0;
}

.about-hero > * {
    position: relative;
    z-index: 1;
}

/* HERO GRID */
.about-hero .product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* EYEBROW */
.about-hero .page-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

/* TITLE */
.about-title,
.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

/* SUBTITLE */
.about-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5f5;
    max-width: 520px;
}

/* HERO IMAGE */
.about-hero-image {
    width: 100%;
    max-width: 520px;
    border-radius: 26px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}

/* =========================
   MISSION SECTION
========================= */

.about-mission {
    padding: 5rem 0;
    background: #020617;
    color: #e5e7eb;
    text-align: center;
}

.mission-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
}

.mission-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #ffffff;
}

.mission-text {
    max-width: 720px;
    margin: auto;
    font-size: 1.15rem;
    line-height: 1.85;
    color: #cbd5f5;
}



/* =========================
   ABOUT STORYTELLING FLOW
========================= */

/* Narrative wrapper */
.about-narrative {
    padding: 6rem 0;
    background: #ffffff;
}

/* Editorial prose */
.about-prose {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 1.35rem;
    line-height: 2.05;
    color: #0f172a;
    letter-spacing: 0.01em;
}

/* Paragraph spacing */
.about-prose p {
    margin-bottom: 2.2rem;
}

/* Elegant opening drop cap */
.about-prose p:first-of-type::first-letter {
    float: left;
    font-family: "Playfair Display", serif;
    font-size: 4.2rem;
    line-height: 1;
    padding-right: 0.4rem;
    margin-top: 0.2rem;
    font-weight: 700;
    color: #2563eb;
}

/* Emphasis */
.about-prose strong {
    font-weight: 600;
    color: #020617;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .about-prose {
        font-size: 1.15rem;
        line-height: 1.9;
    }

    .about-prose p:first-of-type::first-letter {
        font-size: 3.4rem;
    }
}


/* =========================
   ABOUT NARRATIVE — EDITORIAL MONO
========================= */

.about-narrative {
    padding: 3rem 0;
    background: #ffffff;
}

.about-prose {
    font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 1.25rem;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: #0f172a;
}

/* Paragraph spacing */
.about-prose p {
    margin-bottom: 2.4rem;
}

/* Strong emphasis */
.about-prose strong {
    font-weight: 500;
    color: #020617;
}

/* Mobile polish */
@media (max-width: 1008px) {
    .about-prose {
        font-size: 1.1rem;
        line-height: 1.9;
        letter-spacing: 0.03em;
    }
}


/* =========================
   VALUES / PRINCIPLES
========================= */

.about-values {
    padding: 5.5rem 0;
    background: #f8fafc;
}

.values-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

/* VALUE CARD */
.value-card {
    position: relative;
    padding: 2.6rem 2.4rem;
    border-radius: 26px;
    background: #ffffff;
    border-left: 6px solid #2563eb;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 45px 90px rgba(0,0,0,0.16);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: #020617;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

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

@media (max-width: 768px) {

    .about-hero {
        padding: 4rem 0;
    }

    .about-hero .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-title,
    .about-hero h1 {
        font-size: 2.1rem;
    }

    .about-subtitle {
        font-size: 1.05rem;
        margin-inline: auto;
    }

    .about-hero-image {
        max-width: 100%;
        margin: auto;
    }

    .mission-title {
        font-size: 1.9rem;
    }

    .about-prose {
        font-size: 1.15rem;
        line-height: 1.9;
        padding-inline: 1rem;
    }

    .values-title {
        font-size: 1.8rem;
    }
}

/*========ABBOUT FIX REFINE End===*/

/* =========================
   SUPPORT PAGE (POLISHED) FIXED
========================= */

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

/* CARD */
.support-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.4rem 2.2rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    border-top: 4px solid #2563eb;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover */
.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 45px 90px rgba(0,0,0,0.14);
}

/* Highlight card (WhatsApp) */
.support-card.highlight {
    border-top-color: #22c55e;
}

/* ICON */
.support-icon {
    font-size: 2.2rem;
    margin-bottom: 1.1rem;
}

/* TITLE */
.support-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #020617;
}

/* TEXT */
.support-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0.8rem;
}

/* CTA LINK */
.support-cta {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
}

/* SOCIAL LINKS */
.support-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.support-socials a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eff6ff;
}

.support-socials a:hover {
    background: #2563eb;
    color: #ffffff;
}

.support-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
}


/* =========================
   SUPPORT HERO (MOBILE FIX)
========================= */

@media (max-width: 768px) {

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .support-card {
        padding: 2rem 1.6rem;
    }

    .support-icon {
        font-size: 2rem;
    }

    .support-card h3 {
        font-size: 1.15rem;
    }

    .support-card p {
        font-size: 0.92rem;
    }
}


/*=== SUPPORT PAGE End=======*/

/* =========================
   UNIVERSAL HERO SYSTEM FIX NEW
========================= */

.universal-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: #ffffff;
    overflow: hidden;
}

/* GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* CONTENT */
.hero-content {
    max-width: 620px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5f5;
}

/* MEDIA */
.hero-media {
    text-align: center;
}

.hero-image,
.hero-video {
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,.45);
}

/* FLOAT EFFECT */
.hero-float {
    animation: float 3s ease-in-out infinite;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-image,
    .hero-video {
        max-width: 100%;
    }
}

/*=== UNIVERSAL HERO SYSTEM FIX NEW End=======*/

/*=========================
 WHITE TEXT FOR TRUST BADGES
===========================*/


.product-hero,
.product-hero h1,
.product-hero p,
.product-hero .page-eyebrow {
    color: #ffffff;
}

.trust-badges {
    color: #e5e7eb;
    font-weight: 500;
}

.trust-badges span {
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 999px;
}

.universal-hero .trust-badges span {
    color: #e5e7eb;
    font-weight: 500;
    background: rgba(15,23,42,.55);
    padding: 6px 12px;
    border-radius: 999px;
}


.universal-hero {
    position: relative;
    overflow: hidden;
}

/* BG IMAGE */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* BG VIDEO */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* CONTENT ABOVE */
.universal-hero .container-wide {
    position: relative;
    z-index: 2;
}

/* EXTRA CONTRAST */
.universal-hero h1,
.universal-hero p,
.universal-hero .trust-badges span {
    color: #f8fafc;
}

/*=== WHITE TEXT FOR TRUST BADGES End==*/

/*=========================
 PRODUCTS PAGE CSS START NEW
===========================*/

/* PRODUCTS PAGE */
.products-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.products-intro {
    color: #475569;
    font-size: 1.05rem;
}

/* COURSE GRID */
/* CARD */
.course-card {
    background: #fff;
    border-radius: 22px;
    border: 2px solid #facc15; /* yellow */
    overflow: hidden;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}


/* ===== PRODUCTS GRID ===== */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* ===== COURSE CARD ===== */
.premium-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid #facc15; /* yellow outline */
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,.14);
}



/* BADGES */
.course-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
}

.badge-green {
    background: #22c55e;
    color: #022c22;
}

.badge-dark {
    background: #020617;
    color: #fff;
}

/* IMAGE */
.course-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

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

/* PLAY ICON */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .25s ease;
}

/* SHOW ON HOVER ONLY IF VIDEO EXISTS */
.course-thumb[data-video]:hover .play-overlay {
    opacity: 1;
}


/* BODY */
.course-body {
    padding: 1.6rem;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    margin-bottom: .6rem;
}

.course-subtitle {
    font-size: .9rem;
    color: #64748b;
}

.course-desc {
    margin: .8rem 0;
    font-size: .95rem;
    color: #334155;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: .8rem 0 0;
}

.course-highlights li {
    font-size: .85rem;
    color: #334155;
    margin-bottom: .35rem;
}


.meta-pill {
    background: #fef3c7;
    color: #92400e;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-weight: 600;
}

.meta-students {
    color: #475569;
}

/* FOOTER */
.course-footer {
    padding: 1.2rem 1.4rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.btn-view-course {
    background: #2563eb;
    color: #fff;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, transform .2s ease;
}

.btn-view-course:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}


/* MOBILE */
@media (max-width: 768px) {
    .course-thumb img {
        height: 180px;
    }
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/*=========New===*/



.btn-view-classy {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid #020617;
    color: #020617;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-view-classy:hover {
    background: #020617;
    color: #fff;
}


.course-meta {
    display: flex;
    gap: .8rem;
    margin: .6rem 0;
    font-size: .75rem;
    color: #475569;
}

.meta-pill {
    background: #fef3c7;
    padding: .25rem .6rem;
    border-radius: 999px;
}

.meta-students {
    color: #64748b;
}


/*==New===*/

.category-filters-lg {
    margin: 2.5rem 0 3rem;
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.category-filters-lg .filter-pill {
    padding: 12px 22px;
    font-size: 0.95rem;
    border-radius: 999px;
    background: #f3f4f6;
    font-weight: 500;
}

.category-filters-lg .filter-pill.active {
    background: #111827;
    color: #fff;
}

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
    z-index: 6;
}

.wishlist-btn:hover {
    transform: scale(1.08);
}


/* VIDEO MODAL */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.video-box {
    background: #000;
    padding: 1rem;
    border-radius: 16px;
    max-width: 720px;
    width: 90%;
}

.close-modal {
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    float: right;
}

.preview-btn {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 1rem;
    border: none;
    opacity: 0;
    transition: .3s;
}


/*===new*/

/* Bigger, clearer category filters */
.category-filters-lg {
    margin: 2.5rem 0 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-filters-lg .filter-pill {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 999px;
    background: #f3f4f6;
    font-weight: 500;
}

.category-filters-lg .filter-pill.active {
    background: #111827;
    color: #fff;
}


/*================================
SEARCH BAR START CSS NEW
================================*/

.products-search {
    margin: 2rem 0;
}

.products-search form {
    display: flex;
    gap: .8rem;
}

.products-search input {
    flex: 1;
    padding: .9rem 1rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: .95rem;
}

.products-search button {
    padding: .9rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: #facc15;
    font-weight: 700;
    cursor: pointer;
}


/*=====PRODUCTS PAGE NEW CSS End===*/


/*================================
9️⃣ MOBILE FIX (THIS IS THE BIG ONE)
================================*/

@media (max-width: 768px) {

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .course-footer {
        flex-direction: column;
        gap: .8rem;
        align-items: stretch;
    }

    .btn-view-course {
        width: 100%;
        text-align: center;
    }

    .products-search form {
        flex-direction: column;
    }

    .products-search button {
        width: 100%;
    }
}


/*=====9️⃣ MOBILE FIX (THIS IS THE BIG ONE) NEW End===*/


/* ===============================
   RECOMMENDATION SECTION
=============================== */

.recommendation-section {
    margin-top: 80px;
}

.recommend-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.recommend-card {
    text-decoration: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.recommend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.recommend-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.recommend-info {
    padding: 14px;
}

.recommend-info h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #111;
}

.recommend-info span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c7a600;
}

/*========Live Count====*/

.live-viewing {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #c0392b;
    font-weight: 600;
    animation: pulseView 2s infinite ease-in-out;
}

@keyframes pulseView {
    0% { opacity: .6; }
    50% { opacity: 1; }
    100% { opacity: .6; }
}

/*========UpSell====*/
.upsell-box {
    margin-top: 25px;
    padding: 15px;
    background: #fff8e1;
    border-left: 4px solid #c7a600;
    font-size: 0.9rem;
}
