/* ==========================================================================
   SAKSHAM NAARI — MASTER STYLESHEET
   ==========================================================================
   TABLE OF CONTENTS
   --------------------------------------------------------------------------
   01. Root Variables & Reset
   02. Top Bar
   03. Header & Primary Navigation
   04. Login Dropdown
   05. Cart Button & Slide-Over Panel
   06. Primary Button
   07. Mobile Hamburger & Drawer
   08. Hero Slider
   09. Quick Action Bar
   10. About Section
   11. Training Centers
   12. Courses Carousel
   13. Stats Band
   14. Why Choose Us
   15. Testimonials
   16. Certification CTA
   17. CTA Banner
   18. FAQ
   19. Global Responsive Breakpoints (Sections 01–18)
   20. Footer
   21. Trending Courses
   22. Instructors
   23. Mobile Bottom Navigation
   24. Mobile App Topbar
   25. Install App Banner
   26. Category Icon Grid (page: categories.blade.php)
   27. Open Center CTA
   28. Courses Slide-Over Panel (Browse All)
   29. Login Page (page: auth/login.blade.php)
   30. Category Cards Redesign (page: categories.blade.php)
   31. Shared Breadcrumb Component (used by: cart, checkout)
   32. Cart Page (page: cart.blade.php)
   33. Checkout Page (page: checkout.blade.php)
   34. Checkout — Payment Gateways: Razorpay / PhonePe / COD
   ========================================================================== */

/* ==========================================================================
   01. ROOT VARIABLES & RESET
   ========================================================================== */
:root {
    --purple: #5b2d8e;
    --purple-d: #3e1e64;
    --purple-lt: #ede5f7;
    --purple-bg: #f7f3fd;
    --pink: #e91e8c;
    --pink-lt: #fce4f3;
    --gold: #f5a623;
    --dark: #1e1229;
    --body-col: #4a4560;
    --muted: #8a82a0;
    --border: rgba(91, 45, 142, 0.12);
    --white: #ffffff;
    --off-white: #faf7fd;
    --shadow-sm: 0 2px 8px rgba(91, 45, 142, 0.1);
    --shadow-md: 0 4px 20px rgba(91, 45, 142, 0.14);
    --header-h: 70px;
    --topbar-h: 38px;
    --drawer-w: 310px;

    /* Payment gateway brand colors — single source of truth, reused by
       the gateway badges in section 34 so brand colors are never redefined
       in more than one place. */
    --rzp-navy: #0c2451;
    --rzp-blue: #3395ff;
    --phonepe: #5f259f;
    --phonepe-d: #4a1c7a;
    --cod-green: #22a760;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: "Hind", sans-serif;
    background: var(--off-white);
    color: var(--body-col);
    margin: 0;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.sn-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.sn-ico svg {
    width: 1em;
    height: 1em;
}
button {
    font-family: inherit;
}

/* ==========================================================================
   02. TOP BAR
   ========================================================================== */
.sn-topbar {
    background: var(--purple-d);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
}
.sn-topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sn-topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sn-topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sn-topbar-item .sn-ico {
    font-size: 0.85rem;
    color: var(--gold);
}
.sn-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sn-topbar-right a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.18s;
}
.sn-topbar-right a:hover {
    color: #fff;
}
.sn-topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.sn-topbar-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}
.sn-topbar-social a:hover {
    color: var(--gold);
}

/* ==========================================================================
   03. HEADER & PRIMARY NAVIGATION
   ========================================================================== */
.sn-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2.5px solid var(--purple);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s;
}
.sn-header.scrolled {
    box-shadow: var(--shadow-md);
}
.sn-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: var(--header-h);
    padding: 0 32px;
}

.sn-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 28px;
}
.sn-logo img {
    height: 50px;
    width: auto;
}

.sn-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}
.sn-nav-item {
    position: relative;
}
.sn-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    font-family: "Poppins", sans-serif;
    font-size: 0.81rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 8px;
    transition:
        background 0.18s,
        color 0.18s;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
}
.sn-nav-link .dd-arrow {
    font-size: 0.6rem;
    color: var(--muted);
    transition: transform 0.2s;
}
.sn-nav-link:hover,
.sn-nav-link.active {
    background: var(--purple-lt);
    color: var(--purple);
}
.sn-nav-link.active {
    font-weight: 600;
}
.sn-nav-item:hover > .sn-nav-link .dd-arrow {
    transform: rotate(180deg);
    color: var(--purple);
}
.sn-nav-item:hover > .sn-nav-link {
    background: var(--purple-lt);
    color: var(--purple);
}

.sn-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(91, 45, 142, 0.14);
    padding: 8px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
        opacity 0.22s,
        transform 0.22s,
        visibility 0.22s;
    z-index: 200;
}
.sn-nav-item:hover .sn-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sn-dropdown a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    font-size: 0.83rem;
    font-family: "Hind", sans-serif;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition:
        background 0.15s,
        color 0.15s;
}
.sn-dropdown a .sn-ico {
    color: var(--pink);
    font-size: 0.95rem;
    width: 18px;
    flex-shrink: 0;
}
.sn-dropdown a:hover {
    background: var(--purple-bg);
    color: var(--purple);
}

.sn-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}
.sn-hdivider {
    width: 1px;
    height: 26px;
    background: var(--border);
    margin: 0 6px;
}

/* ==========================================================================
   04. LOGIN DROPDOWN
   ========================================================================== */
.sn-login-wrap {
    position: relative;
}
.sn-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--purple-lt);
    color: var(--purple);
    border: 1.5px solid transparent;
    padding: 8px 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
}
.sn-login-btn:hover {
    background: var(--purple);
    color: #fff;
}
.sn-login-btn .sn-ico {
    font-size: 0.95rem;
}
.sn-login-dd {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 34px rgba(91, 45, 142, 0.16);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.22s,
        transform 0.22s,
        visibility 0.22s;
    z-index: 300;
}
.sn-login-wrap:hover .sn-login-dd,
.sn-login-dd.force-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sn-login-dd a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition:
        background 0.15s,
        color 0.15s;
}
.sn-login-dd a .sn-login-ic {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--purple-lt);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.15s;
}
.sn-login-dd a:hover {
    background: var(--purple-bg);
}
.sn-login-dd a:hover .sn-login-ic {
    background: var(--purple);
    color: #fff;
}
.sn-login-dd a small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    font-size: 0.7rem;
    margin-top: 1px;
}

/* ==========================================================================
   05. CART BUTTON & SLIDE-OVER PANEL
   ========================================================================== */
.sn-cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
    color: var(--dark);
    border-radius: 8px;
    transition:
        background 0.18s,
        color 0.18s;
    display: flex;
    align-items: center;
}
.sn-cart-btn .sn-ico {
    font-size: 1.25rem;
}
.sn-cart-btn:hover {
    background: var(--purple-lt);
    color: var(--purple);
}
.sn-cart-count {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--pink);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    border: 1.5px solid #fff;
}

.sn-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 18, 41, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2099;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s,
        visibility 0.35s;
}
.sn-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}
.sn-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    background: var(--white);
    z-index: 2100;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.sn-cart-panel.open {
    transform: translateX(0);
}
.sn-cart-head {
    padding: 20px 22px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.sn-cart-head h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sn-cart-head h5 .sn-ico {
    color: var(--pink);
    font-size: 1.15rem;
}
.sn-cart-head-count {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.8rem;
}
.sn-cart-close {
    background: none;
    border: 1.5px solid var(--border);
    color: var(--muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.sn-cart-close .sn-ico {
    font-size: 0.9rem;
}
.sn-cart-close:hover {
    background: var(--pink-lt);
    border-color: var(--pink);
    color: var(--pink);
}
.sn-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.sn-cart-body::-webkit-scrollbar {
    width: 3px;
}
.sn-cart-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.sn-cart-item {
    display: flex;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.sn-cart-item:last-child {
    border-bottom: none;
}
.sn-cart-thumb {
    width: 60px;
    height: 60px;
    border-radius: 11px;
    background: var(--purple-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple);
}
.sn-cart-thumb .sn-ico {
    font-size: 1.6rem;
}
.sn-cart-info {
    flex: 1;
    min-width: 0;
}
.sn-cart-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
    line-height: 1.3;
}
.sn-cart-meta {
    font-size: 0.71rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.sn-cart-price {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--purple);
}
.sn-cart-remove {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 3px;
    align-self: flex-start;
    transition: color 0.15s;
}
.sn-cart-remove .sn-ico {
    font-size: 0.95rem;
}
.sn-cart-remove:hover {
    color: #e53e3e;
}
.sn-cart-empty {
    text-align: center;
    padding: 50px 20px;
}
.sn-cart-empty .sn-ico {
    font-size: 3.2rem;
    color: var(--muted);
    opacity: 0.3;
    margin-bottom: 14px;
    display: block;
}
.sn-cart-empty p {
    color: var(--muted);
    font-size: 0.9rem;
}
.sn-cart-foot {
    padding: 16px 22px 20px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.sn-cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.83rem;
    color: var(--body-col);
    margin-bottom: 7px;
}
.sn-cart-row.total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    border-top: 1px solid var(--border);
    padding-top: 11px;
    margin-top: 5px;
}
.sn-cart-row.total span:last-child {
    color: var(--purple);
}
.sn-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(91, 45, 142, 0.3);
    transition: background 0.2s;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.sn-checkout-btn .sn-ico {
    font-size: 1rem;
}
.sn-checkout-btn:hover {
    background: var(--purple-d);
    color: #fff;
}
.sn-continue-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: none;
    border: 1.5px solid var(--border);
    padding: 10px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--body-col);
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
    margin-top: 9px;
}
.sn-continue-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--purple-lt);
}

/* ==========================================================================
   06. PRIMARY BUTTON
   ========================================================================== */
.sn-btn-primary {
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.81rem;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(91, 45, 142, 0.3);
    transition:
        background 0.2s,
        transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.sn-btn-primary:hover {
    background: var(--purple-d);
    color: #fff;
    transform: translateY(-1px);
}
.sn-btn-primary .sn-ico {
    font-size: 0.95rem;
}

/* ==========================================================================
   07. MOBILE HAMBURGER & DRAWER
   ========================================================================== */
.sn-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
    display: none;
    border-radius: 8px;
    transition: background 0.2s;
    margin-right: 10px;
    color: var(--purple);
}
.sn-hamburger:hover {
    background: var(--purple-lt);
}
.sn-hamburger .sn-ico {
    font-size: 1.4rem;
}

.sn-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 18, 41, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s,
        visibility 0.35s;
}
.sn-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}
.sn-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--drawer-w);
    height: 100%;
    z-index: 2100;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--purple-d);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sn-drawer.open {
    transform: translateX(0);
}
.sn-drawer-head {
    padding: 18px 18px 14px;
    background: #2a1250;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}
.sn-drawer-head img {
    height: 42px;
    width: auto;
    opacity: 0.9;
}
.sn-drawer-close {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.sn-drawer-close:hover {
    background: rgba(255, 255, 255, 0.28);
}
.sn-drawer-close .sn-ico {
    font-size: 1rem;
}
.sn-drawer-search {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}
.sn-dsearch-wrap {
    position: relative;
}
.sn-dsearch-wrap .sn-ico {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.9rem;
    pointer-events: none;
}
.sn-dsearch-wrap input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 8px 12px 8px 34px;
    color: #fff;
    font-size: 0.82rem;
    font-family: "Hind", sans-serif;
    outline: none;
    transition: border 0.2s;
}
.sn-dsearch-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.36);
}
.sn-dsearch-wrap input:focus {
    border-color: var(--pink);
}
.sn-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
}
.sn-drawer-nav::-webkit-scrollbar {
    width: 3px;
}
.sn-drawer-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 3px;
}
.sn-drawer-section {
    padding: 12px 18px 4px;
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.sn-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: "Hind", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.18s;
}
.sn-drawer-link .sn-ico {
    font-size: 1rem;
    width: 18px;
    color: var(--pink);
    flex-shrink: 0;
}
.sn-drawer-link:hover,
.sn-drawer-link.active {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding-left: 22px;
    border-left-color: var(--pink);
}
.sn-drawer-link.has-sub .sn-sub-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.32);
    transition: transform 0.25s;
}
.sn-drawer-badge-mini {
    margin-left: auto;
    background: var(--pink);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}
.sn-drawer-link.has-sub.expanded .sn-sub-arrow {
    transform: rotate(180deg);
}
.sn-drawer-sub {
    display: none;
    background: rgba(0, 0, 0, 0.16);
}
.sn-drawer-sub.open {
    display: block;
}
.sn-drawer-sub a {
    display: block;
    padding: 8px 18px 8px 48px;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.82rem;
    font-family: "Hind", sans-serif;
    transition: color 0.15s;
}
.sn-drawer-sub a:hover {
    color: var(--gold);
}
.sn-drawer-foot {
    padding: 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}
.sn-drawer-logins {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.sn-drawer-login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: background 0.2s;
}
.sn-drawer-login-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
.sn-drawer-login-btn .sn-ico {
    color: var(--gold);
    font-size: 1rem;
}
.sn-drawer-socials {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.sn-drawer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}
.sn-drawer-socials a:hover {
    background: var(--pink);
    color: #fff;
}
.sn-drawer-copy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.26);
    font-family: "Hind", sans-serif;
}

/* ==========================================================================
   08. HERO SLIDER
   ========================================================================== */
.sn-hero {
    position: relative;
    background: var(--purple-d);
    overflow: hidden;
}
.sn-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.sn-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.sn-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    height: 460px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.sn-slide-1 {
    background: #3e1e64;
}
.sn-slide-1::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.12);
    pointer-events: none;
}
.sn-slide-1::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    pointer-events: none;
}
.sn-slide-2 {
    background: #1a0a3c;
}
.sn-slide-2::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(91, 45, 142, 0.25);
    pointer-events: none;
}
.sn-slide-3 {
    background: #0d2240;
}
.sn-slide-3::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.1);
    pointer-events: none;
}
.slide-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 40px;
}
.slide-text {
    flex: 1;
    min-width: 0;
}
.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
}
.slide-eyebrow .sn-ico {
    font-size: 0.85rem;
}
.slide-title {
    font-size: clamp(1.6rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
}
.slide-title span {
    color: var(--gold);
}
.slide-desc {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 460px;
}
.slide-stats {
    display: flex;
    gap: 28px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.slide-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}
.slide-stat-num span {
    color: var(--gold);
}
.slide-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    font-family: "Hind", sans-serif;
}
.slide-visual {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-icon-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.slide-icon-wrap::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}
.slide-icon-main {
    width: 88px;
    height: 88px;
    color: #fff;
}
.slide-icon-main svg {
    width: 100%;
    height: 100%;
}
.slide-icon-badge {
    position: absolute;
    bottom: 16px;
    right: -10px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.sn-slider-prev,
.sn-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}
.sn-slider-prev .sn-ico,
.sn-slider-next .sn-ico {
    font-size: 1.1rem;
}
.sn-slider-prev {
    left: 16px;
}
.sn-slider-next {
    right: 16px;
}
.sn-slider-prev:hover,
.sn-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
}
.sn-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.sn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        width 0.3s;
    padding: 0;
}
.sn-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}
.sn-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--pink);
    width: 0%;
    transition: width linear;
    z-index: 10;
}

/* ==========================================================================
   09. QUICK ACTION BAR
   ========================================================================== */
.sn-action-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 5;
}
.sn-action-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sn-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 16px 22px;
    flex: 1;
    min-width: 240px;
    max-width: 340px;
    text-decoration: none;
    transition: all 0.22s;
}
.sn-action-card:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 24px rgba(91, 45, 142, 0.12);
    transform: translateY(-3px);
}
.sn-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-action-icon .sn-ico {
    font-size: 1.3rem;
}
.sn-action-icon.pink {
    background: var(--pink);
}
.sn-action-icon.gold {
    background: var(--gold);
    color: var(--dark);
}
.sn-action-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 2px;
}
.sn-action-desc {
    font-size: 0.74rem;
    color: var(--muted);
}

/* ==========================================================================
   10. ABOUT SECTION
   ========================================================================== */
.sn-about {
    padding: 80px 0;
    background: #fff;
}
.sn-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 64px;
}
.sn-about-visual {
    flex-shrink: 0;
    width: 420px;
    position: relative;
}
.sn-about-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: var(--purple-bg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sn-about-img-wrap svg {
    width: 100%;
    height: 100%;
}
.sn-about-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--purple);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 8px 24px rgba(91, 45, 142, 0.28);
    font-family: "Poppins", sans-serif;
    text-align: center;
}
.sn-about-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.sn-about-badge-label {
    font-size: 0.68rem;
    opacity: 0.82;
    margin-top: 2px;
}
.sn-about-dots {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(
        var(--purple-lt) 1.5px,
        transparent 1.5px
    );
    background-size: 10px 10px;
    border-radius: 8px;
    z-index: -1;
}
.sn-about-text {
    flex: 1;
    min-width: 0;
}
.sn-eyebrow {
    display: inline-block;
    background: var(--purple-lt);
    color: var(--purple);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
}
.sn-about-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 16px;
}
.sn-about-title span {
    color: var(--purple);
}
.sn-about-desc {
    font-size: 0.95rem;
    color: var(--body-col);
    line-height: 1.8;
    margin-bottom: 10px;
}
.sn-about-desc-more {
    font-size: 0.95rem;
    color: var(--body-col);
    line-height: 1.8;
    margin-bottom: 24px;
    display: none;
}
.sn-about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.sn-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}
.sn-pillar-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--purple-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}
.sn-pillar-icon .sn-ico {
    font-size: 1.05rem;
}
.sn-pillar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
}
.sn-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(91, 45, 142, 0.3);
    transition: background 0.2s;
}
.sn-read-more-btn:hover {
    background: var(--purple-d);
}
.sn-read-more-btn .sn-ico {
    transition: transform 0.3s;
    font-size: 0.85rem;
}
.sn-read-more-btn.expanded .sn-ico {
    transform: rotate(180deg);
}

/* ==========================================================================
   11. TRAINING CENTERS
   ========================================================================== */
.sn-centers {
    padding: 80px 0;
    background: var(--off-white);
}
.sn-centers-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-section-head {
    text-align: center;
    margin-bottom: 52px;
}
.sn-eyebrow2 {
    display: inline-block;
    background: var(--purple-lt);
    color: var(--purple);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
}
.sn-section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.sn-section-head h2 span {
    color: var(--purple);
}
.sn-section-head p {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 540px;
    margin: 12px auto 0;
    line-height: 1.7;
}
.sn-centers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sn-center-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.22s;
}
.sn-center-card:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 24px rgba(91, 45, 142, 0.12);
    transform: translateY(-4px);
}
.sn-center-flag {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--purple-lt);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.sn-center-flag .sn-ico {
    font-size: 1.5rem;
}
.sn-center-state {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 4px;
}
.sn-center-count {
    font-size: 0.76rem;
    color: var(--muted);
}
.sn-centers-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   12. COURSES CAROUSEL
   ========================================================================== */
.sn-courses {
    padding: 80px 0;
    background: #fff;
}
.sn-courses-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-courses-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}
.sn-courses-header-left .sn-eyebrow {
    display: inline-block;
    background: var(--purple-lt);
    color: var(--purple);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
}
.sn-courses-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.sn-courses-title span {
    color: var(--purple);
}
.sn-courses-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}
.sn-courses-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.sn-courses-arrow .sn-ico {
    font-size: 1rem;
}
.sn-courses-arrow:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.sn-courses-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.sn-courses-track-wrap {
    overflow: hidden;
}
.sn-courses-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.sn-course-card {
    flex-shrink: 0;
    width: calc(25% - 15px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.sn-course-card:hover {
    box-shadow: 0 8px 28px rgba(91, 45, 142, 0.13);
    transform: translateY(-4px);
}
.sn-course-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sn-course-thumb .sn-ico {
    width: 48px;
    height: 48px;
    color: var(--purple);
}
.sn-course-thumb .sn-ico svg {
    width: 100%;
    height: 100%;
}
.sn-course-thumb-1 {
    background: #ede5f7;
}
.sn-course-thumb-2 {
    background: #fce4f3;
}
.sn-course-thumb-2 .sn-ico {
    color: var(--pink);
}
.sn-course-thumb-3 {
    background: #e8f4fd;
}
.sn-course-thumb-3 .sn-ico {
    color: #1976d2;
}
.sn-course-thumb-4 {
    background: #fff3e0;
}
.sn-course-thumb-4 .sn-ico {
    color: #e09010;
}
.sn-course-thumb-5 {
    background: #e8f5e9;
}
.sn-course-thumb-5 .sn-ico {
    color: #388e3c;
}
.sn-course-thumb-6 {
    background: #fde8f0;
}
.sn-course-thumb-6 .sn-ico {
    color: var(--pink);
}
.sn-course-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--pink);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sn-course-badge.bestseller {
    background: var(--gold);
    color: var(--dark);
}
.sn-course-body {
    padding: 16px;
}
.sn-course-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    font-family: "Poppins", sans-serif;
    margin-bottom: 6px;
}
.sn-course-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}
.sn-course-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.sn-course-meta .sn-ico {
    color: var(--pink);
    font-size: 0.78rem;
}
.sn-course-rating .sn-ico {
    color: var(--gold) !important;
}
.sn-course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.sn-course-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--purple);
    font-family: "Poppins", sans-serif;
}
.sn-course-price-old {
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 4px;
    font-weight: 400;
}
.sn-course-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple-lt);
    border: none;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.sn-course-add .sn-ico {
    font-size: 0.95rem;
}
.sn-course-add:hover {
    background: var(--purple);
    color: #fff;
}
.sn-courses-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 28px;
}
.sn-courses-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        width 0.3s;
    padding: 0;
}
.sn-courses-dot.active {
    background: var(--purple);
    width: 22px;
    border-radius: 4px;
}
.sn-view-all {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
.sn-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--purple);
    color: var(--purple);
    padding: 11px 28px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.sn-view-all-btn .sn-ico {
    font-size: 0.9rem;
}
.sn-view-all-btn:hover {
    background: var(--purple);
    color: #fff;
}

/* ==========================================================================
   13. STATS BAND
   ========================================================================== */
.sn-stats {
    padding: 64px 0;
    background: var(--purple);
}
.sn-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.sn-stat-item {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.sn-stat-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}
.sn-stat-item:last-child::after {
    display: none;
}
.sn-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #fff;
}
.sn-stat-icon .sn-ico {
    font-size: 1.4rem;
}
.sn-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.sn-stat-num span {
    color: var(--gold);
}
.sn-stat-label {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Hind", sans-serif;
}

/* ==========================================================================
   14. WHY CHOOSE US
   ========================================================================== */
.sn-why {
    padding: 80px 0;
    background: #fff;
}
.sn-why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sn-why-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 32px 28px;
    background: #fff;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    position: relative;
    overflow: hidden;
}
.sn-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.sn-why-card:hover::before {
    transform: scaleX(1);
}
.sn-why-card:hover {
    box-shadow: 0 8px 32px rgba(91, 45, 142, 0.12);
    transform: translateY(-4px);
}
.sn-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--purple-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.2s;
    color: var(--purple);
}
.sn-why-icon .sn-ico {
    font-size: 1.5rem;
}
.sn-why-card:hover .sn-why-icon {
    background: var(--purple);
    color: #fff;
}
.sn-why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}
.sn-why-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */
.sn-testimonials {
    padding: 80px 0;
    background: var(--off-white);
}
.sn-testi-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-testi-track-wrap {
    overflow: hidden;
    position: relative;
}
.sn-testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.sn-testi-card {
    flex-shrink: 0;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sn-testi-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
}
.sn-testi-stars .sn-ico {
    font-size: 0.92rem;
}
.sn-testi-quote {
    font-size: 0.9rem;
    color: var(--body-col);
    line-height: 1.75;
    flex: 1;
}
.sn-testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.sn-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #fff;
}
.sn-testi-av-1 {
    background: #5b2d8e;
}
.sn-testi-av-2 {
    background: #e91e8c;
}
.sn-testi-av-3 {
    background: #f5a623;
    color: var(--dark) !important;
}
.sn-testi-av-4 {
    background: #3e1e64;
}
.sn-testi-av-5 {
    background: #c0166f;
}
.sn-testi-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 2px;
}
.sn-testi-role {
    font-size: 0.75rem;
    color: var(--muted);
}
.sn-testi-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.sn-testi-dots {
    display: flex;
    gap: 6px;
}
.sn-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        width 0.3s;
    padding: 0;
}
.sn-testi-dot.active {
    background: var(--purple);
    width: 22px;
    border-radius: 4px;
}
.sn-testi-arrows {
    display: flex;
    gap: 8px;
}
.sn-testi-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.sn-testi-arrow .sn-ico {
    font-size: 1rem;
}
.sn-testi-arrow:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.sn-testi-arrow:disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ==========================================================================
   16. CERTIFICATION CTA
   ========================================================================== */
.sn-certify {
    padding: 80px 0;
    background: var(--purple-d);
    position: relative;
    overflow: hidden;
}
.sn-certify::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
.sn-certify-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sn-certify-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sn-cert-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    width: 340px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}
.sn-cert-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px dashed var(--purple-lt);
    border-radius: 12px;
    pointer-events: none;
}
.sn-cert-seal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}
.sn-cert-seal .sn-ico {
    font-size: 1.7rem;
}
.sn-cert-card h4 {
    text-align: center;
    font-size: 1rem;
    color: var(--purple);
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}
.sn-cert-card p {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}
.sn-cert-name {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}
.sn-cert-course {
    text-align: center;
    font-size: 0.78rem;
    color: var(--body-col);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}
.sn-cert-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    position: relative;
    z-index: 2;
}
.sn-cert-id {
    font-size: 0.65rem;
    color: var(--muted);
}
.sn-cert-sig {
    font-size: 0.7rem;
    color: var(--purple);
    font-weight: 700;
}
.sn-certify-text .sn-eyebrow3 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.sn-certify-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 16px;
}
.sn-certify-text h2 span {
    color: var(--gold);
}
.sn-certify-text p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.78;
    margin-bottom: 28px;
}
.sn-certify-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.sn-cert-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 13px 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.sn-cert-action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.sn-cert-action-btn .sn-ico {
    font-size: 1.2rem;
    color: var(--gold);
}
.sn-cert-action-title {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.sn-cert-action-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
}
.sn-certify-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sn-certify-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
}
.sn-certify-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Poppins", sans-serif;
}

/* ==========================================================================
   17. CTA BANNER
   ========================================================================== */
.sn-cta-banner {
    padding: 80px 0;
    background: var(--purple);
    position: relative;
    overflow: hidden;
}
.sn-cta-banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.sn-cta-banner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.15);
    pointer-events: none;
}
.sn-cta-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sn-cta-content .sn-eyebrow3 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.sn-cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
}
.sn-cta-content h2 span {
    color: var(--gold);
}
.sn-cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 32px;
}
.sn-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.sn-cta-btn-white {
    background: #fff;
    color: var(--purple);
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.sn-cta-btn-white .sn-ico {
    font-size: 1rem;
}
.sn-cta-btn-white:hover {
    background: var(--gold);
    color: var(--dark);
}
.sn-cta-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 26px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sn-cta-btn-ghost .sn-ico {
    font-size: 1rem;
}
.sn-cta-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.sn-cta-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sn-cta-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}
.sn-cta-feature-card:hover {
    background: rgba(255, 255, 255, 0.16);
}
.sn-cta-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.sn-cta-feat-icon .sn-ico {
    font-size: 1.25rem;
}
.sn-cta-feat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin-bottom: 3px;
}
.sn-cta-feat-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   18. FAQ
   ========================================================================== */
.sn-faq {
    padding: 90px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.sn-faq::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--purple-lt);
    opacity: 0.45;
    pointer-events: none;
}
.sn-faq::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--pink-lt);
    opacity: 0.4;
    pointer-events: none;
}
.sn-faq-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}
.sn-faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}
.sn-faq-sidebar {
    position: sticky;
    top: 100px;
}
.sn-faq-sidebar h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
}
.sn-faq-sidebar h2 span {
    color: var(--purple);
}
.sn-faq-sidebar p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}
.sn-faq-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sn-faq-cat-btn {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--body-col);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.sn-faq-cat-btn.active,
.sn-faq-cat-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.sn-faq-cta-box {
    background: var(--purple);
    border-radius: 20px;
    padding: 28px 24px;
    margin-top: 28px;
}
.sn-faq-cta-box h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}
.sn-faq-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    margin-bottom: 18px;
}
.sn-faq-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--purple);
    border: none;
    padding: 11px 20px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}
.sn-faq-cta-btn .sn-ico {
    font-size: 0.95rem;
}
.sn-faq-cta-btn:hover {
    background: var(--gold);
    color: var(--dark);
}
.sn-faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition:
        border-color 0.25s,
        box-shadow 0.25s;
}
.sn-faq-item.open {
    border-color: var(--purple);
    box-shadow: 0 6px 28px rgba(91, 45, 142, 0.11);
}
.sn-faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
}
.sn-faq-q-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--purple-lt);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}
.sn-faq-item.open .sn-faq-q-num {
    background: var(--purple);
    color: #fff;
}
.sn-faq-q-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    flex: 1;
    line-height: 1.4;
}
.sn-faq-item.open .sn-faq-q-text {
    color: var(--purple);
}
.sn-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
}
.sn-faq-toggle .sn-ico {
    font-size: 0.85rem;
    color: var(--muted);
    transition:
        transform 0.3s,
        color 0.25s;
}
.sn-faq-item.open .sn-faq-toggle {
    background: var(--pink);
    border-color: var(--pink);
}
.sn-faq-item.open .sn-faq-toggle .sn-ico {
    color: #fff;
    transform: rotate(45deg);
}
.sn-faq-body {
    display: none;
    padding: 0 24px 22px 72px;
}
.sn-faq-body p {
    font-size: 0.88rem;
    color: var(--body-col);
    line-height: 1.8;
    margin: 0 0 12px;
}
.sn-faq-body p:last-child {
    margin: 0;
}
.sn-faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.sn-faq-tag {
    background: var(--purple-lt);
    color: var(--purple);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
}

body.sn-locked {
    overflow: hidden;
}

/* ==========================================================================
   19. GLOBAL RESPONSIVE BREAKPOINTS (Sections 01–18)
   ========================================================================== */
@media (max-width: 1199px) {
    .sn-topbar-inner {
        padding: 0 24px;
    }
    .sn-header-inner {
        padding: 0 24px;
    }
}
@media (max-width: 991px) {
    .sn-topbar {
        display: none;
    }
    .sn-nav {
        display: none;
    }
    .sn-hamburger {
        display: flex;
    }
    .sn-header-inner {
        padding: 0 16px;
    }
    .sn-hdivider {
        display: none;
    }
    .sn-login-wrap {
        display: none;
    }
    .sn-action-inner {
        padding: 20px 24px;
    }
    .sn-about-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }
    .sn-about-visual {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }
    .sn-centers-inner {
        padding: 0 24px;
    }
    .sn-centers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sn-courses-inner {
        padding: 0 24px;
    }
    .sn-course-card {
        width: calc(50% - 10px);
    }
    .sn-stats-inner {
        padding: 0 24px;
    }
    .sn-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sn-stat-item:nth-child(2)::after {
        display: none;
    }
    .sn-stat-item:nth-child(3)::after {
        display: none;
    }
    .sn-why-inner {
        padding: 0 24px;
    }
    .sn-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sn-testi-inner {
        padding: 0 24px;
    }
    .sn-certify-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        text-align: center;
    }
    .sn-certify-visual {
        order: -1;
    }
    .sn-certify-actions {
        justify-content: center;
    }
    .sn-certify-steps {
        align-items: center;
    }
    .sn-cta-banner-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px;
    }
    .sn-faq-wrap {
        padding: 0 24px;
    }
    .sn-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sn-faq-sidebar {
        position: static;
    }
    .sn-slide {
        height: 340px;
    }
    .slide-inner {
        padding: 0 48px;
        gap: 20px;
    }
    .slide-visual {
        width: 200px;
    }
    .slide-icon-wrap {
        width: 170px;
        height: 170px;
    }
    .slide-icon-main {
        width: 64px;
        height: 64px;
    }
    .slide-stats {
        gap: 18px;
    }
}
@media (max-width: 767px) {
    .sn-action-card {
        min-width: 100%;
        max-width: 100%;
    }
    .sn-about {
        padding: 56px 0;
    }
    .sn-about-inner {
        padding: 0 20px;
    }
    .sn-about-pillars {
        grid-template-columns: 1fr 1fr;
    }
    .sn-centers {
        padding: 56px 0;
    }
    .sn-centers-inner {
        padding: 0 20px;
    }
    .sn-centers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .sn-courses {
        padding: 56px 0;
    }
    .sn-courses-inner {
        padding: 0 16px;
    }
    .sn-course-card {
        width: calc(50% - 10px);
    }
    .sn-courses-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .sn-stats {
        padding: 48px 0;
    }
    .sn-stats-inner {
        padding: 0 20px;
    }
    .sn-stat-item {
        padding: 24px 16px;
    }
    .sn-stat-num {
        font-size: 2rem;
    }
    .sn-why {
        padding: 56px 0;
    }
    .sn-why-inner {
        padding: 0 20px;
    }
    .sn-why-grid {
        grid-template-columns: 1fr;
    }
    .sn-section-head {
        margin-bottom: 36px;
    }
    .sn-testimonials {
        padding: 56px 0;
    }
    .sn-testi-inner {
        padding: 0 20px;
    }
    .sn-testi-controls {
        flex-direction: column;
        align-items: center;
    }
    .sn-certify {
        padding: 56px 0;
    }
    .sn-cert-card {
        width: 100%;
        max-width: 320px;
    }
    .sn-cta-banner {
        padding: 56px 0;
    }
    .sn-cta-banner-inner {
        padding: 0 20px;
    }
    .sn-cta-btns {
        flex-direction: column;
    }
    .sn-cta-btn-white,
    .sn-cta-btn-ghost {
        justify-content: center;
    }
    .sn-faq {
        padding: 56px 0;
    }
    .sn-faq-wrap {
        padding: 0 20px;
    }
    .sn-faq-body {
        padding: 0 18px 18px 18px;
    }
    .sn-slide {
        height: auto;
        padding: 40px 0;
    }
    .slide-inner {
        flex-direction: column;
        padding: 0 24px;
        text-align: center;
        gap: 24px;
    }
    .slide-visual {
        width: 100%;
        order: -1;
    }
    .slide-icon-wrap {
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }
    .slide-icon-main {
        width: 52px;
        height: 52px;
    }
    .slide-desc {
        max-width: 100%;
    }
    .slide-stats {
        justify-content: center;
    }
    .sn-slider-prev,
    .sn-slider-next {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 480px) {
    .sn-cart-panel {
        width: 100%;
    }
    .sn-about-pillars {
        grid-template-columns: 1fr;
    }
    .sn-course-card {
        width: 100%;
    }
    .sn-about-badge {
        bottom: -12px;
        right: -8px;
        padding: 12px 16px;
    }
    .sn-about-badge-num {
        font-size: 1.4rem;
    }
    .sn-centers-grid {
        grid-template-columns: 1fr;
    }
    .sn-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sn-stat-item::after {
        display: none;
    }
    .slide-inner {
        padding: 0 16px;
    }
    .slide-title {
        font-size: 1.4rem;
    }
    .sn-faq-q {
        padding: 16px 18px;
    }
    .sn-faq-q-num {
        width: 28px;
        height: 28px;
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */
.sn-footer {
    background: var(--purple-d);
    color: rgba(255, 255, 255, 0.82);
    font-family: "Hind", sans-serif;
}
.sn-footer-main {
    padding: 56px 40px 32px;
    max-width: 1280px;
    margin: 0 auto;
}
.sn-footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 14px;
    opacity: 0.88;
}
.sn-footer-about {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 270px;
}
.sn-socials {
    display: flex;
    gap: 8px;
}
.sn-socials a {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.2s;
}
.sn-socials a .sn-ico {
    font-size: 0.85rem;
}
.sn-socials a:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    transform: translateY(-2px);
}
.sn-footer-col-title {
    color: var(--gold);
    font-size: 0.59rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-family: "Poppins", sans-serif;
}
.sn-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sn-footer-links li {
    margin-bottom: 9px;
}
.sn-footer-links a {
    color: rgba(255, 255, 255, 0.56);
    text-decoration: none;
    font-size: 0.83rem;
    transition:
        color 0.18s,
        padding-left 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sn-footer-links a .sn-ico {
    font-size: 0.7rem;
    color: var(--pink);
}
.sn-footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.sn-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
}
.sn-footer-contact .sn-ico {
    color: var(--pink);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.sn-footer-contact span {
    font-size: 0.81rem;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.5;
}
.sn-footer-contact a {
    color: rgba(255, 255, 255, 0.56);
    text-decoration: none;
}
.sn-footer-contact a:hover {
    color: var(--gold);
}
.sn-newsletter {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
}
.sn-newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    padding: 10px 13px;
    color: #fff;
    font-size: 0.8rem;
    font-family: "Hind", sans-serif;
    outline: none;
    min-width: 0;
}
.sn-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.sn-newsletter button {
    background: var(--purple);
    border: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.sn-newsletter button:hover {
    background: var(--purple-d);
}
.sn-newsletter-note {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.27);
    margin-top: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sn-trust-badge {
    font-size: 0.64rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 4px 10px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.46);
}
.sn-trust-badge .sn-ico {
    color: var(--gold);
    font-size: 0.78rem;
}
.sn-footer-bottom {
    padding: 14px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1280px;
    margin: 0 auto;
}
.sn-footer-copy {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sn-footer-copy .sn-ico {
    color: var(--pink);
    font-size: 0.7rem;
}
.sn-footer-policy {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sn-footer-policy a {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.18s;
}
.sn-footer-policy a:hover {
    color: var(--gold);
}
@media (max-width: 991px) {
    .sn-footer-main {
        padding: 36px 24px 22px;
    }
    .sn-footer-bottom {
        padding: 13px 24px;
    }
}
@media (max-width: 767px) {
    .sn-footer-main {
        padding: 34px 20px 22px;
    }
    .sn-footer-bottom {
        padding: 13px 20px;
        flex-direction: column;
        text-align: center;
    }
    .sn-footer-policy {
        justify-content: center;
    }
}

/* ==========================================================================
   21. TRENDING COURSES
   ========================================================================== */
.sn-trending {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
}
.sn-trending-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}
.sn-trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--pink-lt);
    color: var(--pink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
}
.sn-trending-badge .sn-ico {
    font-size: 0.85rem;
}
.sn-trending-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.sn-trending-title span {
    color: var(--pink);
}
.sn-trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.sn-trending-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.22s;
    position: relative;
}
.sn-trending-card:hover {
    border-color: var(--pink);
    box-shadow: 0 12px 36px rgba(233, 30, 140, 0.13);
    transform: translateY(-5px);
}
.sn-trending-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--purple-d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.sn-trending-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sn-trending-thumb .sn-ico {
    width: 56px;
    height: 56px;
}
.sn-trending-thumb .sn-ico svg {
    width: 100%;
    height: 100%;
}
.sn-trending-thumb-1 {
    background: linear-gradient(135deg, #ede5f7, #fce4f3);
}
.sn-trending-thumb-1 .sn-ico {
    color: var(--purple);
}
.sn-trending-thumb-2 {
    background: linear-gradient(135deg, #fff3e0, #fce4f3);
}
.sn-trending-thumb-2 .sn-ico {
    color: #e09010;
}
.sn-trending-thumb-3 {
    background: linear-gradient(135deg, #e8f4fd, #ede5f7);
}
.sn-trending-thumb-3 .sn-ico {
    color: #1976d2;
}
.sn-trending-fire {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--pink);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.sn-trending-fire .sn-ico {
    font-size: 0.78rem;
}
.sn-trending-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sn-trending-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pink);
    font-family: "Poppins", sans-serif;
    margin-bottom: 7px;
}
.sn-trending-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.35;
    font-family: "Poppins", sans-serif;
}
.sn-trending-progress-wrap {
    margin-bottom: 14px;
}
.sn-trending-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 5px;
}
.sn-trending-progress-label b {
    color: var(--pink);
}
.sn-trending-progress-bar {
    height: 6px;
    border-radius: 4px;
    background: var(--purple-lt);
    overflow: hidden;
}
.sn-trending-progress-fill {
    height: 100%;
    background: var(--pink);
    border-radius: 4px;
}
.sn-trending-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    color: var(--muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.sn-trending-meta .sn-ico {
    color: var(--purple);
    font-size: 0.8rem;
}
.sn-trending-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.sn-trending-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pink);
    font-family: "Poppins", sans-serif;
}
.sn-trending-price-old {
    font-size: 0.76rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 5px;
    font-weight: 400;
}
@media (max-width: 991px) {
    .sn-trending-inner {
        padding: 0 24px;
    }
    .sn-trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .sn-trending {
        padding: 56px 0;
    }
    .sn-trending-inner {
        padding: 0 20px;
    }
    .sn-trending-grid {
        grid-template-columns: 1fr;
    }
    .sn-trending-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   22. INSTRUCTORS
   ========================================================================== */
.sn-instructors {
    padding: 80px 0;
    background: var(--off-white);
}
.sn-instructors-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-instr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.sn-instr-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #fff;
    transition:
        box-shadow 0.22s,
        transform 0.22s;
    text-align: center;
}
.sn-instr-card:hover {
    box-shadow: 0 10px 36px rgba(91, 45, 142, 0.13);
    transform: translateY(-5px);
}
.sn-instr-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--purple-bg);
    position: relative;
    overflow: hidden;
}
.sn-instr-img svg {
    width: 100%;
    height: 100%;
}
.sn-instr-overlay {
    position: absolute;
    inset: 0;
    background: rgba(91, 45, 142, 0.7);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sn-instr-card:hover .sn-instr-overlay {
    opacity: 1;
}
.sn-instr-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.18s;
}
.sn-instr-social .sn-ico {
    font-size: 0.9rem;
}
.sn-instr-social:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}
.sn-instr-body {
    padding: 20px 16px 24px;
}
.sn-instr-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 4px;
}
.sn-instr-role {
    font-size: 0.78rem;
    color: var(--purple);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}
.sn-instr-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sn-instr-meta-item {
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.sn-instr-meta-item .sn-ico {
    color: var(--pink);
    font-size: 0.78rem;
}
@media (max-width: 991px) {
    .sn-instructors-inner {
        padding: 0 24px;
    }
    .sn-instr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .sn-instructors {
        padding: 56px 0;
    }
    .sn-instructors-inner {
        padding: 0 20px;
    }
    .sn-instr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .sn-instr-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   23. MOBILE BOTTOM NAVIGATION
   ========================================================================== */
.sn-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(91, 45, 142, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.sn-bottom-nav-inner {
    display: flex;
    align-items: stretch;
    height: 60px;
}
.sn-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    transition: color 0.18s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Hind", sans-serif;
}
.sn-bn-item .sn-ico {
    font-size: 1.3rem;
    transition: transform 0.18s;
}
.sn-bn-item span {
    font-size: 0.62rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.sn-bn-item.active {
    color: var(--purple);
}
.sn-bn-item.active .sn-ico {
    transform: translateY(-2px);
}
.sn-bn-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--purple);
    border-radius: 0 0 4px 4px;
}
.sn-bn-cart-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    background: var(--pink);
    color: #fff;
    font-size: 0.52rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    font-family: "Poppins", sans-serif;
}
.sn-bn-fab-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sn-bn-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(91, 45, 142, 0.4);
    position: absolute;
    top: -22px;
    border: 4px solid #fff;
    cursor: pointer;
    transition:
        transform 0.18s,
        background 0.18s;
}
.sn-bn-fab .sn-ico {
    font-size: 1.4rem;
}
.sn-bn-fab:active {
    transform: scale(0.93);
}

@media (max-width: 991px) {
    .sn-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 68px;
    }
    .sn-footer {
        padding-bottom: 8px;
    }
}

/* ==========================================================================
   24. MOBILE APP TOPBAR
   ========================================================================== */
.sn-app-topbar {
    display: none;
}
@media (max-width: 767px) {
    .sn-app-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 54px;
        padding: 0 14px;
        background: var(--purple);
        position: sticky;
        top: 0;
        z-index: 1001;
    }
    .sn-app-topbar-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .sn-app-topbar-logo {
        height: 30px;
        width: auto;
        opacity: 0.95;
    }
    .sn-app-topbar-title {
        color: #fff;
        font-size: 0.92rem;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
    }
    .sn-app-topbar-actions {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .sn-app-topbar-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }
    .sn-app-topbar-btn .sn-ico {
        font-size: 1.05rem;
    }
    .sn-app-topbar-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: var(--gold);
        color: var(--dark);
        font-size: 0.52rem;
        font-weight: 800;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid var(--purple);
        font-family: "Poppins", sans-serif;
    }
    .sn-topbar,
    .sn-topbar + .sn-header {
        display: none;
    }
    .sn-header {
        display: none;
    }
    .sn-announce {
        display: none;
    }
}

/* ==========================================================================
   25. INSTALL APP BANNER
   ========================================================================== */
.sn-install-banner {
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 80px;
    z-index: 1600;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(91, 45, 142, 0.22);
    padding: 14px 16px;
    align-items: center;
    gap: 12px;
}
.sn-install-banner.show {
    display: flex;
}
.sn-install-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--purple-lt);
}
.sn-install-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sn-install-text {
    flex: 1;
    min-width: 0;
}
.sn-install-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
}
.sn-install-desc {
    font-size: 0.72rem;
    color: var(--muted);
}
.sn-install-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}
.sn-install-btn {
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    white-space: nowrap;
}
.sn-install-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.68rem;
    cursor: pointer;
    text-align: center;
}

/* ==========================================================================
   26. CATEGORY ICON GRID (page: categories.blade.php)
   ========================================================================== */
.sn-cats {
    padding: 80px 0;
    background: #fff;
}
.sn-cats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================================================
   27. OPEN CENTER CTA
   ========================================================================== */
.sn-open-center {
    padding: 86px 0;
    background: var(--purple-d);
    position: relative;
    overflow: hidden;
}
.sn-open-center::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}
.sn-open-center::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 6%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.1);
    pointer-events: none;
}
.sn-oc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.sn-oc-text .sn-eyebrow3 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.sn-oc-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
}
.sn-oc-title span {
    color: var(--gold);
}
.sn-oc-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.78;
    margin-bottom: 30px;
}
.sn-oc-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.sn-oc-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--purple);
    border: none;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.sn-oc-btn-main .sn-ico {
    font-size: 1rem;
}
.sn-oc-btn-main:hover {
    background: var(--gold);
    color: var(--dark);
}
.sn-oc-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.sn-oc-btn-wa .sn-ico {
    font-size: 1.1rem;
}
.sn-oc-btn-wa:hover {
    background: #1da851;
    color: #fff;
}
.sn-oc-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sn-oc-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.sn-oc-trust-chip .sn-ico {
    color: var(--gold);
    font-size: 0.82rem;
}
.sn-oc-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sn-oc-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 22px;
    transition:
        background 0.2s,
        border-color 0.2s;
}
.sn-oc-benefit:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}
.sn-oc-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-oc-benefit-icon .sn-ico {
    font-size: 1.2rem;
    color: #fff;
}
.sn-oc-benefit-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin-bottom: 3px;
}
.sn-oc-benefit-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .sn-cats-inner {
        padding: 0 24px;
    }
    .sn-oc-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
}
@media (max-width: 767px) {
    .sn-cats {
        padding: 56px 0;
    }
    .sn-cats-inner {
        padding: 0 20px;
    }
    .sn-open-center {
        padding: 56px 0;
    }
    .sn-oc-inner {
        padding: 0 20px;
    }
    .sn-oc-btns {
        flex-direction: column;
    }
    .sn-oc-btn-main,
    .sn-oc-btn-wa {
        justify-content: center;
    }
}

/* ==========================================================================
   28. COURSES SLIDE-OVER PANEL (BROWSE ALL)
   ========================================================================== */
.sn-courses-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 18, 41, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2099;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s,
        visibility 0.35s;
}
.sn-courses-overlay.open {
    opacity: 1;
    visibility: visible;
}
.sn-courses-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    height: 100%;
    background: var(--white);
    z-index: 2100;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.14);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.sn-courses-panel.open {
    transform: translateX(0);
}
.sn-cp-head {
    padding: 18px 20px 14px;
    background: var(--purple-d);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.sn-cp-head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sn-cp-head-left .sn-ico {
    color: var(--gold);
    font-size: 1.15rem;
}
.sn-cp-head h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: "Poppins", sans-serif;
}
.sn-cp-head p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 2px 0 0;
    font-family: "Hind", sans-serif;
}
.sn-cp-close {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.sn-cp-close .sn-ico {
    font-size: 0.9rem;
}
.sn-cp-close:hover {
    background: rgba(255, 255, 255, 0.28);
}
.sn-cp-search {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.sn-cp-search-wrap {
    position: relative;
}
.sn-cp-search-wrap .sn-ico {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.9rem;
    pointer-events: none;
}
.sn-cp-search-wrap input {
    width: 100%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 9px 12px 9px 34px;
    color: var(--dark);
    font-size: 0.83rem;
    font-family: "Hind", sans-serif;
    outline: none;
    transition: border 0.2s;
}
.sn-cp-search-wrap input:focus {
    border-color: var(--purple);
}
.sn-cp-cats {
    display: flex;
    gap: 7px;
    padding: 12px 16px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
}
.sn-cp-cats::-webkit-scrollbar {
    height: 0;
}
.sn-cp-cat {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    color: var(--body-col);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s;
    flex-shrink: 0;
}
.sn-cp-cat.active,
.sn-cp-cat:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.sn-cp-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.sn-cp-body::-webkit-scrollbar {
    width: 3px;
}
.sn-cp-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.sn-cp-section-label {
    padding: 12px 16px 5px;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.sn-cp-course-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 16px;
    text-decoration: none;
    transition: background 0.15s;
}
.sn-cp-course-item:hover {
    background: var(--purple-bg);
}
.sn-cp-course-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-cp-course-thumb .sn-ico {
    font-size: 1.1rem;
}
.sn-cp-course-thumb-1 {
    background: #ede5f7;
    color: var(--purple);
}
.sn-cp-course-thumb-2 {
    background: #fce4f3;
    color: var(--pink);
}
.sn-cp-course-thumb-3 {
    background: #fff3e0;
    color: #e09010;
}
.sn-cp-course-thumb-4 {
    background: #e8f4fd;
    color: #1976d2;
}
.sn-cp-course-thumb-5 {
    background: #e8f5e9;
    color: #388e3c;
}
.sn-cp-course-thumb-6 {
    background: #fde8f0;
    color: var(--pink);
}
.sn-cp-course-thumb-7 {
    background: #fff0f5;
    color: #c2185b;
}
.sn-cp-course-thumb-8 {
    background: #e0f7fa;
    color: #00838f;
}
.sn-cp-course-info {
    flex: 1;
    min-width: 0;
}
.sn-cp-course-name {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 3px;
    line-height: 1.3;
}
.sn-cp-course-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--muted);
}
.sn-cp-course-meta .sn-ico {
    color: var(--gold);
    font-size: 0.68rem;
}
.sn-cp-course-meta .sn-ico.clock {
    color: var(--muted);
}
.sn-cp-hot {
    background: var(--pink);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.sn-cp-new {
    background: #22a760;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    white-space: nowrap;
}
.sn-cp-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4px 16px;
}
.sn-cp-foot {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.sn-cp-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
}
.sn-cp-view-all:hover {
    background: var(--purple-d);
    color: #fff;
}
.sn-cp-view-all .sn-ico {
    font-size: 0.95rem;
}
@media (max-width: 480px) {
    .sn-courses-panel {
        width: 100%;
    }
}

/* ==========================================================================
   29. LOGIN PAGE (page: auth/login.blade.php)
   ========================================================================== */
.sn-lp {
    min-height: calc(100vh - var(--header-h) - var(--topbar-h));
    background: var(--off-white);
    display: flex;
}
.sn-lp-shell {
    display: grid;
    grid-template-columns: 46% 54%;
    width: 100%;
    min-height: calc(100vh - var(--header-h) - var(--topbar-h));
}
.sn-lp-visual {
    position: relative;
    background: linear-gradient(155deg, var(--purple-d) 0%, var(--purple) 100%);
    overflow: hidden;
    display: flex;
}
.sn-lp-visual-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.sn-lp-blob-1 {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -140px;
    background: rgba(255, 255, 255, 0.05);
}
.sn-lp-blob-2 {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -100px;
    background: rgba(233, 30, 140, 0.14);
}
.sn-lp-visual-dots {
    position: absolute;
    top: 40%;
    right: 12%;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.18) 1.5px,
        transparent 1.5px
    );
    background-size: 12px 12px;
    pointer-events: none;
}
.sn-lp-visual-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 52px;
}
.sn-lp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.sn-lp-logo img {
    height: 42px;
    width: auto;
    filter: brightness(10) saturate(0);
}
.sn-lp-logo span {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}
.sn-lp-visual-content {
    margin: 30px 0;
}
.sn-lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
}
.sn-lp-visual-title {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
}
.sn-lp-visual-title span {
    color: var(--gold);
}
.sn-lp-visual-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 28px;
}
.sn-lp-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.sn-lp-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}
.sn-lp-stat-num span {
    color: var(--gold);
}
.sn-lp-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 3px;
}
.sn-lp-stat-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.16);
}
.sn-lp-quote-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 20px 22px;
    max-width: 420px;
    backdrop-filter: blur(6px);
}
.sn-lp-quote-stars {
    color: var(--gold);
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}
.sn-lp-quote-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0 0 14px;
}
.sn-lp-quote-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sn-lp-quote-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    flex-shrink: 0;
    font-size: 0.85rem;
}
.sn-lp-quote-name {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
.sn-lp-quote-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}
.sn-lp-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sn-lp-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 13px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.sn-lp-trust-chip .sn-ico {
    color: var(--gold);
}
.sn-lp-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background: var(--off-white);
}
.sn-lp-form-wrap {
    width: 100%;
    max-width: 440px;
}
.sn-lp-mobile-logo {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 24px;
}
.sn-lp-mobile-logo img {
    height: 38px;
    width: auto;
}
.sn-lp-mobile-logo span {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1rem;
}
.sn-lp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    padding: 40px 40px 32px;
}
.sn-lp-card-head h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 6px;
}
.sn-lp-card-head p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 26px;
    line-height: 1.6;
}
.sn-lp-role-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--purple-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 26px;
}
.sn-lp-role-tab {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-radius: 10px;
    transition: color 0.25s;
    white-space: nowrap;
}
.sn-lp-role-tab .sn-ico {
    font-size: 0.95rem;
}
.sn-lp-role-tab.active {
    color: var(--purple);
}
.sn-lp-role-tab-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(33.333% - 3.33px);
    height: calc(100% - 10px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(91, 45, 142, 0.16);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.sn-lp-field {
    margin-bottom: 18px;
}
.sn-lp-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 7px;
}
.sn-lp-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sn-lp-label-row label {
    margin-bottom: 7px;
}
.sn-lp-forgot {
    font-size: 0.76rem;
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
}
.sn-lp-forgot:hover {
    color: var(--pink);
}
.sn-lp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.sn-lp-input-ico {
    position: absolute;
    left: 14px;
    color: var(--muted);
    font-size: 1rem;
    pointer-events: none;
}
.sn-lp-input-wrap input {
    width: 100%;
    border: 1.5px solid var(--border);
    background: var(--off-white);
    border-radius: 12px;
    padding: 12px 14px 12px 42px;
    font-size: 0.88rem;
    font-family: "Hind", sans-serif;
    color: var(--dark);
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.sn-lp-input-wrap input::placeholder {
    color: #b3abc4;
}
.sn-lp-input-wrap input:focus {
    border-color: var(--purple);
    background: #fff;
}
.sn-lp-input-wrap input[type="password"] {
    padding-right: 42px;
}
.sn-lp-eye-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    transition: color 0.18s;
}
.sn-lp-eye-btn:hover {
    color: var(--purple);
}
.sn-lp-eye-btn .sn-ico {
    font-size: 1.05rem;
}
.sn-lp-error {
    display: block;
    color: #e5384d;
    font-size: 0.74rem;
    margin-top: 6px;
    font-weight: 500;
}
.sn-lp-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.sn-lp-checkbox {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--body-col);
    cursor: pointer;
    user-select: none;
}
.sn-lp-checkbox input {
    display: none;
}
.sn-lp-checkbox-box {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    border: 1.5px solid var(--border);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.18s;
    flex-shrink: 0;
}
.sn-lp-checkbox-box .sn-ico {
    font-size: 0.65rem;
}
.sn-lp-checkbox input:checked + .sn-lp-checkbox-box {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.sn-lp-submit-btn {
    width: 100%;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 18px rgba(91, 45, 142, 0.3);
    transition:
        background 0.2s,
        transform 0.15s;
}
.sn-lp-submit-btn:hover {
    background: var(--purple-d);
    transform: translateY(-1px);
}
.sn-lp-submit-btn .sn-ico {
    font-size: 1.05rem;
}
.sn-lp-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 22px 0;
    color: var(--muted);
    font-size: 0.74rem;
}
.sn-lp-divider::before,
.sn-lp-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}
.sn-lp-divider span {
    padding: 0 14px;
}
.sn-lp-google-btn {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--dark);
    padding: 12px;
    border-radius: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}
.sn-lp-google-btn:hover {
    border-color: var(--purple);
    background: var(--purple-bg);
}
.sn-lp-google-btn .sn-ico {
    font-size: 1.1rem;
}
.sn-lp-signup-note {
    text-align: center;
    font-size: 0.84rem;
    color: var(--muted);
    margin: 26px 0 0;
}
.sn-lp-signup-note a {
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
}
.sn-lp-signup-note a:hover {
    color: var(--pink);
}
.sn-lp-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    flex-wrap: wrap;
}
.sn-lp-help .sn-ico {
    color: var(--pink);
}
.sn-lp-help a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
}
.sn-lp-help a:hover {
    color: var(--pink);
}
@media (max-width: 1199px) {
    .sn-lp-shell {
        grid-template-columns: 42% 58%;
    }
    .sn-lp-visual-inner {
        padding: 36px 36px;
    }
    .sn-lp-form-panel {
        padding: 40px 24px;
    }
}
@media (max-width: 991px) {
    .sn-lp-shell {
        grid-template-columns: 1fr;
    }
    .sn-lp-visual {
        display: none;
    }
    .sn-lp-form-panel {
        padding: 44px 20px 60px;
    }
    .sn-lp-mobile-logo {
        display: flex;
    }
    .sn-lp {
        min-height: auto;
    }
}
@media (max-width: 480px) {
    .sn-lp-form-panel {
        padding: 30px 14px 48px;
    }
    .sn-lp-card {
        padding: 28px 20px 24px;
        border-radius: 18px;
    }
    .sn-lp-card-head h2 {
        font-size: 1.3rem;
    }
    .sn-lp-role-tab {
        font-size: 0.68rem;
        padding: 9px 4px;
        gap: 4px;
    }
    .sn-lp-role-tab .sn-ico {
        font-size: 0.85rem;
    }
    .sn-lp-help {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   30. CATEGORY CARDS REDESIGN (page: categories.blade.php)
   ========================================================================== */
.sn-catcard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.sn-catcard {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 22px 20px;
    text-decoration: none;
    transition: all 0.22s;
}
.sn-catcard:hover {
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(91, 45, 142, 0.14);
    transform: translateY(-4px);
}
.sn-catcard-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s;
}
.sn-catcard-icon .sn-ico {
    font-size: 1.5rem;
}
.sn-catcard-v1 .sn-catcard-icon {
    background: #ede5f7;
    color: var(--purple);
}
.sn-catcard-v2 .sn-catcard-icon {
    background: #fce4f3;
    color: var(--pink);
}
.sn-catcard-v3 .sn-catcard-icon {
    background: #e8f5e9;
    color: #2e7d32;
}
.sn-catcard-v4 .sn-catcard-icon {
    background: #fff8e1;
    color: #f57f17;
}
.sn-catcard-v5 .sn-catcard-icon {
    background: #e0f7fa;
    color: #00838f;
}
.sn-catcard-v6 .sn-catcard-icon {
    background: #e8eaf6;
    color: #283593;
}
.sn-catcard:hover .sn-catcard-icon {
    background: var(--purple);
    color: #fff;
}
.sn-catcard-body {
    flex: 1;
    min-width: 0;
}
.sn-catcard-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 4px;
    line-height: 1.3;
}
.sn-catcard-count {
    font-size: 0.76rem;
    color: var(--muted);
}
.sn-catcard-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.2s;
}
.sn-catcard-arrow .sn-ico {
    font-size: 0.85rem;
}
.sn-catcard:hover .sn-catcard-arrow {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.sn-catcard-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 40px 0;
    font-size: 0.9rem;
}
@media (max-width: 991px) {
    .sn-catcard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .sn-catcard {
        padding: 18px 16px;
    }
}
@media (max-width: 480px) {
    .sn-catcard-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   31. SHARED BREADCRUMB COMPONENT (used by: cart, checkout)
   --------------------------------------------------------------------------
   Single definition consumed by both the cart page and the checkout page,
   replacing the two near-identical rule sets that previously existed
   (.sn-cartpage-breadcrumb / .sn-checkout-breadcrumb).
   ========================================================================== */
.sn-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.sn-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.18s;
}
.sn-breadcrumb a:hover {
    color: var(--purple);
}
.sn-breadcrumb .sn-ico {
    font-size: 0.85rem;
}
.sn-breadcrumb span.current {
    color: var(--purple);
    font-weight: 600;
}

/* ==========================================================================
   32. CART PAGE (page: cart.blade.php)
   --------------------------------------------------------------------------
   Coupon entry now lives on the checkout page only (section 33) — the cart
   page keeps a lightweight hint pointing shoppers there instead of
   duplicating the input.
   ========================================================================== */
.sn-cartpage {
    padding: 44px 0 90px;
    background: var(--off-white);
    min-height: 60vh;
}
.sn-cartpage-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-cartpage-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.sn-cartpage-head h1 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sn-cartpage-head h1 .sn-ico {
    color: var(--pink);
    font-size: 1.5rem;
}
.sn-cartpage-head p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}
.sn-cartpage-clear {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: 1.5px solid var(--border);
    color: var(--body-col);
    padding: 9px 18px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.sn-cartpage-clear:hover {
    border-color: #e5384d;
    color: #e5384d;
    background: #fdeceec7;
}
.sn-cartpage-clear .sn-ico {
    font-size: 0.9rem;
}
.sn-cartpage-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: flex-start;
}
.sn-cartpage-items {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}
.sn-cartpage-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-bottom: 1px solid var(--border);
}
.sn-cartpage-item:last-child {
    border-bottom: none;
}
.sn-cartpage-item-thumb {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple);
}
.sn-cartpage-item-thumb .sn-ico {
    font-size: 2rem;
}
.sn-cartpage-item-thumb.v1 {
    background: #ede5f7;
}
.sn-cartpage-item-thumb.v2 {
    background: #fce4f3;
    color: var(--pink);
}
.sn-cartpage-item-thumb.v3 {
    background: #fff3e0;
    color: #e09010;
}
.sn-cartpage-item-thumb.v4 {
    background: #e8f4fd;
    color: #1976d2;
}
.sn-cartpage-item-info {
    flex: 1;
    min-width: 0;
}
.sn-cartpage-item-cat {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
}
.sn-cartpage-item-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
    line-height: 1.35;
}
.sn-cartpage-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.76rem;
    color: var(--muted);
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.sn-cartpage-item-meta .sn-ico {
    color: var(--gold);
    font-size: 0.78rem;
}
.sn-cartpage-item-meta .sn-ico.clock {
    color: var(--muted);
}
.sn-cartpage-instock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cod-green);
    font-size: 0.72rem;
    font-weight: 600;
}
.sn-cartpage-instock .sn-ico {
    font-size: 0.8rem;
}
.sn-cartpage-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}
.sn-cartpage-item-price {
    text-align: right;
}
.sn-cartpage-item-price .now {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple);
    font-family: "Poppins", sans-serif;
}
.sn-cartpage-item-price .old {
    font-size: 0.74rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 5px;
    font-weight: 400;
}
.sn-cartpage-item-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sn-cartpage-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
}
.sn-cartpage-qty button {
    width: 28px;
    height: 28px;
    background: var(--off-white);
    border: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.sn-cartpage-qty button:hover {
    background: var(--purple-lt);
    color: var(--purple);
}
.sn-cartpage-qty button .sn-ico {
    font-size: 0.72rem;
}
.sn-cartpage-qty span {
    width: 30px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
}
.sn-cartpage-remove {
    background: none;
    border: 1.5px solid var(--border);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s;
    flex-shrink: 0;
}
.sn-cartpage-remove:hover {
    background: #fdecec;
    border-color: #e5384d;
    color: #e5384d;
}
.sn-cartpage-remove .sn-ico {
    font-size: 0.85rem;
}
.sn-cartpage-continue {
    padding: 18px 22px;
    background: var(--off-white);
    border-top: 1px solid var(--border);
}
.sn-cartpage-continue a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--purple);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    transition: gap 0.18s;
}
.sn-cartpage-continue a:hover {
    gap: 10px;
    color: var(--pink);
}
.sn-cartpage-continue a .sn-ico {
    font-size: 0.9rem;
}
.sn-cartpage-empty {
    text-align: center;
    padding: 70px 24px;
}
.sn-cartpage-empty .sn-ico {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--purple-lt);
    color: var(--purple);
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.sn-cartpage-empty h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.sn-cartpage-empty p {
    font-size: 0.87rem;
    color: var(--muted);
    margin-bottom: 24px;
}
.sn-cartpage-summary {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
}
.sn-cartpage-summary h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
}
.sn-cartpage-coupon-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-bg);
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 10px 13px;
    font-size: 0.76rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 18px;
}
.sn-cartpage-coupon-hint .sn-ico {
    font-size: 0.9rem;
    flex-shrink: 0;
}
.sn-cartpage-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--body-col);
    margin-bottom: 12px;
}
.sn-cartpage-row .discount {
    color: var(--cod-green);
    font-weight: 600;
}
.sn-cartpage-row-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px dashed var(--border);
    padding-top: 16px;
    margin-top: 6px;
    margin-bottom: 20px;
}
.sn-cartpage-row-total span:first-child {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
}
.sn-cartpage-row-total span:last-child {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--purple);
    font-family: "Poppins", sans-serif;
}
.sn-cartpage-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(91, 45, 142, 0.3);
    transition:
        background 0.2s,
        transform 0.15s;
}
.sn-cartpage-checkout-btn:hover {
    background: var(--purple-d);
    color: #fff;
    transform: translateY(-1px);
}
.sn-cartpage-checkout-btn .sn-ico {
    font-size: 1.05rem;
}
.sn-cartpage-trust {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.sn-cartpage-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--muted);
}
.sn-cartpage-trust-item .sn-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--purple-lt);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.sn-cartpage-recommend {
    margin-top: 56px;
}
.sn-cartpage-recommend .sn-section-head {
    text-align: left;
    margin-bottom: 26px;
}
.sn-cartpage-recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sn-cartpage-recommend-grid .sn-course-card {
    width: 100%;
    flex-shrink: initial;
}
@media (max-width: 1199px) {
    .sn-cartpage-inner {
        padding: 0 24px;
    }
}
@media (max-width: 991px) {
    .sn-cartpage-layout {
        grid-template-columns: 1fr;
    }
    .sn-cartpage-summary {
        position: static;
    }
    .sn-cartpage-recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .sn-cartpage {
        padding: 28px 0 60px;
    }
    .sn-cartpage-inner {
        padding: 0 16px;
    }
    .sn-cartpage-item {
        flex-wrap: wrap;
        padding: 18px;
    }
    .sn-cartpage-item-thumb {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
    .sn-cartpage-item-thumb .sn-ico {
        font-size: 1.5rem;
    }
    .sn-cartpage-item-actions {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-left: 82px;
        padding-top: 4px;
    }
    .sn-cartpage-item-price {
        text-align: left;
    }
    .sn-cartpage-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .sn-cartpage-item-actions {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sn-cartpage-item-price {
        text-align: left;
    }
    .sn-cartpage-recommend-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   33. CHECKOUT PAGE (page: checkout.blade.php)
   ========================================================================== */
.sn-checkout {
    padding: 44px 0 90px;
    background: var(--off-white);
}
.sn-checkout-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.sn-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.sn-checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
}
.sn-checkout-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple-lt);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: "Poppins", sans-serif;
    border: 2px solid transparent;
    transition: all 0.2s;
    z-index: 2;
}
.sn-checkout-step-circle .sn-ico {
    font-size: 1rem;
}
.sn-checkout-step.done .sn-checkout-step-circle {
    background: var(--purple);
    color: #fff;
}
.sn-checkout-step.active .sn-checkout-step-circle {
    background: #fff;
    color: var(--purple);
    border-color: var(--purple);
    box-shadow: 0 0 0 4px var(--purple-lt);
}
.sn-checkout-step-label {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--muted);
    font-family: "Poppins", sans-serif;
}
.sn-checkout-step.active .sn-checkout-step-label,
.sn-checkout-step.done .sn-checkout-step-label {
    color: var(--dark);
}
.sn-checkout-step::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}
.sn-checkout-step:first-child::before {
    display: none;
}
.sn-checkout-step.done::before {
    background: var(--purple);
}
.sn-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: flex-start;
}
.sn-checkout-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 26px 26px 28px;
    margin-bottom: 22px;
}
.sn-checkout-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.sn-checkout-card-title-num {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--purple-lt);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: "Poppins", sans-serif;
    flex-shrink: 0;
}
.sn-checkout-card-title h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: "Poppins", sans-serif;
}
.sn-checkout-card-title p {
    font-size: 0.76rem;
    color: var(--muted);
    margin: 2px 0 0;
}
.sn-checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sn-checkout-field {
    margin-bottom: 0;
}
.sn-checkout-field.full {
    grid-column: 1 / -1;
}
.sn-checkout-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    margin-bottom: 7px;
}
.sn-checkout-field label .req {
    color: var(--pink);
}
.sn-checkout-input {
    width: 100%;
    border: 1.5px solid var(--border);
    background: var(--off-white);
    border-radius: 11px;
    padding: 11px 13px;
    font-size: 0.85rem;
    font-family: "Hind", sans-serif;
    color: var(--dark);
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.sn-checkout-input::placeholder {
    color: #b3abc4;
}
.sn-checkout-input:focus {
    border-color: var(--purple);
    background: #fff;
}
select.sn-checkout-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238a82a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}
.sn-checkout-error {
    display: block;
    color: #e5384d;
    font-size: 0.72rem;
    margin-top: 6px;
    font-weight: 500;
}
.sn-checkout-save-info {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--body-col);
    margin-top: 16px;
    cursor: pointer;
    user-select: none;
}
.sn-checkout-save-info input {
    display: none;
}
.sn-checkout-save-info-box {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    border: 1.5px solid var(--border);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.18s;
    flex-shrink: 0;
}
.sn-checkout-save-info-box .sn-ico {
    font-size: 0.65rem;
}
.sn-checkout-save-info input:checked + .sn-checkout-save-info-box {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}

/* ---- Coupon box (moved here from the cart page) ---- */
.sn-checkout-coupon-wrap {
    margin-bottom: 18px;
}
.sn-checkout-coupon {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--border);
}
.sn-checkout-coupon input {
    flex: 1;
    min-width: 0;
    border: none;
    background: var(--off-white);
    padding: 11px 13px;
    font-size: 0.82rem;
    font-family: "Hind", sans-serif;
    color: var(--dark);
    outline: none;
    transition: background 0.2s;
}
.sn-checkout-coupon input:focus {
    background: #fff;
}
.sn-checkout-coupon button {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 0 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.sn-checkout-coupon button:hover {
    background: var(--purple);
}
.sn-checkout-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eafaf1;
    border: 1px dashed var(--cod-green);
    border-radius: 10px;
    padding: 9px 13px;
    font-size: 0.78rem;
    color: #1a7a49;
    font-weight: 600;
}
.sn-checkout-coupon-applied .sn-ico {
    font-size: 0.85rem;
}
.sn-checkout-coupon-applied button {
    background: none;
    border: none;
    color: #1a7a49;
    cursor: pointer;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-decoration: underline;
}

.sn-checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    max-height: 260px;
    overflow-y: auto;
}
.sn-checkout-summary-items::-webkit-scrollbar {
    width: 3px;
}
.sn-checkout-summary-items::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.sn-checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 11px;
}
.sn-checkout-summary-item-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--purple-bg);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-checkout-summary-item-thumb .sn-ico {
    font-size: 1.1rem;
}
.sn-checkout-summary-item-info {
    flex: 1;
    min-width: 0;
}
.sn-checkout-summary-item-name {
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sn-checkout-summary-item-qty {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
}
.sn-checkout-summary-item-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--purple);
    font-family: "Poppins", sans-serif;
    flex-shrink: 0;
    white-space: nowrap;
}
.sn-checkout-place-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(91, 45, 142, 0.3);
    transition:
        background 0.2s,
        transform 0.15s;
}
.sn-checkout-place-btn:hover {
    background: var(--purple-d);
    color: #fff;
    transform: translateY(-1px);
}
.sn-checkout-place-btn .sn-ico {
    font-size: 1.05rem;
}
.sn-checkout-place-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.sn-checkout-terms {
    font-size: 0.71rem;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}
.sn-checkout-terms a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
}
.sn-checkout-terms a:hover {
    color: var(--pink);
}
@media (max-width: 1199px) {
    .sn-checkout-inner {
        padding: 0 24px;
    }
}
@media (max-width: 991px) {
    .sn-checkout-layout {
        grid-template-columns: 1fr;
    }
    .sn-cartpage-summary {
        position: static;
    }
}
@media (max-width: 767px) {
    .sn-checkout {
        padding: 28px 0 60px;
    }
    .sn-checkout-inner {
        padding: 0 16px;
    }
    .sn-checkout-card {
        padding: 20px 18px 22px;
    }
    .sn-checkout-form-grid {
        grid-template-columns: 1fr;
    }
    .sn-checkout-step-label {
        font-size: 0.66rem;
    }
}
@media (max-width: 480px) {
    .sn-checkout-steps {
        max-width: 100%;
    }
}

/* ==========================================================================
   34. CHECKOUT — PAYMENT GATEWAYS: RAZORPAY / PHONEPE / COD
   --------------------------------------------------------------------------
   Replaces the old raw card/UPI/netbanking/wallet form fields — collection
   of sensitive payment details is now handled entirely by the Razorpay and
   PhonePe hosted checkouts. Brand colors are pulled from the shared
   variables declared in section 01, so they only live in one place.
   ========================================================================== */
.sn-checkout-gateway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 6px;
}
.sn-checkout-gateway {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 16px 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.sn-checkout-gateway:hover {
    border-color: var(--purple);
}
.sn-checkout-gateway.active {
    border-color: var(--purple);
    background: var(--purple-bg);
    box-shadow: 0 0 0 3px var(--purple-lt);
}
.sn-checkout-gateway-badge {
    position: absolute;
    top: -9px;
    left: 14px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.56rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: "Poppins", sans-serif;
}
.sn-checkout-gateway-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sn-checkout-gateway-logo svg {
    width: 100%;
    height: 100%;
}
.sn-gw-razorpay {
    background: var(--rzp-navy);
}
.sn-gw-phonepe {
    background: var(--phonepe);
}
.sn-gw-cod {
    background: var(--purple-lt);
    color: var(--purple);
}
.sn-gw-cod .sn-ico {
    font-size: 1.4rem;
}
.sn-checkout-gateway-text {
    min-width: 0;
}
.sn-checkout-gateway-title {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}
.sn-checkout-gateway-sub {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 1px;
}
.sn-checkout-gateway-radio {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.sn-checkout-gateway.active .sn-checkout-gateway-radio {
    border-color: var(--purple);
}
.sn-checkout-gateway-radio::after {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--purple);
    transform: scale(0);
    transition: transform 0.18s;
}
.sn-checkout-gateway.active .sn-checkout-gateway-radio::after {
    transform: scale(1);
}

.sn-checkout-gateway-detail {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1.5px dashed var(--border);
}
.sn-checkout-gateway-detail[hidden] {
    display: none;
}
.sn-checkout-gateway-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--purple-bg);
    border: 1px dashed var(--purple-lt);
    border-radius: 12px;
    padding: 14px 16px;
}
.sn-checkout-gateway-note.pp {
    background: #f6effc;
    border-color: #e4d1f5;
}
.sn-checkout-gateway-note.cod {
    background: #fff8e8;
    border-color: var(--gold);
}
.sn-checkout-gateway-note .sn-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--purple);
}
.sn-checkout-gateway-note.pp .sn-ico {
    color: var(--phonepe);
}
.sn-checkout-gateway-note.cod .sn-ico {
    color: #b8860b;
}
.sn-checkout-gateway-note p {
    font-size: 0.8rem;
    color: var(--body-col);
    margin: 0;
    line-height: 1.6;
}
.sn-checkout-gateway-note p strong {
    color: var(--dark);
}
.sn-checkout-accepted-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.sn-checkout-accepted-icons span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--border);
    padding: 4px 10px 4px 6px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
}
.sn-checkout-accepted-icons svg {
    width: 18px;
    height: 12px;
}

@media (max-width: 991px) {
    .sn-checkout-gateway-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .sn-checkout-gateway-grid {
        grid-template-columns: 1fr;
    }
    .sn-checkout-gateway {
        padding: 14px;
    }
}
