/* ===== AAKASH GANGA - CLASSIC THEME ===== */
:root {
    --akg-primary: #1a2b4a;
    --akg-secondary: #c8973a;
    --akg-light: #faf9f6;
    --akg-cream: #f5f0e8;
    --akg-white: #ffffff;
    --akg-dark: #2c2c2c;
    --akg-gray: #6c757d;
    --akg-border: #e0ddd5;
    --akg-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Override body gradient to cream background */
body {
    background: var(--akg-light) !important;
    background-image: none !important;
}

/* Fix old site.css cartcount float */
.cartcount {
    float: none !important;
}

/* ===== NAVBAR ===== */
.akg-navbar {
    background: var(--akg-white);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.09);
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 4px solid var(--akg-secondary);
    padding: 0;
}

.akg-navbar .navbar-inner {
    display: flex;
    align-items: stretch;
    min-height: 68px;
    padding: 0 24px;
}

.akg-navbar .nav-brand {
    display: flex;
    align-items: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.akg-navbar .nav-brand img.logo {
    height: 50px;
    display: block;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--akg-border);
    padding: 6px 11px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    color: var(--akg-dark);
    margin-left: auto;
    align-self: center;
}

.akg-nav-collapse {
    display: flex;
    align-items: stretch;
    flex: 1;
    justify-content: space-between;
}

/* Nav Links */
.akg-navbar .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    gap: 0;
}

.akg-navbar .nav-links li {
    display: flex;
    align-items: stretch;
}

.akg-navbar .nav-links li a {
    color: #444;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.2px;
    position: relative;
    top: 4px;
    /* visual offset for border-bottom */
}

.akg-navbar .nav-links li a:hover {
    color: var(--akg-primary);
    border-bottom-color: var(--akg-secondary);
}

.akg-navbar .nav-links li a.active {
    color: var(--akg-primary);
    font-weight: 700;
    border-bottom-color: var(--akg-secondary);
}

/* Nav Actions */
.akg-navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 16px;
    border-left: 1px solid var(--akg-border);
    margin: 12px 0;
}

.akg-navbar .btn-login {
    background: var(--akg-primary) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s !important;
    line-height: 1.4 !important;
}

.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.nav-mobile-toggle,
.akg-navbar .cart-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    color: var(--akg-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-mobile-toggle:hover,
.akg-navbar .cart-icon-btn:hover {
    background: #fff;
    border-color: var(--akg-secondary);
    color: var(--akg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.akg-navbar .btn-login:hover {
    background: var(--akg-secondary) !important;
    transform: translateY(-1px);
}

.akg-navbar .cart-icon-btn .cartcount {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--akg-secondary);
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(183, 140, 52, 0.4);
    z-index: 2;
    line-height: 1;
    /* Reset Bootstrap badge vars */
    --bs-badge-padding-x: 0;
    --bs-badge-padding-y: 0;
    float: none !important;
}

@media (max-width: 820px) {
    .nav-mobile-toggle {
        display: flex;
    }

    .akg-nav-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--akg-white);
        border-top: 1px solid var(--akg-border);
        border-bottom: 3px solid var(--akg-secondary);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
        gap: 0;
    }

    .akg-nav-collapse.open {
        display: flex;
    }

    .akg-navbar .navbar-inner {
        flex-wrap: nowrap;
        position: relative;
    }

    .akg-navbar .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .akg-navbar .nav-links li {
        display: block;
    }

    .akg-navbar .nav-links li a {
        padding: 12px 20px;
        border-bottom: none;
        border-left: 3px solid transparent;
        top: 0;
        display: block;
    }

    .akg-navbar .nav-links li a:hover,
    .akg-navbar .nav-links li a.active {
        border-left-color: var(--akg-secondary);
        border-bottom-color: transparent;
        background: var(--akg-cream);
    }

    .akg-navbar .nav-actions {
        border-left: none;
        border-top: 1px solid var(--akg-border);
        margin: 8px 0 0;
        padding: 12px 20px;
        gap: 10px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
    position: relative;
    background: #0b1628;
    overflow: hidden;
}

/* Slide base */
.hero-slide {
    min-height: 530px;
    display: flex !important;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Slide backgrounds */
.hero-slide-1 {
    background:
        radial-gradient(ellipse at 75% 50%, rgba(200, 151, 58, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(44, 74, 122, 0.5) 0%, transparent 45%),
        linear-gradient(135deg, #08111f 0%, #1a2b4a 60%, #1e3460 100%);
}

.hero-slide-2 {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(42, 122, 80, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 70%, rgba(14, 53, 42, 0.6) 0%, transparent 45%),
        linear-gradient(135deg, #0a1a14 0%, #0f2a20 55%, #163b2c 100%);
}

.hero-slide-3 {
    background: url('../img/kids.jpeg') center 30% / cover no-repeat;
}

.hero-slide-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 18, 35, 0.92) 40%, rgba(10, 18, 35, 0.55) 100%);
    z-index: 1;
}

/* Decorative diagonal overlay */
.hero-slide-1::after,
.hero-slide-2::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: rgba(255, 255, 255, 0.025);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* Decorative concentric rings */
.hero-deco-rings {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 1;
}

.hero-deco-rings span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(200, 151, 58, 0.18);
}

.hero-deco-rings span:nth-child(1) {
    width: 380px;
    height: 380px;
}

.hero-deco-rings span:nth-child(2) {
    width: 280px;
    height: 280px;
    border-color: rgba(200, 151, 58, 0.25);
}

.hero-deco-rings span:nth-child(3) {
    width: 180px;
    height: 180px;
    background: rgba(200, 151, 58, 0.07);
    border-color: rgba(200, 151, 58, 0.35);
}

/* Stat inside center ring */
.hero-ring-stat {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

.hero-ring-stat .rs-num {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--akg-secondary);
    line-height: 1;
}

.hero-ring-stat .rs-lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Floating badges near rings */
.hero-float-badges {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    z-index: 3;
    pointer-events: none;
}

.hero-fbadge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-fbadge-1 {
    top: 10%;
    right: -10px;
}

.hero-fbadge-2 {
    bottom: 15%;
    left: -10px;
}

/* Slide content */
.hero-inner {
    position: relative;
    z-index: 5;
    padding: 60px 0;
    width: 100%;
}

.hero-content {
    max-width: 580px;
    color: white;
}

/* Tag line */
.hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--akg-secondary);
}

.hero-tag-line {
    display: inline-block;
    width: 35px;
    height: 2px;
    background: var(--akg-secondary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Heading */
.hero-content h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: white !important;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.hero-content h1 em {
    font-style: normal;
    color: var(--akg-secondary);
}

/* Subtext */
.hero-content .hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* CTA buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--akg-secondary);
    color: white !important;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    border: 2px solid var(--akg-secondary);
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.hero-btn-primary:hover {
    background: #b8832e;
    border-color: #b8832e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(200, 151, 58, 0.4);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.25s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

/* Content entrance animation */
.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(28px);
    transition: none;
}

.hero-slide.slick-active .hero-content {
    animation: heroSlideUp 0.75s ease forwards;
    animation-delay: 0.15s;
}

@keyframes heroSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Custom Slick Arrows ---- */
.hero-slider-section .slick-prev,
.hero-slider-section .slick-next {
    z-index: 20;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    transition: all 0.2s !important;
}

.hero-slider-section .slick-prev:hover,
.hero-slider-section .slick-next:hover {
    background: var(--akg-secondary) !important;
    border-color: var(--akg-secondary) !important;
}

.hero-slider-section .slick-prev {
    left: 24px;
}

.hero-slider-section .slick-next {
    right: 24px;
}

.hero-slider-section .slick-prev:before,
.hero-slider-section .slick-next:before {
    font-size: 20px;
    color: white;
    opacity: 1;
}

/* ---- Custom Dots as bars ---- */
.hero-slider-section .slick-dots {
    bottom: 22px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    list-style: none;
}

.hero-slider-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.hero-slider-section .slick-dots li button {
    width: 28px;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-slider-section .slick-dots li button:before {
    display: none;
}

.hero-slider-section .slick-dots li.slick-active button {
    width: 50px;
    background: var(--akg-secondary);
}

/* ---- Slide counter ---- */
.hero-slide-counter {
    position: absolute;
    bottom: 26px;
    right: 30px;
    z-index: 20;
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    pointer-events: none;
}

.hero-slide-counter .hc-current {
    font-size: 22px;
    font-weight: 800;
    color: var(--akg-secondary);
    line-height: 1;
}

.hero-slide-counter .hc-sep {
    margin: 0 2px;
    font-size: 14px;
    opacity: 0.5;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 360px;
    }

    .hero-deco-rings,
    .hero-ring-stat,
    .hero-float-badges {
        display: none;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content .hero-sub {
        font-size: 14px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        padding: 11px 20px;
        font-size: 13px;
    }

    .hero-slider-section .slick-prev {
        left: 10px;
    }

    .hero-slider-section .slick-next {
        right: 10px;
    }

    .hero-slider-section .slick-prev,
    .hero-slider-section .slick-next {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: 300px;
    }

    .hero-inner {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 22px;
    }
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview-section {
    background: var(--akg-white);
    padding: 65px 0;
    border-bottom: 1px solid var(--akg-border);
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--akg-secondary);
    margin-bottom: 6px;
    display: block;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--akg-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--akg-secondary);
    margin: 0 0 22px 0;
    border-radius: 2px;
}

.about-preview-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

.about-preview-img img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-preview-img:hover img {
    transform: scale(1.03);
}

.about-preview-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    color: var(--akg-dark);
    font-weight: 500;
}

.about-feature-list li i {
    color: var(--akg-secondary);
    font-size: 15px;
    min-width: 18px;
}

.btn-classic {
    background: var(--akg-primary);
    color: white !important;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-classic:hover {
    background: var(--akg-secondary);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 43, 74, 0.25);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--akg-primary);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Exo 2', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--akg-secondary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 576px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* ===== FILTER SECTION ===== */
.filter-section {
    background: #111e30;
    padding: 35px 0 30px;
}

.filter-section .section-label {
    color: var(--akg-secondary);
}

.filter-section .section-title {
    color: #ffffff;
}

.filter-section .section-divider {
    background: var(--akg-secondary);
}

/* Override old white filter label colors */
.fltrlbl {
    color: var(--akg-dark) !important;
    font-weight: 600;
}

/* ── Filter Panel ── */
.fltr-panel {
    background: var(--akg-white);
    border-radius: 14px;
    border: 1px solid var(--akg-border);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

/* Header */
.fltr-panel-head {
    background: #0d1929;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.fltr-panel-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fltr-panel-title i {
    color: var(--akg-secondary);
}

.fltr-active-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.fltr-cur-class,
.fltr-cur-gender {
    background: var(--akg-secondary);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
}

.fltr-cur-gender {
    background: rgba(255, 255, 255, 0.2);
}

/* Body */
.fltr-panel-body {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Separator */
.fltr-sep {
    width: 1px;
    background: var(--akg-border);
    flex-shrink: 0;
    margin: 16px 0;
}

/* Blocks */
.fltr-block {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fltr-block-class {
    flex: 2;
    min-width: 260px;
    border-right: 1px solid var(--akg-border);
}

.fltr-block-toggle {
    flex: 1;
    min-width: 200px;
}

.fltr-block-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--akg-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fltr-block-label i {
    color: var(--akg-secondary);
    font-size: 12px;
}

/* Class big display */
.fltr-class-display {
    background: linear-gradient(135deg, var(--akg-primary), #2c4a7a);
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
}

.fltr-class-display span {
    font-family: 'Exo 2', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Custom range slider */
.fltr-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(to right, var(--akg-secondary) 0%, var(--akg-secondary) 0%, #dde1e8 0%);
    outline: none;
    cursor: pointer;
    margin: 0;
}

.fltr-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--akg-primary);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.15s;
}

.fltr-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.fltr-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--akg-primary);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Tick marks */
.fltr-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
}

.fltr-ticks span {
    font-size: 10px;
    font-weight: 600;
    color: var(--akg-gray);
    text-align: center;
    letter-spacing: 0.3px;
}

.fltr-ticks span:first-child {
    text-align: left;
}

.fltr-ticks span:last-child {
    text-align: right;
}

/* Toggle card */
.fltr-toggle-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--akg-cream);
    border: 1px solid var(--akg-border);
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.fltr-toggle-card:hover {
    border-color: var(--akg-secondary);
    box-shadow: 0 3px 12px rgba(200, 151, 58, 0.12);
}

.fltr-tc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--akg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.fltr-tc-icon i {
    color: white;
    font-size: 17px;
}

.fltr-tc-icon-opt {
    background: #2a5a3a;
}

.fltr-tc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fltr-tc-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--akg-primary) !important;
    display: block;
    white-space: nowrap;
}

.fltr-tc-hint {
    font-size: 11px;
    color: var(--akg-gray);
}

.fltr-tc-switch {
    flex-shrink: 0;
}

.fltr-tc-switch .form-check-input {
    width: 2.4em;
    height: 1.3em;
    cursor: pointer;
}

.fltr-tc-switch .form-check-input:checked {
    background-color: var(--akg-secondary) !important;
    border-color: var(--akg-secondary) !important;
}

.fltr-tc-switch .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(200, 151, 58, 0.25);
    border-color: var(--akg-secondary);
}

/* Mobile */
@media (max-width: 768px) {
    .fltr-sep {
        display: none;
    }

    .fltr-block-class {
        border-right: none;
        border-bottom: 1px solid var(--akg-border);
    }

    .fltr-panel-body {
        flex-direction: column;
    }

    .fltr-block {
        padding: 18px 18px;
    }

    .fltr-class-display span {
        font-size: 26px;
    }
}

/* ===== PRODUCT SECTION ===== */
.products-section {
    padding: 0 0 60px;
    background: #0d1929;
}

.products-section .row.prohol {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    padding: 0 4px;
}

/* ── Section header ── */
.prohol-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 4px 24px;
}

.prohol-hd-left {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prohol-hd-left i {
    color: var(--akg-secondary);
}

.prohol-hd-right {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prohol-count {
    background: var(--akg-secondary);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── Product Card ── */
.pcard-col {
    padding: 0 10px 0;
}

.pcard {
    background: #ffffff;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid rgba(200, 151, 58, 0.35);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s ease, border-color 0.3s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.pcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
    border-bottom-color: var(--akg-secondary);
}

/* Category colour strip at top */
.pcard-strip {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    border-radius: 0;
}

.pcs-boys {
    background: linear-gradient(90deg, #1a3a6e, #22508a);
    color: #a8cbff;
}

.pcs-girls {
    background: linear-gradient(90deg, #6e1a45, #8a2260);
    color: #ffc0dc;
}

.pcs-acc {
    background: linear-gradient(90deg, #4a3800, #654d00);
    color: #ffe57a;
}

/* Image wrap */
.pcard-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #eaeaea;
    flex-shrink: 0;
}

.pcard-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(.25, .8, .25, 1);
}

.pcard:hover .pcard-img-wrap img {
    transform: scale(1.1);
}

/* Image hover overlay */
.pcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 20, 50, 0.7) 0%, rgba(26, 43, 74, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pcard:hover .pcard-overlay {
    opacity: 1;
}

.pcard-overlay-btn {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 0;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
    transform: translateY(6px);
}

.pcard:hover .pcard-overlay-btn {
    background: var(--akg-secondary);
    border-color: var(--akg-secondary);
    transform: translateY(0);
}

/* Info */
.pcard-info {
    padding: 16px 16px 10px;
    flex: 1;
    background: #fff;
    border-left: 3px solid transparent;
    transition: border-color 0.25s;
}

.pcard:hover .pcard-info {
    border-left-color: var(--akg-secondary);
}

.pcard-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #1a2b4a;
    margin-bottom: 6px;
    line-height: 1.35;
}

.pcard-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.pcard-foot {
    padding: 0;
    margin-top: auto;
}

.pcard-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(90deg, var(--akg-primary) 0%, #243d6a 100%);
    color: #fff;
    border: none;
    border-radius: 0;
    border-top: 2px solid rgba(200, 151, 58, 0.25);
    font-size: 12px;
    font-weight: 700;
    padding: 13px 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: background 0.25s, letter-spacing 0.2s;
    cursor: pointer;
}

.pcard-cart-btn:hover {
    background: linear-gradient(90deg, var(--akg-secondary) 0%, #d4a040 100%);
    color: #fff;
    letter-spacing: 1.8px;
}

/* ── Load More ── */
.load-more-wrap {
    text-align: center;
    padding: 20px 0 60px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 14px 40px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.25s;
    min-width: 280px;
}

.load-more-btn:hover {
    background: var(--akg-secondary);
    border-color: var(--akg-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 151, 58, 0.35);
}

/* ── Empty state ── */
.prohol-empty {
    text-align: center;
    padding: 70px 20px;
    color: rgba(255, 255, 255, 0.55);
}

.prohol-empty-icon {
    font-size: 55px;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
}

.prohol-empty h5 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.prohol-empty p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .products-section .row.prohol {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.85rem;
    }

    .pcard-col {
        padding: 0 4px;
    }

    .pcard-img-wrap {
        height: 155px;
    }

    .pcard-title {
        font-size: 12px;
    }

    .pcard-info {
        padding: 12px 12px 8px;
    }

    .pcard-strip {
        padding: 6px 12px;
    }

    .pcard {
        border-radius: 0;
    }

    .pcard-cart-btn {
        border-radius: 0;
        padding: 11px 10px;
    }

    .load-more-btn {
        min-width: unset;
        width: 90%;
    }
}

/* ===== SCHOOL PARTNERS STRIP ===== */
.partners-section {
    background: #111e30;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 52px;
}

.partners-label {
    background: var(--akg-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
    z-index: 2;
}

.partners-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: partnersScroll 35s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 14px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
}

.partner-item:hover {
    color: var(--akg-secondary);
}

.partner-item i {
    color: var(--akg-secondary);
    font-size: 12px;
}

/* ===== HOW TO ORDER ===== */
.howto-section {
    background: var(--akg-primary);
    padding: 70px 0;
}

.howto-section .section-label {
    color: var(--akg-secondary);
}

.howto-section .section-title {
    color: #fff;
}

.howto-section .section-divider {
    margin: 0 auto 0;
    background: var(--akg-secondary);
}

.howto-row {
    position: relative;
}

.howto-step {
    padding: 44px 40px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.howto-step:last-child {
    border-right: none;
}

.howto-step-mid {
    background: rgba(255, 255, 255, 0.04);
}

.howto-num {
    font-family: 'Exo 2', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    letter-spacing: -2px;
    user-select: none;
}

.howto-icon {
    width: 72px;
    height: 72px;
    background: var(--akg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
}

.howto-icon i {
    color: #fff;
    font-size: 26px;
}

.howto-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.howto-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
}

.howto-arrow {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--akg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.howto-arrow i {
    color: #fff;
    font-size: 14px;
}

@media (max-width: 768px) {
    .howto-step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 36px 24px;
    }

    .howto-step:last-child {
        border-bottom: none;
    }

    .howto-arrow {
        display: none;
    }

    .howto-num {
        font-size: 52px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--akg-white);
    padding: 70px 0;
    border-top: 1px solid var(--akg-border);
}

.testimonials-section .section-label {
    color: var(--akg-secondary);
}

.testimonials-section .section-title {
    color: var(--akg-primary);
}

.testimonials-section .section-divider {
    margin: 0 auto 0;
}

.testi-card {
    background: var(--akg-light);
    border: 1px solid var(--akg-border);
    border-left: 4px solid var(--akg-border);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.testi-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    color: rgba(200, 151, 58, 0.12);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.testi-card:hover {
    border-left-color: var(--akg-secondary);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.testi-card-highlight {
    background: var(--akg-primary);
    border-color: var(--akg-primary);
    border-left-color: var(--akg-secondary);
}

.testi-card-highlight::before {
    color: rgba(200, 151, 58, 0.2);
}

.testi-card-highlight:hover {
    border-left-color: var(--akg-secondary);
    box-shadow: 0 16px 40px rgba(26, 43, 74, 0.45);
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: var(--akg-secondary);
    font-size: 14px;
}

.testi-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    flex: 1;
    margin: 0;
    font-style: italic;
}

.testi-card-highlight .testi-text {
    color: rgba(255, 255, 255, 0.78);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--akg-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Exo 2', sans-serif;
}

.testi-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--akg-primary);
}

.testi-card-highlight .testi-name {
    color: #fff;
}

.testi-role {
    font-size: 12px;
    color: var(--akg-gray);
}

.testi-card-highlight .testi-role {
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
    .testi-card {
        padding: 24px 20px;
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--akg-cream);
    padding: 60px 0;
    border-top: 1px solid var(--akg-border);
}

.section-header-center {
    text-align: center;
    margin-bottom: 35px;
}

.section-header-center .section-divider {
    margin: 0 auto 0;
}

.feature-card {
    background: var(--akg-white);
    border-radius: 12px;
    padding: 30px 22px;
    text-align: center;
    border: 1px solid var(--akg-border);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--akg-secondary);
}

.feature-icon {
    width: 62px;
    height: 62px;
    background: var(--akg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--akg-secondary);
}

.feature-icon i {
    color: white;
    font-size: 22px;
}

.feature-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--akg-primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--akg-gray);
    line-height: 1.65;
    margin: 0;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
    background: linear-gradient(135deg, #c8973a 0%, #a67a28 60%, #8b641d 100%);
    padding: 45px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-strip::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.contact-strip h3 {
    font-family: 'Exo 2', sans-serif;
    color: white !important;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-strip p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.contact-strip p i {
    margin-right: 6px;
    color: var(--akg-primary);
}

.contact-btn {
    background: white;
    color: var(--akg-primary) !important;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background: var(--akg-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--akg-primary);
    color: rgba(255, 255, 255, 0.65);
    padding: 20px 0;
    font-size: 13px;
    text-align: center;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 0;
}

.site-footer a {
    color: var(--akg-secondary);
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

/* ===== MODAL OVERRIDES ===== */
.modal-content {
    border: none !important;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2) !important;
}

.modal-header {
    background: var(--akg-primary) !important;
    color: white !important;
    border-radius: 14px 14px 0 0 !important;
    padding: 12px 18px !important;
    border-bottom: 0 !important;
}

.modal-title {
    color: white !important;
    font-family: 'Exo 2', sans-serif !important;
    font-weight: 700 !important;
}

.modal-header .btn-close {
    filter: invert(1) brightness(1.5);
}

/* ===== NOTIFICATION SLIDER ===== */
.notification-board {
    background: rgb(239, 184, 0);
    color: #1a1a00;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
    min-height: 36px;
    overflow: hidden;
}

.notif-label {
    background: rgba(0, 0, 0, 0.18);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: stretch;
}

.notif-slider-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.notif-slider {
    display: block;
    /* Slick will manage display */
}

.notif-slide {
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    outline: none;
}

/* Hide slick default dots/arrows on notification slider */
.notif-slider .slick-list {
    overflow: hidden;
}

.notif-slider .slick-track {
    display: flex;
    align-items: center;
}

/* ===== BUTTON OVERRIDES ===== */
.btn-primary,
.btn-success {
    background: var(--akg-primary) !important;
    border-color: var(--akg-primary) !important;
}

.btn-primary:hover {
    background: var(--akg-secondary) !important;
    border-color: var(--akg-secondary) !important;
}

/* ===== PRODUCT QUICK-VIEW MODAL ===== */
.akg-pro-modal {
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3) !important;
}

.custom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border: none;
}

.custom-modal-close:hover {
    transform: scale(1.1);
    background-color: #f8f9fa;
}

.custom-modal-close::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--akg-primary);
}

.akg-pro-img-col {
    background: #f1f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.akg-pro-main-img {
    width: 100%;
    height: 100%;
}

.akg-pro-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.akg-pro-details-col {
    background: #fff;
    padding: 45px 40px;
}

.akg-pro-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.akg-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.badge-boys {
    background: #e0e7ff;
    color: #4338ca;
}

.badge-girls {
    background: #fee2e2;
    color: #b91c1c;
}

.badge-unisex {
    background: #f3f4f6;
    color: #374151;
}

.akg-pro-id {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.akg-pro-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--akg-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.akg-pro-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.akg-pro-currency {
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
}

.akg-pro-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--akg-secondary);
}

.akg-pro-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
}

.akg-pro-selection {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.akg-select-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.akg-select-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748b;
}

.akg-select-premium {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--akg-primary);
    background: #f8fafc;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.akg-select-premium:focus {
    border-color: var(--akg-secondary);
    background: #fff;
}

.akg-btn-cart,
.akg-btn-view-cart {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.akg-btn-cart {
    background: var(--akg-primary);
    color: #fff;
}

.akg-btn-cart:hover {
    background: var(--akg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 151, 58, 0.25);
    color: #fff;
}

.akg-btn-view-cart {
    background: #10b981;
    color: #fff;
}

.akg-btn-view-cart:hover {
    background: #059669;
    transform: translateY(-2px);
    color: #fff;
}

.akg-pro-footer-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .akg-pro-details-col {
        padding: 30px 20px;
    }

    .akg-pro-title {
        font-size: 22px;
    }

    .akg-pro-img-col {
        min-height: 250px;
    }

    .akg-pro-main-img img {
        height: 300px;
    }

    .akg-pro-modal {
        margin: 10px;
    }
}

@media (max-width: 576px) {
    .akg-pro-details-inner {
        padding: 0;
    }

    .akg-pro-title {
        font-size: 20px;
    }

    .akg-pro-price {
        font-size: 24px;
    }

    .akg-pro-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .akg-select-premium {
        padding: 10px 12px;
    }

    .akg-btn-cart,
    .akg-btn-view-cart {
        padding: 14px;
        font-size: 12px;
    }
}