/* ZORO TECH Premium Style Sheet */
/* Apple-inspired Modern Minimalist Dark Theme */

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

:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-secondary: #0F0F11;
  --bg-tertiary: #18181C;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A5;
  --text-muted: #62626A;
  --border-color: #1F1F24;
  --border-light: rgba(255, 255, 255, 0.07);
  --accent-color: #FFFFFF;
  --accent-hover: #E5E5E5;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #20BA5A;
  
  /* Glassmorphism */
  --glass-bg: rgba(15, 15, 17, 0.7);
  --glass-blur: blur(16px);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout dimensions */
  --header-height: 80px;
  --max-width: 1400px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #A0A0A5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.1); }
}

.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Premium Background Effects */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 70%);
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite;
}

.bg-glow-secondary {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 70%);
  bottom: 20%;
  right: 5%;
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 300;
  color: var(--text-secondary);
}

.logo-container {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000; /* Solid black to blend out logo background */
  mix-blend-mode: screen; /* Blend container itself with background */
  transition: var(--transition-smooth);
  animation: logoPulse 3s ease-in-out infinite alternate;
}

.logo-container:hover {
  transform: scale(1.15) rotate(15deg);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

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

@keyframes logoPulse {
  0% {
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle {
  display: none;
}

.phone-badge {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.phone-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.phone-badge a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.phone-badge a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-primary);
}

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

.btn-secondary {
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--text-primary);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-laptop-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: var(--transition-smooth);
}

.hero-laptop-wrap:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.hero-laptop-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Trust / USP Section */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.trust-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.trust-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.5rem;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Catalog Showcase */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.filter-group {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.filter-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.filter-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.filter-checkbox input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.filter-checkbox input:checked::after {
  content: '✓';
  color: var(--bg-primary);
  font-size: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/* Price Range Slider */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-inputs input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 0.85rem;
  text-align: center;
}

/* Catalog Search & Actions */
.catalog-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
}

.search-wrap input {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.search-wrap input:focus {
  border-color: var(--text-muted);
  outline: none;
}

.search-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-select {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  background-size: 18px;
}

/* Active Filter Chips */
.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
}

.chip button {
  cursor: pointer;
  color: var(--text-muted);
  font-weight: bold;
}

.chip button:hover {
  color: var(--text-primary);
}

/* Products Grid & Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 1rem;
}

.pagination-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.pagination-btn:hover:not([disabled]) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.pagination-btn.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.pagination-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

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

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--accent-color);
  color: var(--bg-primary);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  background: #101012;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.card-image-wrap img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 1rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.spec-item i {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.card-price-wrap {
  display: flex;
  flex-direction: column;
}

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

.price-current {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.card-actions {
  display: flex;
  gap: 0.5rem;
}

.card-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-btn-icon:hover {
  border-color: var(--text-muted);
  background-color: rgba(255,255,255,0.05);
}

.card-btn-icon.compare-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-primary);
}

/* Compare Drawer */
.compare-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-top: 1.5px solid var(--border-color);
  z-index: 900;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.compare-drawer.open {
  transform: translateY(0);
}

.compare-drawer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

.compare-items-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-grow: 1;
}

.compare-item-thumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
}

.compare-item-thumb img {
  width: 40px;
  height: 30px;
  object-fit: contain;
}

.compare-item-remove {
  background: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.compare-item-remove:hover {
  color: var(--text-primary);
}

.compare-drawer-actions {
  display: flex;
  gap: 1rem;
}

/* Modals (Comparison & Product Detail) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 2rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: var(--transition-smooth);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  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;
  z-index: 100;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--border-color);
  transform: scale(1.05);
}

/* Comparison Modal Table */
.comparison-table-wrap {
  padding: 3rem 2rem 2rem 2rem;
  overflow-y: auto;
}

.comparison-table-wrap h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.comparison-table tr:first-child th {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: 0;
  vertical-align: top;
}

.comparison-col-header {
  width: 25%;
}

.comparison-table tr:first-child .comparison-col-header {
  vertical-align: middle;
}

.comparison-prod-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comparison-prod-head img {
  height: 60px;
  object-fit: contain;
}

/* Product Detail Modal Specifics */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-height: 85vh;
  overflow: hidden;
}

.product-detail-visuals {
  background: #101012;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--border-color);
  position: relative;
}
/* Photo Slider Styles */
.detail-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.detail-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -webkit-overflow-scrolling: touch; /* Smooth swipe touch on iOS/Android */
}

.detail-slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.detail-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
}

.detail-slide img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 17, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
  left: 1rem;
}

.next-arrow {
  right: 1rem;
}

.detail-gallery-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
  width: 100%;
}

.detail-gallery-dot {
  width: 60px;
  height: 45px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition-fast);
}

.detail-gallery-dot.active {
  border-color: var(--text-primary);
}

.detail-gallery-dot img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.product-detail-info {
  padding: 3rem 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.product-detail-info .detail-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-detail-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.detail-pricing {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-price-current {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.detail-price-original {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.detail-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.detail-badge {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.detail-badge-success {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
  color: var(--whatsapp-color);
}

.detail-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.detail-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.detail-bullets li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.detail-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-primary);
  font-weight: bold;
}

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

.detail-specs-table td {
  padding: 0.65rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.detail-specs-table td:first-child {
  width: 35%;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-specs-table td:last-child {
  color: var(--text-primary);
}

.detail-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.detail-actions .btn {
  flex-grow: 1;
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.why-card {
  padding: 3rem;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(15,15,17,0.3) 100%);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonial Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #FFB800;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.author-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 4rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  display: flex;
  gap: 1.5rem;
}

.contact-detail-card .icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-detail-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-detail-card a {
  display: block;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.contact-detail-card a:hover {
  color: var(--text-primary);
}

/* Embedded Map container */
.map-container {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* WhatsApp Floating Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1) rotate(5deg);
}

.whatsapp-tooltip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.whatsapp-floating-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Channel Floating Widget (stacked above chat button) */
.wa-channel-float {
  position: fixed;
  bottom: calc(2rem + 70px); /* Stacks above the WhatsApp chat button */
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.wa-channel-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.wa-channel-float-btn:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

.wa-channel-tooltip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.wa-channel-float:hover .wa-channel-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Footer styling */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    display: none; /* Collapsed on mobile, handled dynamically later */
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Details Modal: Stacked Vertical Column Layout (Photos on Top, Details Below) */
  .modal-overlay {
    padding: 0; /* Full screen edge-to-edge overlay */
  }
  .modal-container {
    width: 100vw;
    height: 100vh;
    max-height: 100vh; /* Stretch to maximum screen bounds */
    border-radius: 0;
    border: none;
    overflow-y: auto;
    display: block; /* Allows vertical flow scrolling on mobile/tablet */
  }
  .modal-close-btn {
    top: 1rem;
    right: 1rem;
    background: rgba(15, 15, 17, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
  .product-detail-layout {
    display: flex;
    flex-direction: column;
    max-height: none;
    overflow: visible;
  }
  .product-detail-visuals {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0; /* Cover full edge-to-edge */
    width: 100%;
    height: auto;
  }
  .detail-slide {
    height: 340px; /* Taller visual area to show photos at maximum phone screen size */
  }
  .detail-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Full-frame fit, no cropping */
    padding: 0;
  }
  .slider-arrow {
    display: none !important; /* Touch swipes only on mobile/tablet */
  }
  .product-detail-info {
    padding: 1.5rem;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Styles */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }

  .mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
  }

  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .logo {
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
  }

  .header-actions {
    display: none;
  }

  header {
    height: 70px;
  }
  
  header.scrolled {
    height: 70px;
  }

  .container {
    padding: 0 1rem; /* Closer edge bounds on mobile */
  }

  .section {
    padding: 3.5rem 0; /* Compact section padding on mobile */
  }

  .products-grid {
    gap: 1rem; /* Reduced card spacing on mobile */
  }

  .product-card {
    border-radius: 8px; /* Tighter layout feel */
  }

  .card-body {
    padding: 1.15rem; /* Clean condensed body */
  }

  .hero {
    min-height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 3rem !important;
  }
  .hero h1 {
    font-size: 2.25rem !important;
    letter-spacing: -1px !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }
  .hero p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  .hero-tag {
    margin-bottom: 1.5rem !important;
    font-size: 0.75rem !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-laptop-wrap {
    transform: none;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-laptop-wrap:hover {
    transform: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .compare-drawer-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  .compare-drawer-actions {
    width: 100%;
  }
  .compare-drawer-actions .btn {
    flex-grow: 1;
  }
  .modal-overlay {
    padding: 1rem;
  }
}


/* Hero Shop visual styling */
.hero-shop-link {
  text-decoration: none;
  display: block;
}

.hero-shop-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition-smooth) !important;
}

.hero-shop-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-shop-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.95) 100%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition-smooth);
}

.hero-shop-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.hero-shop-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-shop-overlay p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Hover effects */
.hero-shop-link:hover .hero-shop-wrap {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

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

.shop-magnify-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(15, 15, 17, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 5;
}

.shop-magnify-overlay i {
  animation: magnifyPulse 1.8s infinite ease-in-out;
}

@keyframes magnifyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Hover effects */
.hero-shop-link:hover .hero-shop-wrap img {
  transform: scale(1.12);
}

.hero-shop-link:hover .shop-magnify-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-shop-link:hover .hero-shop-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.98) 100%);
}

@media (max-width: 768px) {
  .hero-shop-wrap {
    transform: none !important;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-shop-link:hover .hero-shop-wrap {
    transform: scale(1.02) !important;
  }
}

/* Product Categories Showcase Section */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-showcase-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.category-showcase-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.category-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.category-showcase-card:hover .category-card-icon {
  transform: rotate(-10deg) scale(1.1);
}

.category-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
}

.category-card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Color palettes for a premium multi-category design */
.category-showcase-card:nth-child(4n+1) .category-card-icon {
  background: linear-gradient(135deg, #00d2ff 0%, rgba(0, 210, 255, 0.15) 100%);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}
.category-showcase-card:nth-child(4n+2) .category-card-icon {
  background: linear-gradient(135deg, #ff007f 0%, rgba(255, 0, 127, 0.15) 100%);
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.2);
}
.category-showcase-card:nth-child(4n+3) .category-card-icon {
  background: linear-gradient(135deg, #7f00ff 0%, rgba(127, 0, 255, 0.15) 100%);
  box-shadow: 0 4px 15px rgba(127, 0, 255, 0.2);
}
.category-showcase-card:nth-child(4n+4) .category-card-icon {
  background: linear-gradient(135deg, #39ff14 0%, rgba(57, 255, 20, 0.15) 100%);
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.2);
}

.category-showcase-card:nth-child(4n+1):hover .category-card-icon {
  background: #00d2ff;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}
.category-showcase-card:nth-child(4n+2):hover .category-card-icon {
  background: #ff007f;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
}
.category-showcase-card:nth-child(4n+3):hover .category-card-icon {
  background: #7f00ff;
  box-shadow: 0 0 20px rgba(127, 0, 255, 0.6);
}
.category-showcase-card:nth-child(4n+4):hover .category-card-icon {
  background: #39ff14;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

/* Catalog Category Navigation Tabs */
.catalog-tabs-container {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch; /* Smooth kinetic scroll on iOS */
}

.catalog-tabs-container::-webkit-scrollbar {
  height: 4px;
}

.catalog-tabs-container::-webkit-scrollbar-track {
  background: transparent;
}

.catalog-tabs-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 2px;
}

.catalog-tab {
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.catalog-tab:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.catalog-tab.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

/* Instagram Reels Gallery */
.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.reel-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.reel-card-media {
  height: 280px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.reel-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
  transition: var(--transition-smooth);
}

.reel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 39, 67, 0.35);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.15);
}

.reel-card:hover .reel-card-media img {
  transform: scale(1.08);
}

.reel-card:hover .reel-overlay {
  background: linear-gradient(180deg, rgba(220, 39, 67, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.reel-card:hover .reel-play-btn {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 25px rgba(220, 39, 67, 0.75);
}

.reel-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reel-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.reel-card-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.reel-insta-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #cc2366;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   DEDICATED PRODUCT DETAIL PAGE (MOBILE-OPTIMIZED Android & iOS)
   ========================================================================== */

.back-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  width: fit-content;
}

.back-link-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.product-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 1rem;
}

/* Visuals Slider Styles */
.product-visuals-card {
  background: #101012;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-visuals-card .detail-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-visuals-card .detail-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
}

.product-visuals-card .detail-slider-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

.product-visuals-card .detail-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.product-visuals-card .detail-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.product-visuals-card .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 15, 17, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  opacity: 0; /* Hidden by default on desktop, visible on hover */
}

.product-visuals-card:hover .slider-arrow {
  opacity: 1;
}

.product-visuals-card .slider-arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.product-visuals-card .prev-arrow {
  left: 1rem;
}

.product-visuals-card .next-arrow {
  right: 1rem;
}

.product-visuals-card .detail-gallery-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.product-visuals-card .detail-gallery-dot {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  padding: 4px;
}

.product-visuals-card .detail-gallery-dot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-visuals-card .detail-gallery-dot.active {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

/* Info Column Details */
.product-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info-brand {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.product-info-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.product-info-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.5rem;
}

.product-info-price-current {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-info-price-original {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.product-info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-info-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-info-badge-success {
  border-color: rgba(57, 255, 20, 0.2);
  background: rgba(57, 255, 20, 0.02);
  color: #39ff14;
}

.product-info-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-info-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  font-weight: 600;
  font-size: 0.95rem;
}

.product-info-actions .share-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info-actions .share-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

/* Specs & Highlights Tables */
.product-section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  color: var(--text-primary);
  margin-top: 1.5rem;
}

.product-bullets-list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.product-specs-table-wrap {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.product-specs-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.product-specs-table-wrap td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.product-specs-table-wrap tr:last-child td {
  border-bottom: none;
}

.product-specs-table-wrap td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  width: 35%;
}

.product-specs-table-wrap td:last-child {
  color: var(--text-secondary);
}

/* Sharing Modal & Popup Styles */
.share-modal-container {
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  background: rgba(15, 15, 17, 0.85) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  opacity: 0;
  transition: var(--transition-smooth);
}

.modal-overlay.open .share-modal-container {
  transform: scale(1);
  opacity: 1;
}

.share-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.share-option-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-fast);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.share-option-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.share-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.share-option-card:hover .share-option-icon {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.share-option-card.share-wa:hover .share-option-icon {
  background: var(--whatsapp-color);
  color: #fff;
}

.share-option-card.share-wa:hover {
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.02);
}

/* Toast micro-interaction notices */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   MOBILE MEDIA QUERY OVERRIDES (Android & iOS)
   ========================================================================== */
@media (max-width: 992px) {
  .product-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product-page-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  
  .product-page-wrapper .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .product-visuals-card {
    border-radius: 12px;
    padding: 1rem 0.5rem; /* Reduced padding around image to make it visually dominant */
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-left: none;
    border-right: none;
    background: #0d0d0f; /* Slightly deeper tone to unify on mobile screen */
  }

  .product-visuals-card .detail-slider-wrapper {
    margin: 0;
  }

  .product-visuals-card .detail-slide {
    height: 440px; /* Increased image height by ~46% for visual dominance */
  }

  .product-visuals-card .detail-slide img {
    max-width: 95%;
    max-height: 95%;
  }

  .product-visuals-card .slider-arrow {
    display: none !important; /* Swipe gesture only on mobile screen */
  }
  
  .product-visuals-card .detail-gallery-nav {
    gap: 1rem; /* Improved tap spacing gap */
    margin-top: 1.5rem;
  }

  .product-visuals-card .detail-gallery-dot {
    width: 68px; /* Increased thumbnail size by ~24% */
    height: 68px;
    border-radius: 10px;
    padding: 5px;
  }
  
  .product-info-title {
    font-size: 1.95rem; /* Title slightly larger for visual hierarchy */
    line-height: 1.2;
  }

  .product-info-price-current {
    font-size: 1.75rem; /* Current price slightly larger */
  }

  .product-info-actions {
    grid-template-columns: 1fr; /* Stack actions buttons vertically on mobile for thumb reachability */
    gap: 0.75rem;
  }

  .product-info-actions .btn {
    height: 48px;
    width: 100%;
  }
  
  .product-info-actions .share-btn {
    width: 100%; /* Make share button full width on mobile stack view for ease of thumb reach */
  }
  
  .product-section-title {
    font-size: 1.4rem; /* Section titles slightly larger for scanning */
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .product-specs-table-wrap td {
    padding: 1.1rem 1.25rem; /* Increased row height and vertical spacing */
    font-size: 17px !important; /* Increased Technical Specifications labels/values font size significantly */
    line-height: 1.4;
  }
  
  .product-specs-table-wrap td:first-child {
    font-size: 17px !important; /* Apply to label column too */
  }
}

