/* ==========================================================================
   TECNO IT - NEO-TECH WIDESCREEN THEME (Apple Clarity + Sony Impact Hybrid)
   Full-Width Layout & Dedicated Navigation Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --tecno-primary: #0047FF;
  --tecno-primary-hover: #0036CC;
  --tecno-cyan: #00D2FF;
  --tecno-dark: #0A0F1D;
  --tecno-dark-surface: #111827;
  --tecno-nav-bg: #0D1322;
  --tecno-gray-light: #F8FAFC;
  --tecno-gray-border: #E2E8F0;
  --tecno-text-main: #0F172A;
  --tecno-text-muted: #64748B;
  --tecno-success: #10B981;
  --tecno-warning: #F59E0B;
  --tecno-danger: #EF4444;
  --tecno-radius-sm: 8px;
  --tecno-radius-md: 14px;
  --tecno-radius-lg: 20px;
  --tecno-radius-pill: 9999px;
  --tecno-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --tecno-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --tecno-shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.06);
  --tecno-shadow-glow: 0 8px 25px -3px rgba(0, 71, 255, 0.35);
  --tecno-shadow-cyan: 0 8px 25px -3px rgba(0, 210, 255, 0.35);
}

/* Base & Typography */
body, html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: var(--tecno-text-main);
  background-color: var(--tecno-gray-light) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper {
  background-color: var(--tecno-gray-light);
  padding-top: 20px;
}

/* ==========================================================================
   1. FULL-WIDTH WIDESCREEN EXPANSION (NO MORE 1140px LIMIT!)
   ========================================================================== */
.container,
.container-large,
#wrapper .container,
#footer .container {
  width: 96% !important;
  max-width: 1780px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 1920px) {
  .container,
  .container-large,
  #wrapper .container,
  #footer .container {
    width: 96% !important;
    max-width: 1920px !important;
  }
}

/* ==========================================================================
   2. TOP BAR ANNOUNCEMENT
   ========================================================================== */
.tecno-topbar {
  background: #060911;
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tecno-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  max-width: 1780px;
  margin: 0 auto;
  padding: 0 20px;
}
.tecno-topbar-perks {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tecno-topbar-perks li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94A3B8;
}
.tecno-topbar-perks li strong {
  color: #F8FAFC;
}
.tecno-topbar-perks .perk-icon {
  font-size: 14px;
}
.tecno-topbar-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
}
.tecno-topbar-contact .contact-label {
  color: #94A3B8;
}
.tecno-topbar-contact .contact-link {
  color: var(--tecno-cyan);
  text-decoration: none;
  font-weight: 600;
}
.tecno-topbar-contact .contact-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   3. HEADER ROW 1: BRAND LOGO + EXPANSIVE SEARCH + USER ACTIONS
   ========================================================================== */
.header-nav {
  display: none !important;
}

.tecno-header-main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--tecno-gray-border);
  padding: 16px 0 !important;
  position: relative;
  z-index: 100;
}

.tecno-header-container {
  width: 96%;
  max-width: 1780px;
  margin: 0 auto;
  padding: 0 20px;
}

.tecno-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Brand Logo */
.tecno-brand-wrapper {
  flex-shrink: 0;
}
.tecno-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.tecno-brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0047FF 0%, #00D2FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 24px;
  box-shadow: var(--tecno-shadow-glow);
  transition: transform 0.25s ease;
}
.tecno-brand-logo:hover .tecno-brand-icon {
  transform: rotate(-6deg) scale(1.05);
}
.tecno-brand-text-group {
  display: flex;
  flex-direction: column;
}
.tecno-brand-text {
  font-size: 26px;
  font-weight: 900;
  color: var(--tecno-text-main);
  letter-spacing: -0.7px;
  line-height: 1;
}
.tecno-brand-text span {
  color: var(--tecno-primary);
}
.tecno-brand-tagline {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--tecno-text-muted);
  letter-spacing: 2px;
  margin-top: 3px;
}

/* Center Search Bar (Expansive Widescreen) */
.tecno-search-wrapper {
  flex: 1;
  max-width: 820px;
  margin: 0 auto;
}
.tecno-search-box {
  width: 100%;
}
.tecno-search-box form {
  width: 100%;
  margin: 0;
}
.tecno-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.tecno-search-input-wrap .search-icon {
  position: absolute;
  left: 18px;
  color: #94A3B8;
  font-size: 22px;
  pointer-events: none;
  transition: color 0.2s ease;
}
.tecno-search-input-wrap input[type="text"] {
  width: 100%;
  height: 50px;
  background: #F1F5F9;
  border: 2px solid transparent;
  border-radius: var(--tecno-radius-pill);
  padding: 0 130px 0 52px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tecno-text-main);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}
.tecno-search-input-wrap input[type="text"]:focus {
  background: #FFFFFF;
  border-color: var(--tecno-primary);
  box-shadow: 0 0 0 4px rgba(0, 71, 255, 0.12), 0 8px 20px -4px rgba(0, 71, 255, 0.08);
  outline: none;
}
.tecno-search-input-wrap input[type="text"]:focus + .search-icon {
  color: var(--tecno-primary);
}
.tecno-search-submit {
  position: absolute;
  right: 6px;
  height: 38px;
  background: linear-gradient(135deg, var(--tecno-primary), #0036CC);
  color: #FFFFFF;
  border: none;
  border-radius: var(--tecno-radius-pill);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 71, 255, 0.3);
}
.tecno-search-submit i {
  font-size: 18px;
}
.tecno-search-submit:hover {
  background: linear-gradient(135deg, #0036CC, #002299);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 71, 255, 0.45);
}

/* User Account & Cart Tools */
.tecno-user-tools {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tecno-user-tools .user-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tecno-text-main);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--tecno-radius-pill);
  border: 1px solid var(--tecno-gray-border);
  background: #FFFFFF;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.tecno-user-tools .user-info a:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: var(--tecno-primary);
}

.blockcart {
  background: #0A0F1D !important;
  border-radius: var(--tecno-radius-pill) !important;
  padding: 10px 20px !important;
  color: #FFFFFF !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(10, 15, 29, 0.15);
}
.blockcart a {
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
}
.blockcart .cart-products-count {
  background: var(--tecno-primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 71, 255, 0.5);
}
.blockcart:hover {
  background: var(--tecno-primary) !important;
  box-shadow: var(--tecno-shadow-glow) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   4. HEADER ROW 2: DEDICATED FULL-WIDTH NAVIGATION BAR (Dark Neo-Tech)
   ========================================================================== */
.tecno-navbar-bar {
  background: var(--tecno-nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative !important;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tecno-navbar-container {
  width: 96%;
  max-width: 1780px;
  margin: 0 auto;
  padding: 0 20px;
}

.tecno-navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}

/* Category Explorer Button */
.tecno-catalog-dropdown-trigger {
  flex-shrink: 0;
}
.tecno-btn-all-categories {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--tecno-primary), #1D4ED8);
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--tecno-radius-sm);
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 71, 255, 0.3);
  transition: all 0.2s ease;
}
.tecno-btn-all-categories:hover {
  background: linear-gradient(135deg, #0036CC, #1E40AF);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 71, 255, 0.45);
}
.tecno-btn-all-categories .menu-icon {
  font-size: 20px;
}

/* Primary Category Menu */
.tecno-primary-menu-wrapper {
  flex: 1;
}
.tecno-desktop-nav-wrap {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}
.tecno-main-nav-list {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin: 0 !important;
  padding: 4px 0 !important;
  list-style: none;
}

/* Nav Item Link */
.tecno-main-nav-list > li {
  position: static !important; /* Key for mega-menu alignment to navbar */
}
.tecno-main-nav-list > li > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: #E2E8F0 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  padding: 7px 12px !important;
  border-radius: var(--tecno-radius-sm) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  text-transform: none !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
}
.tecno-main-nav-list > li > a:hover,
.tecno-main-nav-list > li.current > a {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.12) !important;
}
.tecno-main-nav-list > li > a .desktop-arrow {
  font-size: 16px;
  color: #94A3B8;
  transition: transform 0.2s ease, color 0.2s ease;
}
.tecno-main-nav-list > li:hover > a .desktop-arrow {
  color: var(--tecno-cyan);
  transform: rotate(180deg);
}

/* Mega Dropdown Popover (Apple & Sony High-Impact Panel) */
.tecno-mega-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 20px !important;
  right: 20px !important;
  width: calc(100% - 40px) !important;
  max-width: 1740px !important;
  margin: 0 auto !important;
  background: #FFFFFF !important;
  border-radius: 0 0 16px 16px !important;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
  padding: 30px 40px !important;
  z-index: 2000 !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s !important;
  pointer-events: none;
}

.tecno-main-nav-list > li:hover .tecno-mega-dropdown {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto;
}

.tecno-mega-dropdown-inner {
  width: 100%;
}

/* Mega Columns: Responsive Subcategory Grid */
.tecno-mega-columns {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 24px 32px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Depth 1 Heading */
.tecno-mega-columns > li.depth-1 > a.tecno-sub-heading {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  border-bottom: 2px solid #E2E8F0 !important;
  padding-bottom: 8px !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.tecno-mega-columns > li.depth-1 > a.tecno-sub-heading:hover {
  color: var(--tecno-primary) !important;
  border-bottom-color: var(--tecno-primary) !important;
}

/* Depth 2 Sub-Links */
.tecno-sub-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.tecno-sub-links > li > a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #64748B !important;
  padding: 4px 0 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}
.tecno-sub-links > li > a:hover {
  color: var(--tecno-primary) !important;
  transform: translateX(4px) !important;
}

/* Nav Highlights on Right */
.tecno-navbar-highlights {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tecno-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--tecno-radius-pill);
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.pill-deals {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.pill-deals:hover {
  background: #EF4444;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}
.pill-news {
  background: rgba(0, 210, 255, 0.15);
  color: var(--tecno-cyan) !important;
  border: 1px solid rgba(0, 210, 255, 0.3);
}
.pill-news:hover {
  background: var(--tecno-cyan);
  color: #0A0F1D !important;
  box-shadow: var(--tecno-shadow-cyan);
  transform: translateY(-1px);
}

/* ==========================================================================
   5. CATEGORY RIBBON (Apple Style Device Ribbon) - EXPANDED
   ========================================================================== */
.tecno-category-ribbon {
  background: #FFFFFF;
  border: 1px solid var(--tecno-gray-border);
  border-radius: var(--tecno-radius-lg);
  padding: 20px 24px;
  margin: 0 auto 30px auto;
  box-shadow: var(--tecno-shadow-sm);
  width: 100%;
}
.tecno-category-ribbon-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tecno-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tecno-category-ribbon-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--tecno-gray-border);
}
.tecno-ribbon-track {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}
.tecno-ribbon-track::-webkit-scrollbar {
  height: 6px;
}
.tecno-ribbon-track::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 999px;
}
.tecno-ribbon-item {
  flex: 1 1 120px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  background: var(--tecno-gray-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--tecno-radius-md);
  padding: 16px 8px 12px 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tecno-ribbon-item img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.06));
}
.tecno-ribbon-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--tecno-text-main);
  line-height: 1.25;
}
.tecno-ribbon-item:hover {
  background: #FFFFFF;
  border-color: var(--tecno-primary);
  transform: translateY(-5px);
  box-shadow: 0 14px 28px -4px rgba(0, 71, 255, 0.16);
}
.tecno-ribbon-item:hover img {
  transform: scale(1.12);
}
.tecno-ribbon-item:hover span {
  color: var(--tecno-primary);
}

/* ==========================================================================
   6. HERO CAROUSEL (Sony Style High-Impact Cinematic Look)
   ========================================================================== */
#carousel {
  border-radius: var(--tecno-radius-lg);
  overflow: hidden;
  box-shadow: var(--tecno-shadow-md);
  margin-bottom: 35px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}
#carousel .carousel-item {
  position: relative;
  background: var(--tecno-dark);
}
#carousel .carousel-item figure {
  margin: 0;
  position: relative;
}
#carousel .carousel-item img {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
  opacity: 0.94;
}
#carousel .carousel-item .caption {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 620px;
  background: rgba(10, 15, 29, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 38px 44px;
  border-radius: var(--tecno-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}
#carousel .caption h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 14px 0;
  letter-spacing: -0.6px;
}
#carousel .caption p {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.55;
  margin-bottom: 22px;
}
.badge-tech {
  display: inline-block;
  background: rgba(0, 71, 255, 0.25);
  border: 1px solid var(--tecno-cyan);
  color: var(--tecno-cyan);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--tecno-radius-pill);
}
.btn-tech {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--tecno-primary), #1D4ED8) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 12px 28px !important;
  border-radius: var(--tecno-radius-pill) !important;
  border: none !important;
  box-shadow: var(--tecno-shadow-glow) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}
.btn-tech:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 16px 32px -4px rgba(0, 71, 255, 0.45) !important;
}

/* ==========================================================================
   7. 4 TRUST PILLARS
   ========================================================================== */
.tecno-trust-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}
.tecno-pillar {
  background: #FFFFFF;
  border: 1px solid var(--tecno-gray-border);
  border-radius: var(--tecno-radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--tecno-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tecno-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--tecno-shadow-md);
}
.tecno-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 71, 255, 0.08);
  color: var(--tecno-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.tecno-pillar-text h4 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--tecno-text-main);
}
.tecno-pillar-text p {
  margin: 0;
  font-size: 13px;
  color: var(--tecno-text-muted);
}

/* ==========================================================================
   8. PRODUCT GRIDS (5-6 Columns on Widescreen)
   ========================================================================== */
.products-section-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--tecno-text-main);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--tecno-gray-border);
  margin-left: 20px;
}

/* Widescreen Multi-Column Product Grid */
.products.row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.products.row > div,
.products .js-product,
.products .product,
.featured-products .products > div,
#products .products > div {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 20px !important;
}

@media (min-width: 1680px) {
  .products.row > div,
  .products .js-product,
  .products .product,
  .featured-products .products > div,
  #products .products > div {
    flex: 0 0 16.6666% !important;
    max-width: 16.6666% !important;
    width: 16.6666% !important;
  }
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .products.row > div,
  .products .js-product,
  .products .product,
  .featured-products .products > div,
  #products .products > div {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    width: 20% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products.row > div,
  .products .js-product,
  .products .product,
  .featured-products .products > div,
  #products .products > div {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .products.row > div,
  .products .js-product,
  .products .product,
  .featured-products .products > div,
  #products .products > div {
    flex: 0 0 33.3333% !important;
    max-width: 33.3333% !important;
    width: 33.3333% !important;
  }
}

@media (max-width: 575px) {
  .products.row > div,
  .products .js-product,
  .products .product,
  .featured-products .products > div,
  #products .products > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

/* Card aesthetics */
.product-miniature {
  background: #FFFFFF !important;
  border: 1px solid var(--tecno-gray-border) !important;
  border-radius: var(--tecno-radius-md) !important;
  padding: 16px !important;
  height: 100% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--tecno-shadow-sm) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  margin-bottom: 0 !important;
}
.product-miniature:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 71, 255, 0.4) !important;
  box-shadow: var(--tecno-shadow-md) !important;
}
.product-miniature .thumbnail-container {
  border: none !important;
  margin-bottom: 12px !important;
  overflow: hidden !important;
  border-radius: var(--tecno-radius-sm) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  background: #FAFAFA;
}
.product-miniature .thumbnail-container img {
  max-height: 175px !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}
.product-miniature:hover .thumbnail-container img {
  transform: scale(1.06) !important;
}
.product-miniature .product-title a {
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: var(--tecno-text-main) !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}
.product-miniature .product-title a:hover {
  color: var(--tecno-primary) !important;
}
.product-miniature .product-price-and-shipping {
  margin-top: 10px !important;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.product-miniature .price {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--tecno-primary) !important;
  letter-spacing: -0.5px !important;
}
.product-stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tecno-success);
  margin-top: 6px;
}

/* ==========================================================================
   9. CATEGORY LISTING & SIDEBAR (Faceted Search)
   ========================================================================== */
#left-column {
  background: #FFFFFF;
  border: 1px solid var(--tecno-gray-border);
  border-radius: var(--tecno-radius-md);
  padding: 20px;
  box-shadow: var(--tecno-shadow-sm);
}
#left-column .facet-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tecno-text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* ==========================================================================
   10. FOOTER (Sony Tech Deep Navy)
   ========================================================================== */
.footer-container {
  background: #060911 !important;
  color: #94A3B8 !important;
  padding: 50px 0 20px 0 !important;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-container h4, .footer-container h3, .footer-container .h3 {
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 20px !important;
}
.footer-container a {
  color: #94A3B8 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}
.footer-container a:hover {
  color: var(--tecno-cyan) !important;
}
.footer-payments-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin: 30px 0 20px 0;
  flex-wrap: wrap;
}
.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   11. MOBILE RESPONSIVENESS
   ========================================================================== */
.tecno-mobile-nav-toggle {
  cursor: pointer;
  padding: 8px;
  border-radius: var(--tecno-radius-sm);
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tecno-mobile-nav-toggle .menu {
  font-size: 26px;
  color: var(--tecno-text-main);
}

@media (max-width: 991px) {
  .tecno-topbar-perks { display: none; }
  .tecno-navbar-bar { display: none; } /* On mobile, main menu is in drawer */
  .tecno-search-wrapper { max-width: 100%; }
  .tecno-header-flex { flex-wrap: wrap; gap: 14px; }
  .tecno-search-wrapper { order: 3; width: 100%; }
  .tecno-trust-pillars { grid-template-columns: repeat(2, 1fr); }
  #carousel .carousel-item img { height: 320px !important; }
  #carousel .carousel-item .caption {
    padding: 16px 20px;
    max-width: 90%;
    left: 5%;
  }
  #carousel .caption h2 { font-size: 20px; }
  #carousel .caption p { display: none; }
  .tecno-ribbon-item { flex: 0 0 100px; min-width: 100px; }
}

@media (max-width: 576px) {
  .tecno-trust-pillars { grid-template-columns: 1fr; }
  .tecno-brand-text { font-size: 22px; }
  .tecno-brand-icon { width: 38px; height: 38px; font-size: 20px; }
  .blockcart { padding: 8px 12px !important; }
  .blockcart .cart-to-checkout { display: none; }
}
