/*
Theme Name: EGlobe Systems Theme
Theme URI: https://eglobe.lk/theme
Author: EGlobe Team
Author URI: https://eglobe.lk
Description: A high-performance cyber-themed dark mode WordPress theme for computer builder shops.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aethertech
*/

/* ==========================================================================
   AETHERTECH SYSTEMS - CSS STYLESHEET
   Description: Cyberpunk & modern high-tech aesthetic styling for e-commerce
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- Root Variables --- */
:root {
    /* Colors */
    --bg-primary: #07090e;
    --bg-secondary: #0c1017;
    --bg-tertiary: #121722;
    --bg-glass: rgba(12, 16, 23, 0.75);
    
    --accent-red: #00f0ff;
    --accent-red-rgb: 0, 240, 255;
    --accent-red-hover: #00d5e8;
    --accent-blue: #00f0ff;
    --accent-blue-rgb: 0, 240, 255;
    --accent-blue-hover: #00cce6;

    /* TechNova Cyan System */
    --accent-cyan: #00f0ff;
    --accent-cyan-rgb: 0, 240, 255;
    --accent-cyan-hover: #00d5e8;
    --border-glass-cyan: rgba(0, 240, 255, 0.2);
    --shadow-cyan-glow: 0 0 25px rgba(0, 240, 255, 0.35);
    
    --text-primary: #f5f6f9;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(0, 240, 255, 0.25);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-main: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(0, 240, 255, 0.25);
    --shadow-glow-blue: 0 0 20px rgba(0, 240, 255, 0.35);
    
    /* Layout Constants */
    --header-height: 85px;
    --max-width: 1320px;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient-red, .text-gradient-blue {
    color: #ffffff;
}

.section-title-wrap {
    margin-bottom: 48px;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.glow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #00f0ff;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.glow-btn:hover::before {
    left: 100%;
}

/* Price range preset buttons */
.price-preset-btn {
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.price-preset-btn:hover, .price-preset-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    box-shadow: var(--shadow-glow);
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 31, 75, 0.5);
}

.glow-btn:active {
    transform: translateY(0);
}

.glow-btn.secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.glow-btn.secondary:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header:not(.header-floating-pill) {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.header.scrolled:not(.header-floating-pill) {
    height: 70px;
    background: var(--bg-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #0284c7;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar-container:not(.pill-search-container) {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 16px;
    transition: var(--transition-fast);
    width: 220px;
}

.search-bar-container:focus-within:not(.pill-search-container) {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
    width: 260px;
}

.search-input {
    width: 100%;
    font-size: 13px;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon-btn {
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
}

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.cart-btn:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow);
    color: var(--accent-red);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
}

/* ==========================================================================
   HERO / BANNER
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 650px;
    padding-top: var(--header-height);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 9, 12, 0.95) 20%, rgba(8, 9, 12, 0.7) 50%, rgba(8, 9, 12, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 31, 75, 0.1);
    border: 1px solid rgba(255, 31, 75, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 8px;
    color: var(--accent-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

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

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 24px;
    z-index: 4;
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 250px;
}

.category-img-container {
    height: 60%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-img-container img {
    transform: scale(1.1);
}

.category-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-count {
    font-size: 13px;
    color: var(--text-muted);
}

.category-arrow {
    align-self: flex-end;
    font-size: 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.category-card:hover {
    border-color: var(--accent-red-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.category-card:hover .category-arrow {
    color: var(--accent-red);
    transform: translateX(3px);
}

/* ==========================================================================
   PRODUCT LISTING & CONTROLS
   ========================================================================== */
.shop-section {
    padding: 100px 0;
}

.shop-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    background: var(--bg-secondary);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover, .filter-tab.active {
    color: white;
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.sort-select {
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-select:hover, .sort-select:focus {
    border-color: var(--accent-blue);
}

/* --- Product Cards Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-box {
    position: relative;
    height: 220px;
    background: #0f1118;
    overflow: hidden;
    cursor: pointer;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.hot {
    background: var(--accent-red);
    color: white;
}

.product-badge.new {
    background: var(--accent-blue);
    color: #08090c;
}

.product-rating {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(8, 9, 12, 0.8);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #ffb800;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-name:hover {
    color: var(--accent-red);
}

.product-specs-list {
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-spec-item {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.product-spec-item i {
    font-size: 10px;
    color: var(--accent-blue);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-price-before {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
    display: block;
}

.product-badge.discount {
    background: #e21b1b;
    color: white;
}

.add-inquiry-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.add-inquiry-btn:hover {
    background: #0284c7;
    border-color: #0284c7;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
    color: white;
}

.add-inquiry-btn.added {
    background: var(--bg-tertiary);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.add-inquiry-btn.added:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.no-products-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-secondary);
}

.no-products-msg i {
    font-size: 40px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ==========================================================================
   PRODUCT DETAIL MODAL
   ========================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px;
}

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

.detail-modal {
    width: 100%;
    max-width: 960px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.92) translateY(20px);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.15);
}

.modal-overlay.active .detail-modal {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(10, 15, 26, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--accent-cyan);
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.modal-close-btn:hover {
    color: #ffffff;
    background: #0284c7;
    border-color: #00f0ff;
    transform: rotate(90deg) scale(1.1);
}

.modal-scrollable {
    overflow-y: auto;
    padding: 36px 40px;
    max-height: calc(88vh - 10px);
}

.modal-scrollable::-webkit-scrollbar {
    width: 6px;
}

.modal-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.modal-scrollable::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 9999px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.detail-img-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #08090c;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: sticky;
    top: 0;
}

.detail-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.detail-img-box:hover img {
    transform: scale(1.04);
}

.detail-info-box {
    display: flex;
    flex-direction: column;
}

.detail-category {
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 800;
}

.detail-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 18px;
}

.detail-rating span {
    color: #94a3b8;
    font-size: 13px;
    margin-left: 8px;
}

.detail-price {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.detail-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.detail-specs-table {
    width: 100%;
    margin-bottom: 28px;
    border-collapse: collapse;
}

.detail-specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-specs-table tr:last-child {
    border-bottom: none;
}

.detail-specs-table td {
    padding: 10px 0;
    font-size: 13px;
}

.detail-specs-table td.spec-name {
    color: #94a3b8;
    font-weight: 600;
    width: 38%;
}

.detail-specs-table td.spec-val {
    color: #ffffff;
    font-weight: 500;
}

.detail-actions {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CART DRAWER / INQUIRY PANEL
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 12, 0.6);
    backdrop-filter: blur(8px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 160;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

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

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

.cart-header-title {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header-title i {
    color: var(--accent-red);
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.cart-close-btn:hover {
    color: white;
    background: var(--accent-red);
    border-color: var(--accent-red);
}

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

/* --- Cart Item Card --- */
.cart-item {
    display: flex;
    gap: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    transition: var(--transition-fast);
}

.cart-item:hover {
    border-color: var(--accent-blue);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    background: #0f1118;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    padding-right: 20px;
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.quantity-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.quantity-val {
    width: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-remove-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
}

.cart-item-remove-btn:hover {
    color: var(--accent-red);
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    color: var(--text-secondary);
    text-align: center;
}

.cart-empty-state i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.cart-total-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
}

.cart-checkout-btn {
    width: 100%;
}

/* ==========================================================================
   INQUIRY SUBMISSION SECTION
   ========================================================================== */
.inquiry-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.inquiry-info-panel h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.inquiry-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 15px;
}

/* --- Inquiry Order Summary --- */
.inquiry-summary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.summary-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.summary-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 6px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 12px;
}

.summary-item-name {
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70%;
}

.summary-item-price {
    font-weight: 600;
}

.summary-empty-msg {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.summary-total-val {
    color: var(--accent-red);
}

/* --- Form Fields --- */
.inquiry-form-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.form-title {
    font-size: 22px;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(255, 31, 75, 0.15);
}

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

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-muted);
}

.error-message {
    color: var(--accent-red);
    font-size: 11px;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.form-group.has-error .form-input, .form-group.has-error .form-textarea {
    border-color: var(--accent-red);
}

.inquiry-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   ABOUT / FEATURES SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 12px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    padding: 0 8px;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

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

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition-normal);
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 31, 75, 0.05);
    border: 1px solid var(--border-color-glow);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
    background: var(--accent-red);
    color: white;
    box-shadow: var(--shadow-glow);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 31, 75, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-panel h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-details-list {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-text p {
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 0;
}

.map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) grayscale(80%) contrast(90%);
}

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

.contact-form-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: white;
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-red);
    transform: translateX(4px);
}

.footer-col p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex-grow: 1;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
}

.newsletter-input:focus {
    border-color: var(--accent-blue);
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-glow);
}

.newsletter-btn:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-payment-icons {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ==========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-red);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
    width: 320px;
    box-shadow: var(--shadow-main);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--accent-blue);
}

.toast-icon {
    font-size: 18px;
    color: var(--accent-red);
}

.toast.success .toast-icon {
    color: var(--accent-blue);
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.toast-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   MOBILE NAVIGATION BACKDROP & OVERLAY
   ========================================================================== */
.mobile-nav-search {
    display: none;
    width: 90%;
    max-width: 340px;
    margin-bottom: 10px;
    position: relative;
}

.mobile-nav-search .search-input {
    width: 100%;
    padding: 12px 45px 12px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-primary);
}

.mobile-nav-search .search-icon-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 9, 12, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    z-index: 98;
    transition: opacity 0.3s ease;
}

.nav-mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 550px;
    }
    .hero-title {
        font-size: 40px;
    }
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text {
        order: 1;
    }
    .about-stats {
        margin-top: 24px;
        justify-content: space-around;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        position: static;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    html, body {
        overflow-x: hidden;
    }
    .header.scrolled {
        height: 70px;
    }
    .nav-links {
        display: flex !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 24px;
        z-index: 99;
        border-top: 1px solid var(--border-color);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        overflow-y: auto;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .mobile-nav-search {
        display: flex;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--bg-tertiary);
        border: 1px solid var(--border-color);
    }
    .search-bar-container {
        display: none;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .category-card {
        height: 200px;
    }
    .category-info {
        padding: 12px;
    }
    .category-name {
        font-size: 15px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-img-box {
        height: 160px;
    }
    .product-details {
        padding: 12px;
    }
    .product-name {
        font-size: 14px;
        min-height: 2.6em;
    }
    .product-price {
        font-size: 16px;
    }
    .product-spec-item {
        font-size: 11px;
    }
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .shop-controls-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .form-input, .form-select, .form-textarea, .search-input {
        font-size: 16px; /* Prevents auto-zoom on iOS Safari */
    }
    .slider-controls {
        bottom: 20px;
        right: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    .section-title {
        font-size: 26px;
    }
    .section-title-wrap {
        margin-bottom: 28px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .category-card {
        height: 180px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-img-box {
        height: 140px;
    }
    .product-details {
        padding: 10px;
    }
    .product-specs-list {
        display: none; /* Hide detailed specs preview on small phones to keep card clean */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .modal-scrollable {
        padding: 20px 16px;
    }
    .detail-modal {
        width: 95%;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .glow-btn {
        width: 100%;
    }
    .inquiry-form-card, .contact-form-card {
        padding: 20px 16px;
    }
    .about-stats {
        padding: 14px 8px;
        gap: 6px;
    }
    .stat-item {
        padding: 0 4px;
    }
    .stat-num {
        font-size: 20px;
    }
    .stat-label {
        font-size: 9.5px;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 380px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SHOP SPLIT LAYOUT AND SIDEBAR MENU
   ========================================================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.shop-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-box {
    margin-bottom: 30px;
}

.sidebar-box:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 0;
}

.sidebar-link {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-link i {
    width: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.sidebar-link:hover, .sidebar-link.active {
    color: #ffffff;
    background: rgba(0, 240, 255, 0.08);
}

.sidebar-link:hover i, .sidebar-link.active i {
    color: var(--accent-cyan);
}

.sidebar-link.text-red i {
    color: var(--accent-cyan);
}

.sidebar-link.text-yellow i {
    color: #ffb800;
}

.sidebar-link.active.text-red {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.35);
}

.sidebar-link.active.text-yellow {
    background: rgba(255, 184, 0, 0.08);
    color: #ffb800;
}

.sidebar-link.active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.35);
}

.sidebar-link.active i {
    color: var(--accent-cyan);
}

/* Catalog main overrides */
.shop-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px;
}

.catalog-results-info {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==========================================================================
   CART NOTIFICATION ANIMATIONS
   ========================================================================== */
@keyframes badgePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); box-shadow: 0 0 10px var(--accent-red); }
    100% { transform: scale(1); }
}

.cart-badge.pop {
    animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes btnBump {
    0% { transform: scale(1); }
    30% { transform: scale(0.85); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cart-btn.bump {
    animation: btnBump 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   MOBILE FILTER SIDEBAR DRAWER OVERRIDES
   ========================================================================== */
.sidebar-mobile-header {
    display: none;
}

.mobile-filter-trigger-btn {
    display: none;
}

@media (max-width: 992px) {
    .sidebar-mobile-header {
        display: flex !important;
    }
    
    .shop-sidebar {
        position: fixed !important;
        top: 0;
        left: -320px; /* Hide off screen */
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary) !important;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
        z-index: 10000 !important;
        overflow-y: auto;
        transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-radius: 0 !important;
        border-top: none;
        border-bottom: none;
        border-left: none;
        border-right: 1px solid var(--border-color);
        padding: 24px !important;
    }
    
    .shop-sidebar.active {
        left: 0 !important;
    }
    
    .sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(8, 9, 12, 0.7);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        z-index: 9999;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-filter-trigger-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 16px;
        background: var(--bg-tertiary);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-primary);
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .mobile-filter-trigger-btn:hover {
        border-color: var(--accent-red);
        color: var(--accent-red);
    }
}

/* ==========================================================================
   TECHNOVA GLASSMORPHISM DESIGN SYSTEM STYLES
   ========================================================================== */

.text-cyan {
    color: var(--accent-cyan) !important;
}

.section-tag-cyan {
    color: var(--accent-cyan) !important;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 800;
}

/* --- Floating Pill Header Navigation --- */
.header-floating-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1280px;
    height: auto;
    z-index: 1000;
    background: rgba(10, 14, 22, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 9999px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



.pill-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    width: 100%;
}

.pill-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text-accent {
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 600;
    margin-left: 2px;
}

.logo-icon-glow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.pill-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pill-link {
    position: relative;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(245, 246, 249, 0.75);
    transition: var(--transition-fast);
}

.pill-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.pill-link.active {
    color: var(--accent-cyan) !important;
    background: transparent !important;
    font-weight: 600;
}

.pill-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 9999px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.9), 0 0 18px rgba(0, 240, 255, 0.6);
}

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

.pill-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(10, 15, 24, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 9999px;
    padding: 6px 36px 6px 16px;
    transition: var(--transition-normal);
    width: 170px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.12);
}

.pill-search-container:focus-within {
    width: 200px;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.08);
}

.pill-search-input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    font-size: 13px;
    color: var(--text-primary);
    box-shadow: none !important;
}

.pill-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.pill-search-container .search-icon-btn {
    position: absolute;
    right: 12px;
    color: rgba(0, 240, 255, 0.75);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.pill-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.pill-icon-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.12);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.pill-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-cyan);
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

/* --- TechNova Hero Section --- */
.technova-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 80px 0 50px 0;
    overflow: hidden;
    background: #06090e;
}

.hero-backdrop-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img, .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.95) contrast(1.05);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 9, 14, 0.3) 0%, rgba(6, 9, 14, 0.05) 45%, rgba(6, 9, 14, 0.85) 80%, #06090e 100%);
    pointer-events: none;
}

.hero-container-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.hero-content-technova {
    max-width: 900px;
    margin-top: 140px;
    margin-bottom: 20px;
}

.hero-slide-text {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-slide-text.active {
    display: flex;
    animation: slideFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.technova-hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8);
}

.technova-hero-subtitle {
    font-size: 21px;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 32px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* --- Slide Indicators --- */
.hero-slide-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    pointer-events: auto;
}

.slide-indicator {
    width: 4px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-indicator.active {
    background: var(--accent-cyan);
    height: 40px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.7);
}

/* --- Slide Controls --- */
.hero-slide-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 100;
    pointer-events: auto;
}

.hero-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    pointer-events: auto;
}

.hero-control-btn:hover {
    background: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transform: scale(1.05);
}

.pill-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.pill-btn {
    border-radius: 9999px !important;
    padding: 14px 38px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}

.glow-btn-cyan {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #00f0ff !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.glow-btn-cyan:hover {
    transform: translateY(-2px);
    background: rgba(0, 240, 255, 0.08) !important;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35) !important;
    color: #ffffff !important;
    border-color: #00f0ff !important;
}

.glow-btn-glass {
    background: transparent !important;
    border: 1px solid rgba(0, 240, 255, 0.5) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.glow-btn-glass:hover {
    background: rgba(0, 240, 255, 0.08) !important;
    border-color: #00f0ff !important;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35) !important;
    color: #ffffff !important;
}

/* --- Glassmorphic Categories & Sections --- */
.categories-glass {
    padding: 90px 0 60px 0;
    background: linear-gradient(180deg, #06090e 0%, #0a0e17 100%);
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.glass-card {
    background: rgba(15, 22, 34, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.25);
    background: rgba(20, 30, 46, 0.75);
}

.shop-glass-section {
    padding: 70px 0;
    background: #0a0e17;
}

.products-grid-glass .product-card {
    background: rgba(15, 22, 34, 0.65) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    border-radius: 20px !important;
}

.products-grid-glass .product-card:hover {
    border-color: rgba(0, 240, 255, 0.4) !important;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2) !important;
}

.glass-about-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #0a0e17 0%, #06090e 100%);
}

.glass-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.25);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.glass-img-wrapper img {
    border-radius: 20px;
    width: 100%;
}

.pill-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.glass-stat {
    flex: 1;
    background: rgba(15, 22, 34, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(12px);
}

.glass-contact-section {
    padding: 80px 0;
    background: #06090e;
}

.contact-details-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* --- Responsive Floating Pill Navbar & Hero --- */
@media (max-width: 1024px) {
    .pill-nav-links {
        display: none;
    }
    
    .technova-hero-title {
        font-size: 48px;
    }
    
    .technova-hero-subtitle {
        font-size: 18px;
    }
    
    .hero-content-technova {
        margin-top: 160px;
    }
}

@media (max-width: 768px) {
    .header-floating-pill {
        width: calc(100% - 24px);
        top: 12px;
        border-radius: 24px;
    }
    
    .pill-search-container {
        display: none;
    }
    
    .technova-hero-title {
        font-size: 36px;
    }
    
    .technova-hero-subtitle {
        font-size: 16px;
    }
    
    .pill-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .pill-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-content-technova {
        margin-top: 120px;
    }
}

/* ==========================================
   DEALS & OFFERS PAGE STYLES
   ========================================== */
.deals-page-main {
    padding-top: 120px;
    background: #06090e;
    color: #ffffff;
    min-height: 100vh;
}

.deals-hero-section {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.badge-flash-sale {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 9999px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.deals-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.deals-hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.deals-countdown-box {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 24px;
    padding: 24px 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.15);
}

.countdown-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #64748b;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 36px;
    font-weight: 800;
    font-family: 'Space Grotesk', monospace;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block small {
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 2px;
    font-weight: 700;
    letter-spacing: 1px;
}

.time-colon {
    opacity: 0.6;
    margin-top: -12px;
}

.deals-grid-section {
    padding: 40px 0 80px;
}

.deals-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.deal-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    border-radius: 9999px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.deal-filter-btn:hover, .deal-filter-btn.active {
    background: #0284c7;
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.deal-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deal-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.15);
}

.deal-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #0284c7;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 9999px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.deal-badge-tag.tag-purple {
    background: #a855f7;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.deal-badge-tag.tag-cyan {
    background: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.4);
}

.deal-img-wrap {
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    overflow: hidden;
}

.deal-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.deal-card:hover .deal-img {
    transform: scale(1.06);
}

.deal-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.deal-category {
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.deal-rating {
    color: #cbd5e1;
    font-weight: 600;
}

.text-warning {
    color: #f59e0b;
}

.deal-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
}

.deal-specs {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    min-height: 36px;
}

.deal-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

.deal-price-current {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.deal-price-original {
    font-size: 15px;
    color: #64748b;
    text-decoration: line-through;
}

.deal-savings {
    font-size: 11px;
    font-weight: 800;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
}

.deal-stock-bar-wrap {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stock-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.stock-progress-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.stock-progress-fill {
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 9999px;
}

.stock-progress-fill.warning-fill {
    background: #f59e0b;
}

.deal-actions {
    margin-top: auto;
    padding-top: 14px;
}

.deal-cta-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.deals-promo-section {
    padding: 40px 0 80px;
}

.promo-glass-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.promo-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 12px;
}

.promo-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.promo-content p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* ==========================================
   FEATURED PRODUCTS SECTION STYLES
   ========================================== */
.featured-products-section {
    padding: 80px 0 60px;
    background: #06090e;
}

.featured-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.featured-heading {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.pill-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.pill-btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: translateX(2px);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.featured-product-card {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.featured-product-card:hover {
    border-color: rgba(0, 240, 255, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.12);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 9999px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-blue {
    background: #0284c7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.badge-purple {
    background: #7c3aed;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.featured-card-img-wrap {
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 18px;
    overflow: hidden;
    padding: 16px;
}

.featured-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.featured-card-info {
    display: flex;
    flex-direction: column;
}

.featured-card-category {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.featured-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 4px 0 6px;
}

.featured-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    margin-bottom: 16px;
}

.rating-count {
    font-size: 12px;
    color: #64748b;
    margin-left: 4px;
}

.featured-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.featured-card-price {
    font-size: 19px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.featured-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4f46e5;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.featured-cart-btn:hover {
    background: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.6);
    transform: scale(1.08);
}

/* ==========================================
   FEATURED HARDWARE DEALS SECTION STYLES
   ========================================== */
.hardware-deals-section {
    padding: 70px 0 60px;
    background: #06090e;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.hardware-deals-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.hardware-deals-heading {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.hardware-deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .hardware-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hardware-deals-grid {
        grid-template-columns: 1fr;
    }
}

.hardware-deal-card {
    background: rgba(12, 17, 26, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hardware-deal-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.1);
}

.card-img-box {
    position: relative;
    width: 100%;
    height: 210px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

.rating-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-badge i {
    color: #f59e0b;
    font-size: 10px;
}

.card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

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

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

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
}

.specs-list li {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1.4;
}

.specs-list .bullet {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

.card-price-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-stack {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 12px;
    color: #64748b;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.cart-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-icon-btn:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 14px rgba(2, 132, 199, 0.5);
    transform: scale(1.05);
}

/* ==========================================
   SUBMIT ORDER BUTTON STYLES (EMPTY OUTLINE)
   ========================================== */
#submit-inquiry-btn, .inquiry-submit-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: none !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

#submit-inquiry-btn:hover,
.inquiry-submit-btn:hover,
#submit-inquiry-btn:focus,
.inquiry-submit-btn:focus,
#submit-inquiry-btn:active,
.inquiry-submit-btn:active {
    background: transparent !important;
    border-color: #00f0ff !important;
    box-shadow: none !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    outline: none !important;
}

/* ==========================================================================
   COMPREHENSIVE FULL-PAGE MOBILE RESPONSIVE SYSTEM (TABLETS & PHONES)
   ========================================================================== */

@media (max-width: 992px) {
    .header-floating-pill {
        width: calc(100% - 32px);
        top: 14px;
        padding: 4px 8px;
    }

    .technova-hero-title {
        font-size: 34px !important;
    }

    .hardware-deals-section {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }

    /* --- Floating Navigation & Mobile Menu --- */
    .header-floating-pill {
        width: calc(100% - 24px) !important;
        top: 10px !important;
        border-radius: 9999px !important;
        padding: 4px 12px !important;
    }

    .pill-logo {
        font-size: 16px !important;
    }

    .logo-icon-glow {
        width: 30px !important;
        height: 30px !important;
    }

    .pill-search-container {
        display: none !important;
    }

    .pill-nav-links {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 68px !important;
        left: 12px !important;
        right: 12px !important;
        width: calc(100% - 24px) !important;
        background: rgba(10, 14, 22, 0.96) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid rgba(0, 240, 255, 0.3) !important;
        border-radius: 20px !important;
        padding: 20px 16px !important;
        gap: 10px !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(0,240,255,0.15) !important;
        z-index: 10000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    .pill-nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .pill-link {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 16px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
    }

    .pill-link.active::after {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    /* --- Hero Section & Actions --- */
    .hero.technova-hero {
        min-height: 480px !important;
        padding: 110px 0 60px !important;
    }

    .technova-hero-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    .technova-hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .hero-actions.pill-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .hero-actions.pill-actions .glow-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* --- Featured Hardware Deals Section --- */
    .hardware-deals-section {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hardware-deals-header-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .hardware-deals-header-row .glow-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* --- Shop Page & Grids --- */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        border-radius: 16px !important;
    }

    .product-img-box {
        height: 150px !important;
    }

    .product-details {
        padding: 12px !important;
    }

    .product-name {
        font-size: 13px !important;
        min-height: 2.5em !important;
    }

    .product-price {
        font-size: 15px !important;
    }

    .product-specs-list {
        display: none !important;
    }

    /* --- Deals Page Grid --- */
    .deals-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .deal-card {
        border-radius: 16px !important;
    }

    .deal-img-wrap {
        height: 190px !important;
    }

    .deal-content {
        padding: 18px !important;
    }

    .deal-title {
        font-size: 16px !important;
        min-height: auto !important;
    }

    .deal-specs {
        font-size: 11px !important;
        min-height: auto !important;
    }

    /* --- Quick View Product Modal Popup --- */
    .modal-overlay {
        padding: 10px !important;
    }

    .detail-modal {
        width: 96% !important;
        max-height: 92vh !important;
        border-radius: 18px !important;
    }

    .modal-scrollable {
        padding: 20px 16px !important;
        max-height: calc(92vh - 10px) !important;
    }

    .detail-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .detail-img-box {
        height: 230px !important;
        position: relative !important;
        top: 0 !important;
        border-radius: 12px !important;
    }

    .detail-title {
        font-size: 20px !important;
    }

    .detail-price {
        margin-bottom: 14px !important;
        padding-bottom: 12px !important;
    }

    .modal-close-btn {
        top: 12px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }

    .detail-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .detail-actions .glow-btn {
        width: 100% !important;
    }

    /* --- Cart Drawer --- */
    .cart-drawer {
        width: 100% !important;
        right: -100% !important;
    }

    /* --- Footer Grid --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center !important;
    }

    .footer-logo, .social-links, .footer-bottom-flex {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }

    .section-title {
        font-size: 22px !important;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .product-img-box {
        height: 180px !important;
    }

    .categories-grid-modern {
        grid-template-columns: 1fr !important;
    }

    .stat-item {
        flex: 1 1 100% !important;
        text-align: center !important;
    }
}


