/* CSS VARIABLE SYSTEM */
:root {
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-section: #f0f4ff;
    --border-color: #e2e8f0;
    
    --primary: #1A6FFF;
    --primary-hover: #0f58d6;
    --primary-glow: rgba(26, 111, 255, 0.15);
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    
    --badge-excellent-bg: rgba(16, 185, 129, 0.08);
    --badge-excellent-text: #10b981;
    --badge-like-new-bg: rgba(26, 111, 255, 0.08);
    --badge-like-new-text: #1A6FFF;
    --badge-good-bg: rgba(245, 158, 11, 0.08);
    --badge-good-text: #f59e0b;
    
    --font-family: 'Inter', sans-serif;
}

body.dark {
    --bg-body: #0f0f0f;
    --bg-card: #181818;
    --bg-section: #191c25;
    --border-color: #2b2b2b;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --badge-excellent-bg: rgba(16, 185, 129, 0.15);
    --badge-like-new-bg: rgba(26, 111, 255, 0.15);
    --badge-good-bg: rgba(245, 158, 11, 0.15);
}

/* RESET & CORE GLOBALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.accent-text {
    color: var(--primary);
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-ghost:hover {
    background-color: var(--primary-glow);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

/* NAVBAR NAVIGATION */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.dark .navbar {
    background-color: rgba(15, 15, 15, 0.85);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.logo i {
    color: var(--primary);
    font-size: 1.45rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link-repair {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-glow);
    color: var(--primary);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.nav-link-repair:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 10px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cart-count-badge {
    background-color: var(--primary);
    color: #ffffff;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.theme-toggle-btn:hover {
    background-color: var(--border-color);
}

/* HERO SECTION */
.hero-section {
    padding: 70px 0;
    background-color: var(--bg-section);
    transition: background-color 0.3s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(26, 111, 255, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-text-col h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-text-col p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
}

.hero-price-chip {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 2;
    text-align: right;
}

.price-chip-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.price-chip-rrp {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
    margin-top: 4px;
}

/* TRUST BAR */
.trust-bar {
    background-color: var(--bg-card);
    border-top: 2px solid var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding: 36px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(26, 111, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CATEGORIES ROW */
.categories-section {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.section-title-wrap {
    margin-bottom: 50px;
}

.section-title-wrap h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.section-title-wrap p {
    color: var(--text-muted);
    margin-top: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-height: 320px;
    padding: 30px 24px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 15%, rgba(15, 23, 42, 0.4) 65%, rgba(15, 23, 42, 0.1) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(8, 145, 178, 0.95) 15%, rgba(8, 145, 178, 0.4) 65%, rgba(8, 145, 178, 0.1) 100%);
}

.category-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cat-icon {
    font-size: 1.8rem;
    color: #06b6d4;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-icon {
    transform: scale(1.1);
    color: #ffffff;
}

.category-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 750;
    margin-bottom: 8px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 16px;
    flex-grow: 1;
}

.cat-count {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: background-color 0.3s;
}

.category-card:hover .cat-count {
    background-color: rgba(255, 255, 255, 0.3);
}

/* PRODUCT SECTION & MULTI-PAGE LAYOUT */
.store-section {
    padding: 70px 0;
}

.store-header {
    margin-bottom: 30px;
}

.store-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.store-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 8px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 40px;
}

.shop-sidebar {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    align-self: start;
}

.sidebar-widget {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.sidebar-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-widget h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.sidebar-widget h4::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.2s ease;
    font-size: 0.8rem;
    text-transform: none;
}
.sidebar-widget.collapsed h4::after {
    transform: rotate(-90deg);
}
.sidebar-widget.collapsed > :not(h4) {
    display: none !important;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    transition: all 0.2s ease;
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--primary);
    font-weight: 700;
}

.sidebar-link .count {
    background-color: var(--bg-section);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.sidebar-link.active .count {
    background-color: var(--primary);
    color: #ffffff;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.filter-checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.filter-checkbox-label:hover {
    color: var(--text-main);
}

.trust-widget {
    background-color: var(--bg-section);
    border-radius: 8px;
    padding: 16px;
    border: none;
}

.trust-widget-content {
    text-align: center;
}

.trust-widget-content i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-widget-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-widget-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.shop-main {
    display: flex;
    flex-direction: column;
}

.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.search-box-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.sort-selector-wrapper label {
    color: var(--text-muted);
    font-weight: 500;
}

.sort-dropdown {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.card-image-wrapper {
    position: relative;
    background-color: #f8fafc;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

body.dark .card-image-wrapper {
    background-color: #1e1e1e;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.condition-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    color: #1e293b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

body.dark .stock-badge {
    background-color: rgba(24, 24, 24, 0.9);
    color: #f1f5f9;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-specs-summary {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 16px;
}

.price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.price-rrp {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.view-details-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    font-family: var(--font-family);
    transition: color 0.2s ease;
    text-align: center;
}

.view-details-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* FEATURED / ACTION ROW */
.section-action {
    margin-top: 40px;
}

/* WHY BUY GRID */
.why-buy-section {
    background-color: var(--bg-section);
    padding: 80px 0;
    transition: background-color 0.3s ease;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.why-image-col {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid #10b981;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-image-col h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--text-main);
}
.why-image-col p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 420px;
}

.why-badge {
    background-color: rgba(16, 185, 129, 0.08);
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.benefit-rows {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.benefit-row {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-row h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-row p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* REVIEWS GRID */
.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-verified {
    display: block;
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 700;
}

.review-rating {
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CONTACT PAGE */
.contact-section {
    padding: 70px 0;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}

.info-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-row:last-child {
    margin-bottom: 0;
}

.contact-info-row i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 4px;
}

.contact-info-row h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-row p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-card {
    padding: 24px;
    margin-bottom: 0;
}

.map-placeholder {
    height: 180px;
    background-color: var(--bg-section);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 0.8rem;
    font-weight: 600;
}

.form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.form-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-submit-btn {
    width: 100%;
}

/* FAQ ACCORDION SECTION */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-section);
}

.faq-accordion-wrapper {
    max-width: 760px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion-title {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-family);
}

.faq-accordion-title i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item.open .faq-accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-accordion-item.open .faq-accordion-title i {
    transform: rotate(180deg);
}

/* FOOTER SECTION */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 0;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary);
    font-size: 1.45rem;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer-right-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    width: 100%;
}
/* Inline card style removed */

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    display: flex;
    gap: 16px;
    font-size: 1.4rem;
    color: #94a3b8;
}

/* CART DRAWER LAYOUT */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background-color: var(--bg-card);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.3rem;
    cursor: pointer;
}

.cart-items-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
    font-weight: 500;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-section);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
}

.qty-btn:hover {
    border-color: var(--primary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.95rem;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-section);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cart-subtotal-val {
    color: var(--primary);
}

.cart-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--font-family);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.checkout-btn:hover {
    background-color: var(--primary-hover);
}

/* DETAILS MODAL LAYOUT */
.details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1100;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 40px 15px;
}

.details-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-card);
    width: 800px;
    max-width: 100%;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: auto;
}

/* ZOOM LIGHTBOX CSS */
.zoom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1200;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-out;
}

.zoom-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.zoom-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-lightbox.active img {
    transform: scale(1);
}

.zoom-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.details-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    z-index: 5;
}

.modal-close:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-col {
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

body.dark .modal-image-col {
    background-color: #1e1e1e;
}

.modal-image-col img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.modal-info-col {
    padding: 40px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: var(--badge-excellent-bg);
    color: var(--badge-excellent-text);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.modal-info-col h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.modal-rrp {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.specs-box {
    background-color: var(--bg-section);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.specs-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-list li i {
    color: var(--primary);
    width: 14px;
}

.modal-add-btn {
    width: 100%;
}

/* RESPONSIVE LAYOUT RESPONSES */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-col {
        align-items: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image-col {
        height: auto;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        width: 100%;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20px auto;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    
    .modal-image-col {
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        height: 240px;
    }
    
    .modal-image-col img {
        height: 100%;
    }
    
    .modal-info-col {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 72px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg-body);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
        gap: 24px;
        z-index: 99;
        border-top: 1px solid var(--border-color);
        transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .cart-btn {
        width: 100%;
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .footer-right-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* PULSE ANIMATION FOR CART DRAWER BADGE FEEDBACK */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); box-shadow: 0 0 15px rgba(26, 111, 255, 0.4); }
    100% { transform: scale(1); }
}

.pulse-anim {
    animation: pulse 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* NEW ENGAGING EXTENSIONS */
.explore-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px auto;
    flex-wrap: wrap;
}

.explore-tab {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.explore-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 111, 255, 0.25);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.card-image-wrapper:hover .zoom-overlay {
    opacity: 1;
}

.store-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.store-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(26, 111, 255, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(26, 111, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.store-header-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.benefit-tag {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefit-tag i {
    color: #3b82f6;
}

body.dark .store-header {
    background: linear-gradient(135deg, #090d16 0%, #111827 100%);
    border: 1px solid var(--border-color);
}
