/* =============================================
   SWARNAA AGENCY – SEARCH PAGE STYLES
   ============================================= */

/* ===== VARIABLES ===== */
:root {
    --primary: #C8860A;
    --primary-light: #E0A020;
    --primary-dark: #9A6508;
    --primary-gradient: linear-gradient(135deg, #C8860A 0%, #E8A020 50%, #C8860A 100%);
    --gold-shimmer: linear-gradient(90deg, #B8760A, #E8C060, #C8860A, #E8C060, #B8760A);

    --dark: #1A1208;
    --dark-2: #2C1F0A;
    --text-primary: #1E1408;
    --text-secondary: #5A4A2A;
    --text-muted: #8A7A5A;

    --bg-page: #F8F7F4;
    --bg-card: #FFFFFF;
    --bg-sidebar: #FEFCF8;
    --bg-hero: #1A1208;

    --border: #EDE8DE;
    --border-focus: #C8860A;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(200, 134, 10, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --header-h: 72px;
    --transition: 0.2s ease;
    --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}




/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(26, 18, 8, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 134, 10, 0.2);
    z-index: 1000;
    transition: all var(--transition-slow);
}

.site-header.scrolled {
    height: 60px;
    background: rgba(26, 18, 8, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Header Search */
.header-search-wrap {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.header-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 134, 10, 0.3);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    transition: all var(--transition);
}

.header-search-box:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.15);
}

.search-icon-inline {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
}

.header-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-clear-btn {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    padding: 2px 4px;
    border-radius: 4px;
    display: none;
    transition: all var(--transition);
}

.search-clear-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.search-clear-btn.visible {
    display: block;
}

/* Suggestions */
.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: none;
    max-height: 350px;
    overflow-y: auto;
    z-index: 2000;
}

.suggestions-dropdown.open {
    display: block;
}

.suggestions-inner {
    padding: 6px 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    text-align: left;
    /* Fixed: Ensure text starts from the left */
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background var(--transition);
}

.suggestion-item:hover,
.suggestion-item.focused {
    background: #FFF8EB;
}

.sugg-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF3D0;
    border-radius: var(--radius-sm);
}

.sugg-content {
    flex: 1;
}

.sugg-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.sugg-name mark {
    background: none;
    color: var(--primary);
    font-weight: 700;
}

.sugg-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.sugg-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: #FFF3D0;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.suggestions-section-header {
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.suggestions-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-btn {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.enquire-btn {
    /* background: var(--primary); */
    color: #fff !important;
    font-weight: 600;
}

.enquire-btn:hover {
    /* background: var(--primary-light); */
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Cart Toggle Button */
.cart-toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    cursor: pointer;
}

.cart-toggle-btn:hover {
    background: rgba(200, 134, 10, 0.2);
    border-color: rgba(200, 134, 10, 0.5);
    transform: translateY(-1px);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #E11D48;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid rgba(26, 18, 8, 0.95);
    padding: 0 4px;
    z-index: 2;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 500px;
    background: linear-gradient(135deg, #1A1208 0%, #2C1F0A 40%, #1A1208 70%, #0D0804 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 40px) 20px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200, 134, 10, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(232, 160, 32, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(200, 134, 10, 0.05) 0%, transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 134, 10, 0.15);
    border: 1px solid rgba(200, 134, 10, 0.4);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.title-highlight {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Hero Search Box */
.hero-search-container {
    margin: 24px auto 27px;
    width: 80%;
    position: relative;
    /* Fixed: Added anchor for absolute suggestions */
}

.hero-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(200, 134, 10, 0.3);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
    height: 53px;
}

.hero-search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(200, 134, 10, 0.15);
}

.h-search-icon {
    color: var(--primary);
    margin-right: 4px;
}

.hero-search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    color: var(--text-primary);
    padding: 10px 12px 10px 0;
}

.hero-search-box input::placeholder {
    color: var(--text-muted);
}

.hero-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    height: 43px;
    border: none;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #E0A020, #C8860A);
    transform: scale(1.02);
}

/* Prevent SVG/span inside button from intercepting click events */
.hero-search-btn svg,
.hero-search-btn span {
    pointer-events: none;
}

.hero-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    z-index: 500;
    overflow: hidden;
}

.hero-suggestions.open {
    display: block;
}

/* Quick Tags */
.quick-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.qt-label {
    font-size: 18px;
    color: #000;
}

.quick-tag {
    background: #c8a951;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.quick-tag:hover {
    background: rgb(179 140 50);
    border-color: rgba(200, 134, 10, 0.5);
    color: white !important;
    transform: translateY(-1px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* =============================================
   CATEGORIES SECTION
   ============================================= */
.filter-sticky-wrapper {
    position: relative;
    width: 100%;
}

.category-section {
    background: #f4ede4;
    position: sticky;
    top: 0px;
    z-index: 101;
    padding: 12px 0;
    transition: all var(--transition);
}

.product-card-bg {
    background: #F4EDE4;
}

.category-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
    margin: -10px 0;
}

.category-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.category-pills {
    display: flex;
    gap: 12px;
    padding: 5px 20px;
    width: max-content;
    min-width: 100%;
}

.cat-pill:last-child {
    margin-right: 20px;
}

.cat-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.cat-pill.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    padding: 28px 0 60px;
}

.content-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

/* ===== SIDEBAR ===== */
.filters-sidebar {
    background: var(--bg-sidebar);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 70px + 16px);
    max-height: calc(100vh - var(--header-h) - 86px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    z-index: 90;
}

.filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 2px solid var(--bg-page);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.filters-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.filters-title svg {
    color: var(--primary);
}

.clear-all-btn {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(200, 134, 10, 0.2);
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
}

.clear-all-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(200, 134, 10, 0.2);
    transform: translateY(-1px);
}

.close-mobile-filter {
    display: none;
}

.filter-group {
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.filter-group-header:hover {
    background: #FFFAF0;
}

.filter-group-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.filter-toggle-icon {
    font-size: 25px;
    color: var(--text-muted);
    transition: transform var(--transition-slow);
}

.filter-toggle-icon.collapsed {
    transform: rotate(-180deg);
}

.filter-options {
    padding: 4px 20px 16px;
}

.filter-options.collapsed {
    display: none;
}

.filter-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 6px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.filter-opt:hover {
    background: rgba(200, 134, 10, 0.05);
}

.filter-opt input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
    flex-shrink: 0;
    margin: 0;
}

.filter-opt input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-opt input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.filter-opt input[type="checkbox"]:hover {
    box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.2);
}

.filter-opt span {
    font-size: 13.5px;
    color: var(--text-secondary);
    user-select: none;
}

.filter-opt input:checked+span {
    color: var(--text-primary);
    font-weight: 600;
}

.mobile-filter-apply {
    display: none;
    padding: 16px;
}

.mobile-apply-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

/* ===== PRODUCTS AREA ===== */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-count {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 13px;
    color: var(--text-muted);
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: 
        linear-gradient(var(--border), var(--border)), 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231E1408' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 32px center, right 12px center;
    background-size: 1px 60%, 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 38px 8px 12px;
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: all var(--transition);
}

.sort-select:focus {
    border-color: var(--primary);
}

.view-toggle {
    display: flex;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.view-btn {
    padding: 5px 8px;
    border-radius: 5px;
    color: var(--text-muted);
    transition: all var(--transition);
    border: none;
}

.view-btn.active {
    background: var(--primary);
    color: #fff;
    border: none;
}

.view-btn:hover:not(.active) {
    background: var(--bg-page);
}

.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Active filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    min-height: 0;
}

.active-filter-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF8EB;
    border: 1px solid rgba(200, 134, 10, 0.2);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(200, 134, 10, 0.08);
}

.active-filter-tag:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(200, 134, 10, 0.12);
}

.tag-label {
    line-height: 1;
}

.tag-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: var(--text-muted);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 12px;
    transition: all var(--transition);
}

.tag-close-btn:hover {
    background: rgba(200, 134, 10, 0.15);
    color: var(--primary);
    transform: rotate(90deg);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 14px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-slow);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 134, 10, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(200, 134, 10, 0.15);
}

.product-card:hover .pc-overlay {
    opacity: 1;
}

/* Card Image */
.pc-image-wrap {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F5F0E8, #EDE8DE);
    position: relative;
    overflow: hidden;
    height: 280px;
}

.pc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .pc-image-wrap img {
    transform: scale(1.06);
}

.pc-emoji-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pc-emoji {
    font-size: 48px;
}

.pc-emoji-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.pc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pc-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-brand {
    background: rgba(26, 18, 8, 0.85);
    color: var(--primary-light);
}

.badge-new {
    background: #10B981;
    color: #fff;
}

.badge-popular {
    background: var(--primary);
    color: #fff;
}

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 8, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.pc-quick-enq {
    background: #fff;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: none;
}

.pc-quick-enq:hover {
    background: var(--primary);
    color: #fff;
}

/* Card Body */
.pc-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pc-category-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.pc-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

.pc-description {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.pc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.pc-meta-tag {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--bg-page);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Card Footer */
.pc-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pc-enquiry-btn {
    flex: 1;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    text-align: center;
    transition: all var(--transition);
    border: none;
}

.pc-enquiry-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
}

.pc-view-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid #B8760A;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 16px;
    transition: all var(--transition);
}

.pc-view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* === LIST VIEW === */
.products-grid.list-view .product-card {
    flex-direction: row;
    gap: 0;
}

.products-grid.list-view .pc-image-wrap {
    width: 160px;
    min-width: 160px;
    aspect-ratio: auto;
    height: 140px;
    border-right: 1px solid var(--border);
}

.products-grid.list-view .pc-body {
    padding: 14px 16px;
}

.products-grid.list-view .pc-footer {
    padding: 16px;
    border-top: none;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-width: 180px;
    gap: 10px;
}

.products-grid.list-view .pc-enquiry-btn {
    flex: none;
    padding: 12px 16px;
}

.products-grid.list-view .pc-view-btn {
    flex: none;
    width: 100%;
    margin: 0;
    justify-content: center;
    border-radius: var(--radius-full);
    height: 36px;
}

/* ===== LOAD MORE ===== */
.load-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.load-more-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.no-results-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* =============================================
   ENQUIRY MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    transition: all var(--transition);
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

/* Selected Product Card */
.selected-product-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #FFF8EB, #FFF3D0);
    border: 1px solid rgba(200, 134, 10, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.sp-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(200, 134, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    overflow: hidden;
}

.sp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-info {
    flex: 1;
}

.sp-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 4px;
}

.sp-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.sp-type {
    font-size: 12px;
    color: var(--text-muted);
}

/* Variant Selector */
.variant-selector {
    margin-bottom: 20px;
}

.variant-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-opt {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.variant-opt:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.variant-opt.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Form */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.req {
    color: #DC2626;
}

.form-input {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-primary);
    background: #fff;
    outline: none;
    transition: all var(--transition);
    width: 100%;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.1);
}

.form-input.error {
    border-color: #DC2626;
}

.form-textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-primary);
    background: #fff;
    outline: none;
    resize: vertical;
    transition: all var(--transition);
    width: 100%;
}

.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.1);
}

.form-error {
    font-size: 12px;
    color: #DC2626;
    font-weight: 500;
}

.submit-btn {
    background: var(--primary-gradient);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    border: none;
}

.submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* SUCCESS MODAL */
.success-modal-box {
    text-align: center;
    max-width: 420px;
    animation: bounceIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.success-msg {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-whatsapp {
    margin-bottom: 16px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    background: #1DAA56;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

/* ===== FAB ===== */
.fab-enquire {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--primary-gradient);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    transition: all var(--transition);
    justify-content: center;
}

.fab-enquire:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 32px rgba(200, 134, 10, 0.5);
}

.fab-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== MOBILE FILTER OVERLAY ===== */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 599;
}

.mobile-filter-overlay.visible {
    display: block;
}

/* ===== SKELETON LOADING ===== */
.skeleton-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.skeleton-img {
    height: 180px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-load 1.5s infinite;
}

.skeleton-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-load 1.5s infinite;
}

.skeleton-line.w-60 {
    width: 60%;
}

.skeleton-line.w-80 {
    width: 80%;
}

.skeleton-line.w-40 {
    width: 40%;
}

@keyframes skeleton-load {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* =============================================
   MODAL PRODUCT DETAILS (STEP 1)
   ============================================= */
.modal-step {
    animation: fadeIn 0.3s ease;
}

/* =============================================
   MODAL PRODUCT DETAILS (STEP 1) SPLIT LAYOUT
   ============================================= */
.detail-split-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .detail-split-layout {
        flex-direction: row;
        gap: 32px;
    }

    .detail-visual-col {
        flex: 1;
        max-width: 45%;
    }

    .detail-content-col {
        flex: 1.2;
    }
}

.detail-visual-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-image-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.detail-variant-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.var-img-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition);
    background: #f8f8f8;
    flex-shrink: 0;
}

.var-img-thumb:hover {
    border-color: var(--primary);
}

.var-img-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(200, 134, 10, 0.2);
}

.var-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-header {
    margin-bottom: 0px;
}

.detail-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(200, 134, 10, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 6px;
}

.detail-brand {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.detail-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.detail-highlights {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-highlights li {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-highlights li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #10B981;
    font-size: 18px;
}

.detail-variants-wrap {
    background: #f8f8f8;
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.detail-section-h {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.detail-variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-proceed-to-form,
.btn-add-to-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-proceed-to-form {
    background: var(--primary-gradient);
    color: #fff;
}

.btn-proceed-to-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 134, 10, 0.3);
}

.btn-add-to-cart {
    background: #fff;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-add-to-cart:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(200, 134, 10, 0.04);
}

.detail-action-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.btn-back-to-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 12px 6px 8px;
    margin-bottom: 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.btn-back-to-details:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.sp-variant-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-top: 4px;
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #0f0a05;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}



.footer-logo .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-h {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-h::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: all var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.ci-icon {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}


/* =============================================
   CART DRAWER UI
   ============================================= */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9005;
    animation: fadeIn 0.3s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: #fff;
    box-shadow: var(--shadow-xl);
    z-index: 9010;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: #FAFAFA;
}

.cart-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    background: #fff;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.cart-close-btn:hover {
    color: var(--text-primary);
    background: var(--bg-page);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    background: var(--bg-page);
}

/* Empty State */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
    opacity: 0.8;
}

.cart-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.6;
}

/* Cart Items */
.cart-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.cart-item:hover {
    border-color: rgba(200, 134, 10, 0.3);
    box-shadow: 0 4px 12px rgba(200, 134, 10, 0.08);
}

.ci-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f5f5f5;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.ci-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ci-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ci-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.ci-short-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ci-variant {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-page);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

.ci-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #DC2626;
    background: #FEE2E2;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all var(--transition);
    border: none;
}

.ci-remove:hover {
    opacity: 1;
    background: #FECACA;
    transform: scale(1.1);
}

.cart-footer {
    padding: 20px 24px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.btn-cart-checkout {
    width: 100%;
    padding: 16px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.btn-cart-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-cart-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
    color: #888;
}

/* =============================================
   CART ENQUIRY MODAL & VARIANT SELECTORS
   ============================================= */
.ci-variant-select {
    appearance: none;
    -webkit-appearance: none;
    font-size: 12px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-secondary);
    background-color: var(--bg-page);
    background-image: 
        linear-gradient(var(--border), var(--border)), 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231E1408' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center, right 8px center;
    background-size: 1px 60%, 10px;
    border: 1px solid var(--border);
    padding: 3px 28px 3px 8px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    align-self: flex-start;
    transition: all var(--transition);
}

.cart-modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.cart-enq-products {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: #A0A0A0 transparent;
}

.cart-enq-products::-webkit-scrollbar {
    width: 6px;
}

.cart-enq-products::-webkit-scrollbar-thumb {
    background: #A0A0A0;
    border-radius: 10px;
}

.cep-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    position: relative;
    transition: all var(--transition);
}

.cep-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f5f5f5;
    flex-shrink: 0;
}

.cep-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cep-brand {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cep-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cep-variant-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cep-variant-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 6px 32px 6px 12px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231E1408' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    outline: none;
    cursor: pointer;
}

.cep-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #E11D48;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.cep-remove:hover {
    opacity: 1;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 20px;
    font-weight: 500;
    color: #888;
}

.form-group .form-input {
    border: 1px solid #D1D5DB;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 18px;
    color: var(--text-primary);
    background: #fff;
    transition: all 0.2s;
}

.form-group .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(200, 134, 10, 0.1);
}

.submit-btn {
    margin-top: 12px;
    padding: 18px;
    font-size: 18px;
    border-radius: 14px;
}

.cep-variant-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
}

.cep-variant-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 2px 24px 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 600;
    background-color: var(--bg-page);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%231E1408' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 8px;
    outline: none;
    cursor: pointer;
}

.cep-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #DC2626;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity var(--transition);
}

.cep-remove:hover {
    opacity: 1;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group .form-input {
    width: 100%;
}

.submit-btn {
    width: 100%;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 60px;
    }

    .header-search-wrap {
        display: none;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }
    .hero-search-container {
    margin: 24px auto 27px;
    width: 100%;
    position: relative;
}

    .filters-sidebar {
        position: fixed;
        left: 0;
        bottom: 0;
        top: auto;
        right: 0;
        max-height: 80vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        border: none;
        border-top: 1px solid var(--border);
        z-index: 600;
        transform: translateY(100%);
        transition: transform var(--transition-slow);
        box-shadow: var(--shadow-xl);
    }

    .filters-sidebar.open {
        transform: translateY(0);
    }

    .mobile-filter-apply {
        display: block;
    }

    .close-mobile-filter {
        display: block;
    }

    .mobile-filter-toggle {
        display: flex;
    }

    .hero-search-btn span {
        display: none;
    }

    .hero-search-btn {
        padding: 12px 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-box {
        padding: 24px 20px;
        max-height: 95vh;
    }

    .detail-layout {
        flex-direction: column;
        gap: 16px;
    }

    .detail-visual {
        flex: auto;
    }

    .detail-image-box {
        aspect-ratio: inherit;
        height: 160px;
        max-height: 160px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-h::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .products-grid.list-view .pc-image-wrap {
        width: 120px;
        min-width: 120px;
    }

    .products-grid.list-view .pc-footer {
        min-width: 120px;
    }

    .fab-enquire {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    .products-grid.list-view .pc-view-btn {
               width: 18%;
        padding: 25px;
        border-radius: 25px;
    }
    .products-grid.list-view .pc-enquiry-btn{
        width: 75%;
    }
    .btn-add-to-cart{
        font-size: 11px;
    }
    .toolbar-right{
        flex-direction: row-reverse;
    }
    .showcase-title{
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .cat-pill {
        font-size: 12px;
        padding: 7px 14px;
    }

    .quick-tags {
        gap: 6px;
    }

    .products-grid.list-view {
        grid-template-columns: 1fr;
    }

    .products-grid.list-view .product-card {
        flex-direction: column;
    }

    .products-grid.list-view .pc-image-wrap {
        width: 100%;
        height: 160px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .products-grid.list-view .pc-footer {
        flex-direction: row;
        min-width: 0;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .detail-title {
        font-size: 20px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-in-out forwards;
}

.fade-in {
    animation: fadeIn 0.4s ease-in-out forwards;
}

/* Custom Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    border: 1px solid rgba(200, 134, 10, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 6px solid transparent;
    border-top-color: rgba(200, 134, 10, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    pointer-events: none;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Specific fix for right-positioned buttons to prevent clipping */
.pc-view-btn[data-tooltip]::after {
    left: auto;
    right: 0;
    transform: translateY(5px);
}

.pc-view-btn[data-tooltip]::before {
    left: auto;
    right: 13px;
    transform: translateY(5px);
}

.pc-view-btn[data-tooltip]:hover::after,
.pc-view-btn[data-tooltip]:hover::before {
    transform: translateY(0);
}