﻿:root {
    --bg-main: #f8fafc;
    --bg-panel: #ffffff;
    --bg-dark-footer: #0a0e17;
    --bg-hover: #f1f5f9;
    --accent-gold: #c59b27;
    --accent-gold-hover: #a17c1c;
    --border-subtle: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.08);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --drawer-width: 390px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.brand-font {
    font-family: 'Syne', sans-serif;
}
@media(max-width:991px)
{
	.brand-font {
  text-align:center;
}
}
/* ================= HEADER ================= */
.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.brand-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.0px;
    color: var(--text-dark);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

    .brand-logo-text span {
        color: var(--accent-gold);
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search-wrapper {
    flex: 1;
    max-width: 520px;
    margin: 0 1.5rem;
}

.header-search-box {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
    border-radius: 40px;
    padding: 0.25rem 0.5rem 0.25rem 1rem;
    transition: all 0.25s ease;
}

    .header-search-box:focus-within {
        background: #ffffff;
        border-color: var(--accent-gold);
        box-shadow: 0 0 12px rgba(197, 155, 39, 0.2);
    }

.search-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.header-search-input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 0.88rem;
    padding: 0.4rem 0.6rem;
    width: 100%;
    outline: none;
}

.search-submit-btn {
    border: none;
    background: #ffffff;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

    .search-submit-btn:hover {
        background: var(--accent-gold);
        color: #ffffff;
    }

.menu-trigger-btn {
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color: var(--text-dark);
    padding: 0.55rem 1.25rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}

    .menu-trigger-btn:hover {
        background: var(--text-dark);
        color: #ffffff;
        border-color: var(--text-dark);
    }

.mobile-search-toggle {
    display: none;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color: var(--text-dark);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-search-bar-expand {
    display: none;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
}

    .mobile-search-bar-expand.is-open {
        display: block;
    }

/* ================= RESPONSIVE IMAGE SLIDER (NATIVE <img> TAGS) ================= */
.hero-slider-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
}

.hero-slider-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================= FILTER BAR & PRODUCT LIST ================= */
.products-section {
    padding: 3rem 0 5rem 0;
}

.filter-scroll-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

    .filter-scroll-container::-webkit-scrollbar {
        display: none;
    }

.filter-pill {
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

    .filter-pill.active, .filter-pill:hover {
        background: var(--text-dark);
        color: #ffffff;
        border-color: var(--text-dark);
    }

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
        border-color: rgba(197, 155, 39, 0.5);
    }

.product-img-wrap {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    text-align: center;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 30px;
}

.product-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--border-subtle);
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.fitment-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.btn-view-detail {
    margin-top: auto;
    width: 100%;
    background: var(--text-dark);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-view-detail:active, .btn-view-detail:hover {
        background: var(--accent-gold);
        color: #ffffff;
    }

/* ================= PRODUCT DETAIL MODAL (PDP) ================= */
.pdp-modal .modal-content {
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.pdp-main-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
}

.pdp-badge {
    display: inline-block;
    background: rgba(197, 155, 39, 0.15);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.pdp-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.pdp-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.pdp-spec-table {
    width: 100%;
    font-size: 0.82rem;
    margin: 1rem 0;
}

    .pdp-spec-table td {
        padding: 6px 0;
        border-bottom: 1px solid var(--border-subtle);
    }

        .pdp-spec-table td:first-child {
            color: var(--text-muted);
            font-weight: 500;
        }

        .pdp-spec-table td:last-child {
            font-weight: 700;
            color: var(--text-dark);
            text-align: right;
        }

.btn-cart {
    background: var(--accent-gold);
    color: #ffffff;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: none;
    width: 100%;
    transition: background 0.2s ease;
}

    .btn-cart:hover {
        background: var(--accent-gold-hover);
    }

/* ================= FOOTER ================= */
.site-footer {
    background-color: var(--bg-dark-footer);
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--border-dark);
}

.footer-brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
}

    .footer-brand-title span {
        color: var(--accent-gold);
    }

.footer-heading {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.65rem;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.25s ease;
    }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

/* ================= DRILLDOWN PANEL ================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .menu-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

.nav-panel-wrapper {
    position: fixed;
    top: 0;
    right: calc(-1 * var(--drawer-width));
    width: var(--drawer-width);
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-panel);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .nav-panel-wrapper.is-open {
        right: 0;
    }

.panel-controls-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    height: 65px;
}

.btn-panel-back {
    border: none;
    background: transparent;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-panel-close {
    border: 1px solid var(--border-subtle);
    background: var(--bg-main);
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.breadcrumb-tracker {
    padding: 0.5rem 1.25rem;
    background: #f8fafc;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.panel-viewport {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.menu-level {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    background: var(--bg-panel);
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

    .menu-level.level-1 {
        left: 0;
    }

    .menu-level.is-active {
        left: 0 !important;
    }

.menu-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s ease, color 0.2s ease;
}

    .menu-item-link:hover {
        background: var(--bg-hover);
        color: var(--accent-gold);
    }

.brand-inline-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 4px;
    border: 1px solid var(--border-subtle);
}

.item-count-badge {
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.terminal-item-link {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
    position: relative;
}

    .terminal-item-link:hover {
        background: #fdfefb;
        color: var(--accent-gold);
        padding-left: 1.5rem;
    }

    .terminal-item-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent-gold);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .terminal-item-link:hover::before {
        opacity: 1;
    }

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 991px) {
    .hero-slider-img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .header-search-wrapper {
        display: none;
    }

    .mobile-search-toggle {
        display: flex;
    }

    .hero-slider-img {
        height: 280px;
    }

    .products-section {
        padding: 2rem 0 4rem 0;
    }
}

@media (max-width: 576px) {
    :root {
        --drawer-width: 100vw;
    }

    .hero-slider-img {
        height: 220px;
    }

    .brand-logo-text {
        font-size: 0.95rem;
    }

    .menu-trigger-btn span {
        display: none;
    }

    .menu-trigger-btn {
        padding: 0.45rem 0.75rem;
    }

    .product-img {
        height: 160px;
    }

    .pdp-main-img {
        height: 220px;
    }
	.mobile-search-toggle
	{
		width:32px;
		height:32px;
	}
	
}


/**==Product List==*/
.filter-sidebar {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.5rem;
    position: sticky;
    top: 90px;
  }
  .filter-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }
  .filter-checkbox-label {
    font-size: 0.88rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
  }
  .filter-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-hover);
    padding: 2px 8px;
    border-radius: 12px;
  }
  .sort-select {
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: #ffffff;
    outline: none;
  }
  .pagination-custom .page-link {
    border: 1px solid var(--border-subtle);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 8px;
    margin: 0 3px;
  }
  .pagination-custom .page-item.active .page-link {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
  }



/**==Page Detail==**/
.pdp-gallery-main {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .pdp-gallery-main img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
  }

  .pdp-thumb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .pdp-thumb-img.active, .pdp-thumb-img:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 155, 39, 0.2);
  }

  .fitment-verified-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
  }

  .qty-counter-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: 40px;
    background: #ffffff;
    width: fit-content;
  }
  .qty-btn {
    border: none;
    background: transparent;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
  }
  .qty-input {
    width: 45px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    outline: none;
  }

  .btn-add-cart-main {
    background: var(--text-dark);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
    border-radius: 40px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    transition: all 0.25s ease;
  }
  .btn-add-cart-main:hover {
    background: var(--accent-gold);
    color: #ffffff;
  }

  .specs-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.88rem;
  }
  .specs-table td:first-child { color: var(--text-muted); font-weight: 500; }
  .specs-table td:last-child { font-weight: 700; color: var(--text-dark); text-align: right; }

  @media (max-width: 768px) {
    .pdp-gallery-main img { max-height: 260px; }
  }