:root {

    --theme-purple: #B57BE8;
    --theme-dark-purple: #9C5FE0;
    --theme-light-purple: #F6EEFF;
    --section-bg: #FAF8FC;
    --main-bg: #FFFFFF;
    --theme-border: #E9DDF7;
    --main-text: #1F1F1F;
    --sec-text: #666666;
    --mute-text: #999999;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* TYPOGRAPHY */

    --font-page-title: 32px;
    --font-section-title: 20px;
    --font-card-title: 14px;
    --font-body-size: 14px;
    --font-small: 13px;
    --font-button: 14px;
    --font-price: 20px;

    /* Header specific variables */

    --header-top-bg: var(--theme-purple);
    --header-top-text: var(--main-text);
    --header-main-bg: var(--main-bg);
    --header-nav-bg: var(--theme-purple);
    --header-nav-text: var(--main-bg);
    --header-badge-bg: var(--theme-purple);

    --transition-fast: 0.2s ease;
    --radius-lg: 16px;

    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}

body {
    font-family: var(--font-body);
    background-color: var(--main-bg);
    color: var(--main-text);
    margin: 0;
    padding: 0;
}

/* --- Header Styles --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Top Bar */
.header-top-bar {
    background-color: var(--header-top-bg);
    color: var(--header-top-text);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Bar */
.header-main-bar {
    background-color: var(--header-main-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo-area {

    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}


.site-logo {

    width: 64px;
    height: auto;
    object-fit: contain;
}

.header-logo {
    height: 60px;
    width: auto;
}

.site-title-area {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.site-subtitle {
    font-size: 0.8rem;
    color: var(--mute-text);
}

/* Search Area */
.search-area {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-form {
    display: flex;
    width: 100%;
    border: 1px solid var(--theme-border);
    border-radius: 20px;
    overflow: hidden;
}

.search-input {
    flex-grow: 1;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    outline: none;
    font-family: var(--font-body);
}

.search-button {
    background-color: var(--theme-purple);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: var(--theme-dark-purple);
}

/* Actions Area */
.actions-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--main-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.action-item:hover {
    color: var(--theme-dark-purple);
}

.action-item i {
    font-size: 1.2rem;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--header-badge-bg);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-alert{
    display:none;
    position:fixed;
    inset:0;
    z-index:999999999;
}

.theme-alert-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(3px);
}

.theme-alert-box{
    position:absolute;
    top:80px;
    left:50%;
    transform:translateX(-50%);

    width:500px;
    max-width:90%;

    background:#fff;
    border-radius:20px;
    padding:40px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}


.theme-alert-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.theme-alert-icon.success{
    color:#28a745;
    background:#eefbf1;
}

.theme-alert-icon.error{
    color:#dc3545;
    background:#fff0f1;
}

.theme-alert-icon.warning{
    color:#f59e0b;
    background:#fff8e7;
}

.theme-alert-icon.info{
    color:var(--theme-purple);
    background:#f6f0ff;
}

.theme-alert-box h3{
    font-size:32px;
    margin-bottom:12px;
    font-weight:700;
}

.theme-alert-box p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:30px;
}

.theme-alert-buttons{
    display:flex;
    justify-content:center;
    gap:12px;
}

.theme-alert-btn{
    min-width:140px;
    height:48px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.theme-alert-cancel{
    background:#fff;
    border:1px solid var(--theme-purple);
    color:var(--theme-purple);
}

.theme-alert-confirm{
    border:none;
    color:#fff;
    background:linear-gradient(
        90deg,
        #7c3aed,
        #9333ea
    );
}

#siteLoader{
    display:none;
    position:fixed;
    inset:0;
    z-index:9999999;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(3px);
}

.site-loader-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
}

.site-loader-content img{
    width:120px;
    height:auto;
}

.site-loader-content div{
    margin-top:15px;
    font-size:14px;
    color:#666;
}

/* Nav Bar */
.header-nav-bar {
    background-color: var(--header-nav-bg);
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 15px 20px;
    color: var(--header-nav-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.nav-item > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-chevron {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--main-bg);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    z-index: 1001;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: var(--main-text);
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-menu li a:hover {
    background-color: var(--section-bg);
    color: var(--theme-dark-purple);
}

/* Mega Menu */
.mega-menu {
    min-width: 550px;
    padding: 20px;
}

.mega-menu-content {
    display: flex;
    gap: 20px;
}

.mega-menu-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.categories-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    color: var(--main-text);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.categories-list li a .cat-icon {
    width: 20px;
    height: auto;
    object-fit: contain;
}

.categories-list li a:hover {
    background-color: var(--section-bg);
    color: var(--theme-dark-purple);
}

.view-all-link {
    color: var(--theme-dark-purple);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px;
    display: inline-block;
    transition: opacity 0.2s;
}

.view-all-link:hover {
    opacity: 0.8;
}

.mega-menu-featured {
    flex: 1;
    background-color: var(--theme-light-purple);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-featured .featured-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 15px auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mega-menu-featured h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: var(--main-text);
}

.mega-menu-featured p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--sec-text);
    line-height: 1.4;
}

/* Bands Grid List Specific */
.bands-grid-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.bands-grid-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
    color: var(--main-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.bands-grid-list li a .band-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bands-grid-list li a .more-icon {
    background-color: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text);
    font-weight: bold;
    border: 1px solid var(--theme-border);
}

.bands-grid-list li a:hover {
    background-color: var(--section-bg);
    color: var(--theme-dark-purple);
}

/* Bands Featured Specific */
.bands-featured {
    justify-content: flex-start;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.bands-featured .featured-text-area {
    position: relative;
    z-index: 2;
}

.bands-featured h4 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--main-text);
}

.bands-featured p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--sec-text);
}

.bands-featured .featured-band-img {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 90%;
    height: auto;
    max-width: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* =========================================
   HERO BANNER
========================================= */

.hero-banner-section {
    width: 100%;
    background-color: var(--main-bg);
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slides Wrapper */

.hero-slides {
    position: relative;
    width: 100%;
    height: 540px;
}

/* Individual Slide */

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Image */

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Navigation Buttons */

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.92);
    color: var(--main-text);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.hero-nav i {
    font-size: 14px;
}

.hero-nav:hover {
    background-color: white;
    color: var(--theme-purple);
}

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

/* Dots */

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    width: 26px;
    border-radius: 20px;
    background-color: white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .hero-slides {
        height: 420px;
    }

}

@media (max-width: 768px) {
    .hero-slides {
        height: 320px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

}

@media (max-width: 576px) {
    .hero-slides {
        height: 240px;
    }

}

/* =========================================
   LIVE SEARCH
========================================= */

.search-area {
    position: relative;
}

/* Dropdown */

/* =========================================
   LIVE SEARCH DROPDOWN
========================================= */

.live-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
    z-index: 9999;
    display: none;
    padding: 26px;
    max-height: 650px;
    overflow-y: auto;
}

/* GRID */

.live-search-grid {

    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    gap: 24px;
}
/* PRODUCT CARD */

.search-result-card {

    text-decoration: none;
    color: inherit;
    display: block;
}

/* IMAGE */

.search-card-image {

    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.search-card-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRODUCT NAME */

.search-product-name {

    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: #222;
    margin-bottom: 6px;
    min-height: 42px;
}

/* STOCK */

.search-out-stock {

    display: inline-block;
    background: #f1f1f1;
    color: #555;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Empty */

.search-empty {

    padding: 18px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

/* ON HAND */

.search-on-hand {

    display: inline-block;
    background: var(--theme-purple);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-weight: 500;
}

/* =========================================
   PRODUCTS PAGE
========================================= */

.products-page-layout {

    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.products-content {

    flex: 1;
    min-width: 0;
}


/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb-area {

    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 14px;
}

.breadcrumb-area a {

    color: #777;
    text-decoration: none;
}

.breadcrumb-area .active {

    color: #222;
    font-weight: 500;
}


/* =========================================
   SIDEBAR
========================================= */

.products-sidebar {

    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 24px;
    height: fit-content;
}

.filter-box {

    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f1f1;
}

.filter-title {

    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.filter-options {

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-option {

    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.filter-option input {

    accent-color: var(--theme-purple);
}


/* RESET */

.reset-filter-btn {

    width: 100%;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: #f5efff;
    color: var(--theme-purple);
    font-weight: 600;
    cursor: pointer;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.products-topbar {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.products-page-title {

    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.products-count {

    color: #777;
    font-size: 14px;
}


/* SORT */

.products-sort select {

    height: 46px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
}


/* =========================================
   PRODUCTS GRID
========================================= */

.products-grid {

    display: grid;
    grid-template-columns:
        repeat(4, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
}
/* LAPTOP */

@media(max-width: 1400px){

    .products-grid {
        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* TABLET */

@media(max-width: 1100px){

    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* MOBILE */

@media(max-width: 700px){

    .products-grid {
        grid-template-columns:
            repeat(1, 1fr);

    }

}


/* CARD */

.product-card {

    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.2s ease;
    width: 100%;
}


.product-card:hover {

    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


/* LABEL */

.product-label {

    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

/* ON HAND */

.product-label.on-hand {

    background: #daf5e5;
    color: #12824c;
}

/* PREORDER */

.product-label.pre-order {

    background: var(--theme-purple);
    color: white;
}

/* OUT OF STOCK */

.product-label.out-stock {

    background: #e9e9e9;
    color: #555;
}


/* IMAGE */

.product-image {

    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */

.product-content {

    padding: 18px;
}

.product-title {

    display: block;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
    min-height: 48px;
}

.product-price {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ACTIONS */

.product-actions {

    display: flex;
    gap: 10px;
}

.add-cart-btn {

    flex: 1;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--theme-purple);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.wishlist-btn {

    width: 46px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    cursor: pointer;
}

/* =========================================
   PAGINATION
========================================= */

.products-pagination-wrap {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}


/* PER PAGE */

.products-per-page {

    display: flex;
    align-items: center;
    gap: 12px;
}

.products-per-page select {

    height: 42px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 14px;
}


/* PAGINATION */

.products-pagination {

    display: flex;
    align-items: center;
    gap: 10px;
}

.products-pagination button {

    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    cursor: pointer;
}

.products-pagination button.active {

    background: var(--theme-purple);
    color: white;
    border-color: var(--theme-purple);
}

/* PRICE WRAP */

.product-price-wrap {

    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

/* OLD PRICE */

.product-old-price {

    color: #999;
    text-decoration: line-through;
    font-size: 15px;
}

/* CURRENT PRICE */

.product-price {

    font-size: 22px;
    font-weight: 700;
    color: #111;
}

/* PRODUCT CARD */

.product-card {

    display: flex;
    flex-direction: column;
    height: 100%;
}


/* PRODUCT CONTENT */

.product-content {

    display: flex;
    flex-direction: column;
    flex: 1;
}


/* PRODUCT TITLE */

.product-title {

    margin-bottom: 14px;
    line-height: 1.5;
}


/* PRICE */

.product-price-wrap,
.product-price {

    margin-bottom: 18px;
}


/* ACTIONS */

.product-actions {

    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================================
    SHOP BY SECTION
========================================= */

.shopby-section {

    padding: 70px 0;
}


/* GRID */

.shopby-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* BOX */

.shopby-box {

    background: #fff;

    border: 1px solid #eee;

    border-radius: 22px;

    padding: 28px;

    box-shadow:
        0 4px 18px rgba(0,0,0,0.04);
}


/* HEADER */

.shopby-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;
}


/* TITLE */

.shopby-header h2 {

    font-size: 24px;

    font-weight: 700;

    color: #111;

    margin: 0;
}


/* VIEW ALL */

.view-all-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    color: #9b6cf3;

    font-weight: 600;

    font-size: 15px;

    transition: 0.2s;
}

.view-all-btn:hover {

    opacity: 0.8;
}


/* =========================================
    CATEGORY GRID
========================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* CATEGORY CARD */

.category-card {

    background: #faf7ff;

    border-radius: 18px;

    padding: 20px 14px;

    text-decoration: none;

    transition: 0.25s;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 14px;

    text-align: center;

    border: 1px solid transparent;
}

.category-card:hover {

    transform: translateY(-4px);

    border-color: #d8c2ff;

    background: #fff;
}


/* CATEGORY IMAGE */

.category-image {

    width: 74px;

    height: 74px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.category-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* CATEGORY NAME */

.category-name {

    font-size: 15px;

    font-weight: 600;

    color: #222;

    line-height: 1.4;
}


/* =========================================
    BRAND GRID
========================================= */

.brand-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* BRAND CARD */

.brand-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    transition: 0.25s;
}

.brand-card:hover {

    transform: translateY(-4px);
}


/* BRAND IMAGE */

.brand-image {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    overflow: hidden;

    background: #f7f7f7;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #eee;
}

.brand-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* BRAND NAME */

.brand-name {

    font-size: 15px;

    font-weight: 600;

    color: #222;

    text-align: center;
}


/* =========================================
    RESPONSIVE
========================================= */

@media(max-width: 1200px){

    .shopby-grid {

        grid-template-columns: 1fr;
    }

}


@media(max-width: 768px){

    .category-grid,
    .brand-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* =========================================
    CATEGORY PAGE LAYOUT
========================================= */

.category-page-layout {

    display: flex;

    align-items: flex-start;

    gap: 34px;

    padding: 20px 0 70px;
}


/* =========================================
    SIDEBAR
========================================= */

.category-sidebar {

    width: 270px;

    flex-shrink: 0;
}


.category-sidebar-box {

    background: #fff;

    border: 1px solid #eee;

    border-radius: 22px;

    padding: 24px;
}


/* TITLE */

.category-sidebar-title {

    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}


/* LIST */

.category-sidebar-list {

    display: flex;
    flex-direction: column;
    gap: 6px;
}


/* ITEM */

.category-sidebar-item {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.2s;
    color: #222;
}


/* ACTIVE */

.category-sidebar-item.active {

    background: #f3ebff;
    color: #8b5cf6;
}


/* HOVER */

.category-sidebar-item:hover {

    background: #faf7ff;
}


/* LEFT */

.category-sidebar-left {

    display: flex;
    align-items: center;
    gap: 12px;
}


.category-sidebar-left img {

    width: 22px;
    height: 22px;
    object-fit: contain;
}


/* NAME */

.category-sidebar-left span {

    font-size: 15px;
    font-weight: 500;
}


/* COUNT */

.category-sidebar-count {

    font-size: 14px;
    color: #888;
}



/* =========================================
    RIGHT CONTENT
========================================= */

.category-products-content {

    flex: 1;
    min-width: 0;
}


/* TOPBAR */

.category-products-topbar {

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}


/* TITLE */

.category-page-title {

    font-size: 42px;

    font-weight: 700;

    color: #111;

    margin-bottom: 8px;
}


/* COUNT */

.category-page-count {

    font-size: 16px;

    color: #777;
}



/* =========================================
    PAGINATION
========================================= */

.pagination-dots {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: #999;
    font-weight: 600;
}



/* =========================================
    RESPONSIVE
========================================= */

@media(max-width: 1200px){

    .category-page-layout {

        flex-direction: column;
    }

    .category-sidebar {

        width: 100%;
    }

}


@media(max-width: 768px){

    .category-products-topbar {

        flex-direction: column;
        align-items: flex-start;
    }

}

/* PARENT */

.category-parent-title {

    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #111;
    opacity: 0.95;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 4px;
}


/* ICON */

.category-parent-title img {

    width: 22px;
    height: 22px;
    object-fit: contain;
}


/* =========================================
    SUBCATEGORY
========================================= */

.subcategory-item {

    position: relative;
    margin-left: 34px;
    padding-left: 22px !important;
    font-size: 14px;
    opacity: 0.85;
}


/* TREE LINE */

.subcategory-item::before {

    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1.5px;
    background: #b9a8db;
    transform: translateY(-50%);
}


/* SMALL DOT */

.subcategory-item::after {

    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9b6cf3;
    transform: translateY(-50%);
}


/* HOVER */

.subcategory-item:hover {

    background: #faf7ff;
}


/* ACTIVE */

.subcategory-item.active {

    background: #f3ebff;
    color: #8b5cf6;
}

/* =========================================
    HOME PRODUCT SECTION
========================================= */

.home-products-section {

    padding: 70px 0;
}


/* GRID */

.home-products-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* BOX */

.home-products-box {

    background: #fff;

    border: 1px solid #eee;

    border-radius: 22px;

    padding: 28px;

    overflow: hidden;
}


/* HEADER */

.home-products-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 26px;
}


/* TITLE */

.home-products-header h2 {

    font-size: 24px;

    font-weight: 700;

    color: #111;
    margin: 0;
}


/* =========================================
    SLIDER
========================================= */

.home-slider-wrap {

    position: relative;
}


/* PRODUCTS SLIDER */

.home-products-slider {

    display: flex;
    gap: 18px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* SINGLE SLIDE */

.home-product-slide {

    min-width: calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
    flex-shrink: 0;
}


/* =========================================
    ARROWS
========================================= */

.home-slider-arrow {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.12);

    cursor: pointer;
    z-index: 5;
    transition: 0.2s;
}


.home-slider-arrow:hover {

    background: #9b6cf3;
    color: #fff;
}


/* LEFT */

.home-slider-arrow.left {

    left: -18px;
}


/* RIGHT */

.home-slider-arrow.right {

    right: -18px;
}



/* =========================================
    RESPONSIVE
========================================= */

@media(max-width: 1200px){

    .home-products-grid {

        grid-template-columns: 1fr;
    }

}


@media(max-width: 768px){

    .home-product-slide {

        min-width: calc((100% - 18px) / 2);
    }

}


@media(max-width: 550px){

    .home-product-slide {

        min-width: 100%;
    }

}

/* =========================================
    HOME SLIDER PRODUCT CARD FIX
========================================= */

.home-product-slide .product-card {

    height: auto;
    min-height: unset;
    padding: 14px;
    display: flex;
    flex-direction: column;
}


/* IMAGE */

.home-product-slide .product-image {

    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 14px;
    background: #fafafa;
}

.home-product-slide .product-image img {

    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* CONTENT */

.home-product-slide .product-content {

    display: flex;
    flex-direction: column;
    flex: 1;
}


/* TITLE */

.home-product-slide .product-title {

    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* PRICE */

.home-product-slide .product-price {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}


/* ACTIONS */

.home-product-slide .product-actions {

    margin-top: auto;
}


/* BUTTON */

.home-product-slide .add-cart-btn {

    width: 100%;
    height: 42px;
    font-size: 13px;
}

/* FEATURED */

.featured-section{
    padding:20px 0;
}

.featured-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:24px;
    overflow:hidden;
}

.featured-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:20px;
    align-items:center;
}

.featured-left{
    display:flex;
    align-items:flex-start;
    height:100%;
}

.featured-title{
    font-size:22px;
    font-weight:700;
    line-height:1.3;
}

.featured-right{
    min-width:0;
}

.featured-slider-wrap{
    position:relative;
}

.featured-slider{
    display:flex;
    gap:20px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.featured-card{
    min-width:calc((100% - 40px)/3);
    max-width:calc((100% - 40px)/3);
    background:#fafafa;
    border-radius:14px;
    overflow:hidden;
    text-decoration:none;
    color:#111;
    flex-shrink:0;
    transition:.3s;
}

.featured-card:hover{
    transform:translateY(-4px);
}

.featured-img{
    height:170px;
    background:#fff;
    overflow:hidden;
}

.featured-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.featured-content{
    padding:12px;
}

.featured-name{
    font-size:15px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:6px;
    height:42px;
    overflow:hidden;
}

.featured-price{
    font-size:14px;
    color:#666;
}

.featured-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
    cursor:pointer;
    z-index:2;
}

.featured-arrow.left{
    left:-18px;
}

.featured-arrow.right{
    right:-18px;
}

.featured-arrow:hover{
    background:#9b6cf3;
    color:#fff;
}

/* =========================================
    ALL BRANDS
========================================= */

.bands-page{
padding:40px 0 60px;
}

.bands-header{
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:30px;
gap:30px;
}

.bands-header h1{
margin:0 0 8px;
font-size:40px;
font-weight:700;
}

.bands-count{
color:#777;
font-size:14px;
}

.bands-search-wrap{
position:relative;
width:320px;
}

.bands-search{
width:100%;
height:48px;
padding:0 16px;
border:1px solid #ddd;
border-radius:10px;
}

.brand-suggestions{
position:absolute;
top:55px;
left:0;
right:0;
background:#fff;
border:1px solid #eee;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
display:none;
z-index:100;
}

.brand-suggestion{
display:block;
padding:12px 16px;
text-decoration:none;
color:#222;
}

.brand-suggestion:hover{
background:#f5f0ff;
}

.bands-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
gap:24px;
width:100%;
}

.band-card{
background:#fff;
border:1px solid #eee;
border-radius:16px;
padding:20px;
text-align:center;
text-decoration:none;
color:#222;
transition:.2s;
}

.band-card:hover{
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.band-image{
width:90px;
height:90px;
margin:0 auto 15px;
border-radius:50%;
overflow:hidden;
background:#fafafa;
display:flex;
align-items:center;
justify-content:center;
border:1px solid #eee;
}

.band-image img{
width:100%;
height:100%;
object-fit:contain;
padding:8px;
}

.band-name{
font-size:15px;
font-weight:600;
line-height:1.4;
}

.brands-pagination{
display:flex;
justify-content:center;
gap:8px;
margin-top:40px;
flex-wrap:wrap;
}

.page-btn{
width:42px;
height:42px;
border:1px solid #ddd;
background:#fff;
border-radius:10px;
cursor:pointer;
}

.page-btn.active{
background:#9b6cf3;
border-color:#9b6cf3;
color:#fff;
}

/* LOGIN */

.login-page{
padding:50px 0 70px;
}

.login-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.login-info-card,
.login-form-card{
background:#fff;
border:1px solid #eee;
border-radius:20px;
padding:45px;
text-align:center;
}

.login-icon{
width:75px;
height:75px;
margin:0 auto 18px;
border-radius:50%;
background:#f4ebff;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#9b6cf3;
}

.login-info-card h2,
.login-form-card h2{
font-size:20px;
font-weight:700;
margin-bottom:8px;
letter-spacing:.5px;
}

.login-info-card p,
.login-form-card p{
font-size:14px;
line-height:1.6;
color:#666;
margin-bottom:20px;
}

.login-divider{
height:1px;
background:#eee;
margin:25px 0;
}

.login-benefits{
list-style:none;
padding:0;
margin:0 0 30px;
text-align:left;
font-size:14px;
}

.login-benefits li{
margin-bottom:12px;
padding-left:22px;
position:relative;
}

.login-benefits li:before{
content:"✓";
position:absolute;
left:0;
color:#9b6cf3;
font-weight:700;
}

.form-group{
margin-bottom:18px;
}

.form-group input{
width:100%;
height:48px;
padding:0 15px;
border:1px solid #ddd;
border-radius:10px;
font-size:14px;
}

.forgot-password{
text-align:right;
margin-bottom:20px;
}

.forgot-password a{
color:#9b6cf3;
text-decoration:none;
font-size:13px;
}

.auth-btn{
display:block;
width:100%;
height:48px;
line-height:48px;
border:none;
border-radius:10px;
background:#9b6cf3;
color:#fff;
font-size:14px;
font-weight:600;
text-decoration:none;
cursor:pointer;
}

/* =========================================
   GLOBAL TYPOGRAPHY OVERRIDES
========================================= */

/* PAGE TITLES */

.products-page-title,
.category-page-title,
.bands-header h1{
    font-size:var(--font-page-title) !important;
}

/* SECTION TITLES */

.shopby-header h2,
.home-products-header h2,
.featured-title,
.category-sidebar-title,
.login-info-card h2,
.login-form-card h2{
    font-size:var(--font-section-title) !important;
}

/* CARD TITLES */

.product-title,
.home-product-slide .product-title,
.category-name,
.brand-name,
.band-name,
.search-product-name{
    font-size:var(--font-card-title) !important;
}

/* BODY TEXT */

.products-count,
.category-page-count,
.bands-count,
.login-info-card p,
.login-form-card p,
.login-benefits,
.category-sidebar-left span{
    font-size:var(--font-body-size) !important;
}

/* SMALL TEXT */

.site-subtitle,
.forgot-password a,
.product-old-price{
    font-size:var(--font-small) !important;
}

/* BUTTONS */

.auth-btn,
.add-cart-btn,
.reset-filter-btn,
.view-all-btn{
    font-size:var(--font-button) !important;
}

/* PRICES */

.product-price{
    font-size:var(--font-price) !important;
}

/* REDUCE HOME PAGE SPACING */

.shopby-section{
    padding:50px 0 !important;
}

.home-products-section{
    padding:50px 0 !important;
}

/* REGISTER */

.register-page{
padding:40px 0 60px;
}

.register-card{
max-width:900px;
margin:auto;
padding:50px;
background:#fff;
border:1px solid #eee;
border-radius:20px;
}

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

.register-icon{
width:80px;
height:80px;
margin:auto auto 20px;
border-radius:50%;
background:#f4ebff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#9b6cf3;
}

.register-header h1{
font-size:20px;
font-weight:700;
text-transform:uppercase;
margin-bottom:8px;
}

.register-header p{
font-size:14px;
color:#666;
}

.register-form{
display:flex;
flex-direction:column;
gap:16px;
}

.form-row{
display:grid;
grid-template-columns:180px 1fr;
gap:20px;
align-items:center;
}

.form-row label{
font-size:14px;
font-weight:500;
}

.form-row label span{
color:#dc3545;
}

.form-row input,
.form-row select{
height:48px;
padding:0 14px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
width:100%;
}

.register-terms{
margin:25px 0;
text-align:center;
font-size:14px;
}

.register-terms a{
color:#9b6cf3;
font-weight:600;
text-decoration:none;
}

.register-login{
margin-top:20px;
text-align:center;
font-size:14px;
}

.register-login a{
color:#9b6cf3;
font-weight:600;
text-decoration:none;
}

.readonly-input{
background:#f8f8f8;
cursor:not-allowed;
}

.field-error{
    color:#dc3545;
    font-size:12px;
    margin-top:4px;
    min-height:18px;
}

.input-error{
    border:1px solid #dc3545 !important;
}

.verify-section{
    margin-bottom:28px;
}

.verify-title{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
    font-size:14px;
}

.verify-title i{
    color:var(--theme-purple);
    font-size:22px;
}

.verify-title a{
    margin-left:auto;
    color:var(--theme-purple);
    font-size:13px;
    text-decoration:none;
}


.verify-modal{
    position:fixed;
    inset:0;
    z-index:99999;
}

.verify-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(4px);
}

.verify-popup{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:900px;
    max-width:90%;
    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.verify-close{
    position:absolute;
    top:20px;
    right:20px;
    background:none;
    border:none;
    cursor:pointer;
    color:var(--theme-purple);
    font-size:22px;
}

.verify-header{
    display:flex;
    gap:30px;
    align-items: flex-start;
    margin-bottom:40px;
}

.verify-icon{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#f6f0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--theme-purple);
    font-size:30px;
    flex-shrink: 0;
}

.verify-header h2{
    font-size:var(--font-heading-md);
    margin-bottom:6px;
}

.verify-header p{
    font-size:var(--font-sm);
    color:#666;
}

.verify-section{
    margin-bottom:24px;
}

.verify-title{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:12px;
    font-size:var(--font-sm);
}

.verify-title i{
    color:var(--theme-purple);
    font-size:20px;
}

.verify-title a{
    margin-left:auto;
    font-size:var(--font-xs);
    color:var(--theme-purple);
    text-decoration:none;
}

.verify-subtitle{
    color:#666;
    font-size:var(--font-xs);
}

.otp-input{
    width:100%;
    height:48px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 16px;
    font-size:16px;
    text-align:center;
    letter-spacing:4px;
}

.otp-group{
    display:flex;
    gap:12px;
    margin-top:16px;
}

.otp-box{
    width:70px;
    height:70px;
    border:1px solid #ddd;
    border-radius:12px;
    text-align:center;
    font-size:28px;
    font-weight:600;
}

.otp-box:focus{
    border-color:var(--theme-purple);
    outline:none;
}
.verify-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:linear-gradient(
        90deg,
        #7c3aed,
        #9333ea
    );
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    margin-top:30px;
}

.verify-divider{
    border:none;
    border-top:1px solid #eee;
    margin:30px 0;
}