:root{ 
  --metal-1:#B0B0B0; 
  --metal-2:#A6A6A6; 
  --anthracite:#2B2B2B; 
  --blue:#3A89C9; 
  --orange:#E67E22; 
  --bg:#FFFFFF; 
  --text:#1a1a1a; 
}

*{ 
  box-sizing:border-box;
  -webkit-tap-highlight-color: transparent;
}

html,body{ 
  margin:0; 
  padding:0; 
  width: 100%;
  overflow-x: hidden;
  background: 
    radial-gradient(ellipse at top left, rgba(176,176,176,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(166,166,166,0.25) 0%, transparent 60%),
    radial-gradient(circle at center, rgba(43,43,43,0.15) 0%, transparent 70%),
    linear-gradient(135deg, rgba(176,176,176,0.2) 0%, rgba(43,43,43,0.1) 25%, rgba(166,166,166,0.2) 50%, rgba(176,176,176,0.1) 75%, rgba(43,43,43,0.2) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(176,176,176,0.08) 20px, rgba(176,176,176,0.08) 22px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(166,166,166,0.08) 20px, rgba(166,166,166,0.08) 22px),
    conic-gradient(from 0deg at 50% 50%, rgba(176,176,176,0.1) 0deg, rgba(43,43,43,0.05) 90deg, rgba(166,166,166,0.1) 180deg, rgba(176,176,176,0.05) 270deg, rgba(176,176,176,0.1) 360deg),
    #f5f5f5;
  color:var(--text); 
  font-family: 'Montserrat', 'Roboto', 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.container{ 
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Container responsive adjustments */
@media (max-width: 1200px) {
  .container { 
    max-width: 1140px;
    padding: 0 0.9rem;
  }
}

@media (max-width: 992px) {
  .container { 
    max-width: 960px;
    padding: 0 0.8rem;
  }
}

@media (max-width: 768px) {
  .container { 
    max-width: 720px;
    padding: 0 0.75rem;
  }
}

@media (max-width: 576px) {
  .container { 
    max-width: 540px;
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .container { 
    padding: 0 0.25rem;
  }
}

/* Top Banner */
.top-banner{ background:linear-gradient(90deg, var(--metal-1), var(--metal-2)); color:#000; font-size:.9rem; padding:.5rem 0; }
.banner-content{ display:flex; justify-content:space-between; align-items:center; }
.banner-close{ background:none; border:none; font-size:1.5rem; cursor:pointer; color:#555; padding:0 .5rem; }

/* Header - Mobile First Responsive */
.site-header{ 
  background: 
    linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 50%, rgba(71, 85, 105, 0.95) 100%),
    radial-gradient(ellipse at top, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-bottom:2px solid #1e293b; 
  position:sticky; 
  top:0; 
  z-index:1000; 
  box-shadow:0 2px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1); 
  backdrop-filter: blur(10px);
  width: 100%;
}

.header-top{ 
  display:flex; 
  align-items:center; 
  justify-content: space-between;
  gap:1rem; 
  padding:0.75rem 0;
  flex-wrap: wrap;
}

.brand {
  flex-shrink: 0;
}

.logo{ 
  display:flex; 
  align-items:center; 
  gap:.5rem; 
  font-weight:700; 
  color:white; 
  text-decoration:none; 
  font-size:1.2rem;
  white-space: nowrap;
}

.logo-icon{ font-size:1.5rem; }

.search-box{ 
  flex:1; 
  max-width:400px;
  min-width: 200px;
}

.search-box form{ 
  display:flex; 
  background:rgba(255,255,255,0.1); 
  border-radius:.4rem; 
  border:1px solid rgba(255,255,255,0.2);
  width: 100%;
}

.search-box input{ 
  flex:1; 
  border:none; 
  background:none; 
  padding:.6rem 1rem; 
  font-size:.95rem;
  min-width: 0;
  color: white;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.7);
}

.search-box button{ 
  background:var(--orange); 
  color: white;
  border:none; 
  padding:0 1rem; 
  cursor:pointer; 
  font-size:1.1rem;
  border-radius: 0 .4rem .4rem 0;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #d35400;
}

.header-contact{ 
  display:flex; 
  align-items:center;
  gap: 1rem;
  flex-wrap: wrap;
}

.phone-link, .mail-link, .wa-link{ 
  display:flex; 
  align-items:center; 
  gap:.3rem; 
  color:white; 
  text-decoration:none; 
  font-weight:500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.phone-icon{ font-size:1.2rem; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
  transition: color 0.3s ease;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  outline: none;
  position: relative;
}

.mobile-menu-toggle:hover {
  background: none;
  border: none;
  color: white;
}

/* Hamburger icon wrapper */
#menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hamburger icon lines */
.mobile-menu-toggle .line1,
.mobile-menu-toggle .line2,
.mobile-menu-toggle .line3 {
  width: 24px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 1.5px rgba(0,0,0,0.7));
}

/* Header responsive adjustments */
@media (max-width: 992px) {
  .header-contact {
    gap: 0.75rem;
  }
  
  .phone-link, .mail-link, .wa-link {
    font-size: 0.85rem;
  }
  
  .search-box {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding: 0.5rem 0 !important;
  }
  
  .header-top .container {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: space-between !important;
  }
  
  .brand {
    order: 1;
    flex: 0 0 auto;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .logo-text {
    font-size: 1rem !important;
    display: inline !important;
  }
  
  .logo-icon {
    font-size: 1.2rem !important;
  }
  
  .search-box {
    order: 3;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin-top: 0.5rem;
  }
  
  .header-contact {
    order: 2;
    display: flex !important;
    gap: 0.5rem !important;
    flex-wrap: wrap;
    justify-content: flex-end !important;
  }
  
  .header-contact a {
    font-size: 0.75rem !important;
    padding: 0.25rem !important;
  }
  
  .header-contact a span:last-child {
    display: none !important;
  }
  
  .header-contact .phone-text {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block !important;
  }
  
  .main-nav .nav-menu {
    display: none !important;
  }
  
  .lang-switcher {
     order: 4;
     position: absolute;
     top: 0.5rem;
     right: 1rem;
   }
   
   /* Mobile Navigation Menu */
   #mobile-nav {
     display: none;
     flex-direction: column !important;
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
     box-shadow: 0 4px 6px rgba(0,0,0,0.1);
     z-index: 1000;
   }
   
   #mobile-nav.active {
     display: flex !important;
   }
   
   #mobile-nav ul {
     width: 100%;
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
   }
   
   #mobile-nav li {
     width: 100%;
     border-bottom: 1px solid rgba(255,255,255,0.1);
   }
   
   #mobile-nav li:last-child {
     border-bottom: none;
   }
   
   #mobile-nav a {
     padding: 1rem 1.5rem !important;
     text-align: center !important;
     display: block !important;
     color: white !important;
     text-decoration: none !important;
     transition: background-color 0.3s ease;
   }
   
   #mobile-nav a:hover {
     background-color: rgba(255,255,255,0.1) !important;
   }
 }

@media (max-width: 576px) {
  .header-top {
    padding: 0.4rem 0;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-text {
    display: none;
  }
  
  .header-contact {
    gap: 0.3rem;
  }
  
  .search-box input {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .search-box button {
    padding: 0 0.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-contact a {
    padding: 0.25rem;
  }
  
  .header-contact a span:first-child {
    font-size: 1rem;
  }
}

/* Navigation - Mobile First Responsive */
.main-nav{ 
  background: 
    linear-gradient(135deg, rgba(248,248,248,0.9) 0%, rgba(240,240,240,0.9) 25%, rgba(235,235,235,0.9) 50%, rgba(240,240,240,0.9) 75%, rgba(248,248,248,0.9) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(176,176,176,0.05) 50px, rgba(176,176,176,0.05) 52px);
  padding:.5rem 0; 
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}

.nav-menu{ 
  list-style:none; 
  display:flex; 
  gap:0; 
  margin:0; 
  padding:0;
  flex-wrap: wrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu a{ 
  display:block; 
  padding:.7rem 1.2rem; 
  text-decoration:none; 
  color:var(--anthracite); 
  font-weight:500; 
  transition:all .3s;
  white-space: nowrap;
}

.nav-menu a.active, .nav-menu a:hover{ 
  background:var(--anthracite); 
  color:#fff;
  border-radius: 4px;
}

.has-dropdown{ position:relative; }

.mega-menu{ 
  display:none; 
  position:absolute; 
  top:100%; 
  left:0; 
  background:#fff; 
  box-shadow:0 5px 20px rgba(0,0,0,0.1); 
  border-radius:.4rem; 
  min-width:250px;
  z-index: 1000;
}

.has-dropdown:hover .mega-menu{ display:block; }

.mega-menu-inner{ padding:1rem; }

.mega-column h3{ 
  font-size:1rem; 
  color:var(--anthracite); 
  margin:0 0 .5rem;
}

.mega-column ul{ 
  list-style:none; 
  padding:0; 
  margin:0;
}

.mega-column a{ 
  display:block; 
  padding:.4rem 0; 
  color:#666; 
  text-decoration:none;
}

.mega-column a:hover{ color:var(--blue); }

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 999;
  }
  
  .main-nav.mobile-nav-open {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .nav-menu li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 0;
  }
  
  .has-dropdown .mega-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: #f8f9fa;
    border-radius: 0;
    margin: 0;
  }
  
  .has-dropdown.mobile-dropdown-open .mega-menu {
    display: block;
  }
  
  .mega-menu-inner {
    padding: 0.5rem 1.5rem 1rem;
  }
  
  .mega-column a {
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .nav-menu a {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .mega-menu-inner {
    padding: 0.5rem 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .nav-menu a {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
  }
}

/* Language Switcher */
.lang-menu{ list-style:none; display:flex; gap:.3rem; margin:0; padding:0; }
.lang-menu a, .lang-menu .current{ font-size:.85rem; color:var(--anthracite); text-decoration:none; padding:.3rem .5rem; border:1px solid #ddd; border-radius:.3rem; background:#fafafa; }
.lang-menu .current{ background:linear-gradient(135deg, var(--metal-1), var(--metal-2)); border-color:#999; color:#fff; }

/* Product Gallery */
.product-gallery .thumbs img{ cursor:pointer; transition:transform .2s ease; }
.product-gallery .thumbs img:hover{ transform:scale(1.03); }

/* Story Modules */
/* Story section container - make background fully transparent */
.story-modules{ 
  padding:1.25rem 0; 
  background: transparent !important;
  border-bottom:0;
  position:relative;
}
.story-modules::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: none !important;
  pointer-events:none;
  z-index:0;
}
.story-modules > * {
  position:relative;
  z-index:1;
}
/* legacy horizontal scroller (kept for backward-compat) */
.story-slider{ display:flex; gap:1.5rem; overflow-x:auto; padding:.5rem 0; }

/* New circular story badge styles */
.story-item{ flex-shrink:0; text-align:center; cursor:pointer; width:104px; margin:0 auto; }
.story-badge{ 
  width:84px; height:84px; border-radius:50%; padding:3px; 
  /* Metallic ring with subtle radial highlight */
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    conic-gradient(from 220deg, #f5f5f5 0%, var(--metal-2) 22%, #f5f5f5 50%, var(--metal-1) 72%, #f5f5f5 100%);
  display:grid; place-items:center; margin:0 auto .5rem; 
  border:1px solid #c9cfd6;
  box-shadow:0 1px 6px rgba(0,0,0,0.06);
}
.story-photo{ width:100%; height:100%; border-radius:50%; background-size:cover; background-position:center; background-color:#fff; border:2px solid #fff; box-shadow:inset 0 1px 3px rgba(0,0,0,0.06); transition:transform .2s ease; }
.story-label{ font-size:.85rem; color:var(--anthracite); font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100px; margin:.25rem auto 0; }
.story-item:hover .story-photo{ transform:scale(1.03); }
/* subtle brand glow on hover */
.story-item:hover .story-badge{ box-shadow:0 0 0 4px rgba(58,137,201,.12), 0 2px 10px rgba(0,0,0,.10); }

/* Hide title to match reference strip style */
.story-modules .section-title{ display:none; }

/* Story carousel tweaks */
.story-carousel .carousel-btn{ display:none; }
.story-carousel .carousel-viewport{ margin:0; }
.story-carousel .carousel-track{ gap:10px; }
.story-carousel .carousel-slide{ padding:0 .5rem; }

/* Ring color variants aligned to site style (mostly metallic; blue/amber as accents) */
.story-badge.ring-pink,
.story-badge.ring-green,
.story-badge.ring-purple,
.story-badge.ring-cyan,
.story-badge.ring-teal{
  background:conic-gradient(
    from 220deg,
    #f5f5f5 0%, var(--metal-2) 22%, #f5f5f5 50%, var(--metal-1) 72%, #f5f5f5 100%
  );
}
.story-badge.ring-blue{
  background:conic-gradient(#cfe4f6, #3A89C9, #cfe4f6);
}
.story-badge.ring-amber,
.story-badge.ring-orange{
  background:conic-gradient(#ffe2c6, var(--orange), #ffe2c6);
}

/* Hero Slider */
.hero-slider{ 
  position:relative; 
  height:520px; 
  overflow:hidden;
  width: 100% !important;
  max-width: 100% !important;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(58,137,201,0.2) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 70%, rgba(230,126,34,0.15) 0%, transparent 70%),
    radial-gradient(circle at center, rgba(43,43,43,0.1) 0%, transparent 80%),
    linear-gradient(135deg, rgba(176,176,176,0.15) 0%, rgba(43,43,43,0.08) 25%, rgba(166,166,166,0.15) 50%, rgba(176,176,176,0.08) 75%, rgba(43,43,43,0.15) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(176,176,176,0.05) 30px, rgba(176,176,176,0.05) 32px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(166,166,166,0.05) 30px, rgba(166,166,166,0.05) 32px),
    conic-gradient(from 45deg at 50% 50%, rgba(176,176,176,0.08) 0deg, rgba(43,43,43,0.04) 90deg, rgba(166,166,166,0.08) 180deg, rgba(176,176,176,0.04) 270deg, rgba(176,176,176,0.08) 360deg);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}
.slide{ 
  position:absolute; 
  width:100%; 
  height:100%; 
  display:flex; 
  align-items:center; 
  opacity:0; 
  visibility:hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  transform: translateX(100%);
}
.slide.active{ 
  opacity:1; 
  visibility:visible;
  transform: translateX(0);
}
.slide-bg{ position:absolute; inset:0; z-index:0; }
.hero-content{ position:relative; z-index:1; color:#fff; text-align:center; }
.hero-title{ font-size:2.5rem; margin:0 0 1rem; text-shadow:2px 2px 4px rgba(0,0,0,0.3); }

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}
.slider-dot:hover {
  background: rgba(255,255,255,0.8);
}
.hero-subtitle{ font-size:1.2rem; margin:0 0 2rem; opacity:.95; }

/* Slider Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.slider-nav:hover {
  background: rgba(0,0,0,0.6);
  transform: translateY(-50%) scale(1.1);
}
.slider-nav.prev {
  left: 20px;
}
.slider-nav.next {
  right: 20px;
}
@media (max-width: 768px) {
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .slider-nav.prev {
    left: 10px;
  }
  .slider-nav.next {
    right: 10px;
  }
}
.hero-buttons{ display:flex; gap:1rem; justify-content:center; }
.btn{ display:inline-block; padding:.75rem 1.5rem; border-radius:.4rem; text-decoration:none; font-weight:500; transition:all .3s; }
.btn-primary{ background:var(--blue); color:#fff; }
.btn-primary:hover{ background:#2a6fa0; transform:translateY(-2px); }
.btn-secondary{ background:#fff; color:var(--anthracite); }
.btn-secondary:hover{ background:#f0f0f0; }
.btn-outline{ border:2px solid var(--anthracite); color:var(--anthracite); background:transparent; }
.btn-outline:hover{ background:var(--anthracite); color:#fff; }

/* Categories & Products */
.featured-categories, .featured-products{ 
  padding:3rem 0;
  position:relative;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
.featured-categories::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(176,176,176,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(166,166,166,0.12) 0%, transparent 60%),
    radial-gradient(circle at center, rgba(43,43,43,0.08) 0%, transparent 70%),
    linear-gradient(135deg, rgba(176,176,176,0.08) 0%, rgba(43,43,43,0.04) 50%, rgba(166,166,166,0.08) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(176,176,176,0.03) 40px, rgba(176,176,176,0.03) 42px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(166,166,166,0.03) 40px, rgba(166,166,166,0.03) 42px);
  pointer-events:none;
  z-index:0;
}
.featured-categories > *, .featured-products > * {
  position:relative;
  z-index:1;
}
.section-title{ 
  font-size:1.8rem; 
  color:var(--anthracite); 
  text-align:center; 
  margin:0 0 2rem; 
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 1rem !important;
  box-sizing: border-box !important;
}

/* Section title responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem !important;
    margin: 0 0 1.5rem !important;
    padding: 0 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.3rem !important;
    margin: 0 0 1rem !important;
  }
}

/* Category filters responsive */
.category-filters {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  padding: 0.5rem !important;
  box-sizing: border-box !important;
}

.category-filters a {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

@media (max-width: 768px) {
  .category-filters {
    justify-content: flex-start !important;
    padding: 0.5rem 0 !important;
  }
  
  .category-filters a {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.7rem !important;
  }
}

@media (max-width: 480px) {
  .category-filters a {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.6rem !important;
  }
}
.category-grid{ 
  display:grid !important; 
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)) !important; 
  gap:2rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Category Grid Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap:1.5rem !important;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap:1.5rem !important;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns:1fr !important;
    gap:1rem !important;
  }
}

/* Generic Carousel - Responsive */
.carousel{ position:relative; }
.carousel-viewport{ overflow:hidden; }
.carousel-track{ display:flex; gap:0; transition:transform .4s ease; will-change:transform; }
.carousel-slide{ flex:0 0 calc(100% / var(--items, 3)); padding:0 1rem; box-sizing:border-box; }
.carousel .carousel-viewport{ margin:0 -1rem; }
.carousel-btn{ position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; border:1px solid #e2e8f0; background:#fff; color:#475569; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(0,0,0,0.12); z-index:5; }
.carousel-btn:hover{ background:#f8fafc; }
.carousel-btn:disabled{ opacity:.5; cursor:default; }
.carousel-btn.prev{ left:-12px; }
.carousel-btn.next{ right:-12px; }

/* Carousel responsive breakpoints */
@media (max-width: 1024px) {
  /* Respect JS-defined --items instead of forcing a fixed count */
  .carousel-slide{ flex:0 0 calc(100% / var(--items, 2)); }
}

@media (max-width: 768px) {
  /* Show multiple story items on mobile if --items is set (e.g., 4 for stories) */
  .carousel-slide{ 
    flex:0 0 calc(100% / var(--items, 1)); 
    padding:0 0.75rem;
  }
  .carousel .carousel-viewport{ margin:0 -0.75rem; }
  .carousel-btn{ width:36px; height:36px; }
}

@media (max-width: 640px){
  .carousel-slide{ padding:0 .5rem; }
  .carousel .carousel-viewport{ margin:0 -.5rem; }
  .carousel-btn{ width:32px; height:32px; font-size:0.8rem; }
}

@media (max-width: 480px) {
  .carousel-btn.prev{ left:-8px; }
  .carousel-btn.next{ right:-8px; }
}

/* Products Grid - Responsive Layout */
.products-grid{ 
  display:grid !important; 
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)) !important; 
  gap:2rem !important; 
  margin-bottom:3rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .products-grid{ 
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)) !important; 
    gap:1.8rem !important;
  }
}

@media (max-width: 992px) {
  .products-grid{ 
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)) !important; 
    gap:1.5rem !important;
  }
}

@media (max-width: 768px) {
  .products-grid{ 
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)) !important; 
    gap:1.5rem !important;
  }
}

@media (max-width: 640px) {
  .products-grid{ 
    grid-template-columns:1fr !important; 
    gap:1.5rem !important; 
  }
}

@media (max-width: 480px) {
  .products-grid{ 
    gap:1rem !important; 
  }
}

/* Card Components - Responsive */
.category-card, .product-card{ 
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 25%, rgba(241,245,249,0.9) 50%, rgba(248,250,252,0.95) 75%, rgba(255,255,255,0.9) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(176,176,176,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(166,166,166,0.08) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(176,176,176,0.02) 25px, rgba(176,176,176,0.02) 26px);
  border-radius:.5rem !important; 
  overflow:hidden !important; 
  box-shadow:
    0 2px 8px rgba(0,0,0,0.08),
    0 8px 24px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 0 20px rgba(176,176,176,0.03);
  border:1px solid rgba(176,176,176,0.15);
  transition:all .3s; 
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 400px !important;
}

/* Card image responsive */
.category-image, .product-image {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
}

.product-image-container {
  height: 200px !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.product-image-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Card content responsive */
.category-card h3, .product-card h3 {
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  margin: 1rem !important;
  padding: 0 !important;
}

.category-card p, .product-card p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 0 1rem 1rem !important;
  padding: 0 !important;
}

/* Product card content layout */
.product-card > div:last-child {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Mobile card adjustments */
@media (max-width: 768px) {
  .category-card, .product-card {
    margin: 0 !important;
  }
  
  .category-image, .product-image, .product-image-container {
    height: 180px !important;
  }
  
  .category-card h3, .product-card h3 {
    font-size: 1rem !important;
    margin: 0.8rem !important;
  }
  
  .category-card p, .product-card p {
    font-size: 0.85rem !important;
    margin: 0 0.8rem 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .category-image, .product-image, .product-image-container {
    height: 160px !important;
  }
  
  .category-card h3, .product-card h3 {
    font-size: 0.95rem !important;
    margin: 0.7rem !important;
  }
  
  .category-card p, .product-card p {
    font-size: 0.8rem !important;
    margin: 0 0.7rem 0.7rem !important;
  }
}

.category-card:hover, .product-card:hover{ 
  transform:translateY(-8px) scale(1.02); 
  box-shadow:
    0 12px 40px rgba(0,0,0,0.15),
    0 6px 20px rgba(58,137,201,0.12),
    0 0 0 1px rgba(58,137,201,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 0 30px rgba(176,176,176,0.05);
  border-color:rgba(58,137,201,0.25);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 25%, rgba(241,245,249,0.95) 50%, rgba(248,250,252,0.98) 75%, rgba(255,255,255,0.95) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(58,137,201,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(230,126,34,0.03) 0%, transparent 60%);
}

.category-image, .product-image{ 
  height:200px; 
  background-size:cover; 
  background-position:center;
  width: 100%;
}

.category-card h3, .product-card h3{ 
  padding:1rem 1rem .5rem; 
  margin:0; 
  color:var(--anthracite);
  font-size: 1.1rem;
  line-height: 1.3;
}

.category-card p, .product-desc{ 
  padding:0 1rem 1rem; 
  color:#666; 
  font-size:.95rem;
  line-height: 1.4;
}

.btn-link{ 
  display:inline-block; 
  padding:.5rem 1rem; 
  color:var(--blue); 
  text-decoration:none; 
  font-weight:500;
  transition: all 0.3s ease;
}

.btn-link:hover{ color:var(--orange); }
.product-card .btn{ margin:0 1rem 1rem; }

/* Card responsive adjustments */
@media (max-width: 768px) {
  .category-card:hover, .product-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .category-image, .product-image {
    height: 180px;
  }
  
  .category-card h3, .product-card h3 {
    font-size: 1rem;
    padding: 0.8rem 0.8rem 0.4rem;
  }
  
  .category-card p, .product-desc {
    padding: 0 0.8rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .product-card .btn {
    margin: 0 0.8rem 0.8rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .category-image, .product-image {
    height: 160px;
  }
  
  .category-card h3, .product-card h3 {
    font-size: 0.95rem;
    padding: 0.7rem 0.7rem 0.3rem;
  }
  
  .category-card p, .product-desc {
    padding: 0 0.7rem 0.7rem;
    font-size: 0.85rem;
  }
  
  .product-card .btn {
    margin: 0 0.7rem 0.7rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .category-card, .product-card {
    border-radius: 0.4rem;
  }
  
  .category-image, .product-image {
    height: 140px;
  }
}

/* Pagination Styles - Responsive */
.pagination{ 
  display:flex; 
  justify-content:center; 
  align-items:center; 
  gap:.5rem; 
  margin:3rem 0;
  flex-wrap: wrap;
}

.pagination a, .pagination span{ 
  padding:.75rem 1rem; 
  border-radius:8px; 
  text-decoration:none; 
  font-weight:500; 
  transition:all .3s ease;
  min-width: 44px;
  text-align: center;
}

.pagination a{ 
  background:#f8fafc; 
  border:1px solid #e2e8f0; 
  color:#475569; 
}

.pagination a:hover{ background:#e2e8f0; }

.pagination .current{ 
  background:linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); 
  color:white; 
  font-weight:600; 
}

/* Pagination mobile adjustments */
@media (max-width: 768px) {
  .pagination {
    gap: 0.3rem;
    margin: 2rem 0;
  }
  
  .pagination a, .pagination span {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    min-width: 40px;
  }
}

@media (max-width: 576px) {
  .pagination {
    gap: 0.2rem;
  }
  
  .pagination a, .pagination span {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
    min-width: 36px;
  }
}

/* Pages - Responsive */
.page{ 
  padding:2rem 0; 
  min-height:400px;
}

.page h1{ 
  color:var(--anthracite);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Page responsive adjustments */
@media (max-width: 768px) {
  .page {
    padding: 1.5rem 0;
    min-height: 300px;
  }
  
  .page h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .page {
    padding: 1rem 0;
  }
  
  .page h1 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

/* Footer - Responsive */
.site-footer{ 
  margin-top:3rem; 
  background:
    radial-gradient(ellipse at 30% 0%, rgba(58,137,201,0.12) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 0%, rgba(230,126,34,0.08) 0%, transparent 70%),
    radial-gradient(circle at center bottom, rgba(43,43,43,0.06) 0%, transparent 80%),
    linear-gradient(180deg, rgba(248,250,252,0.9) 0%, rgba(241,245,249,0.95) 25%, rgba(226,232,240,0.98) 50%, rgba(203,213,225,0.95) 75%, rgba(148,163,184,0.9) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(176,176,176,0.04) 50px, rgba(176,176,176,0.04) 52px),
    repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(166,166,166,0.04) 50px, rgba(166,166,166,0.04) 52px),
    conic-gradient(from 180deg at 50% 100%, rgba(176,176,176,0.06) 0deg, rgba(43,43,43,0.03) 90deg, rgba(166,166,166,0.06) 180deg, rgba(176,176,176,0.03) 270deg, rgba(176,176,176,0.06) 360deg);
  border-top:3px solid rgba(176,176,176,0.3); 
  padding:1.5rem 0; 
  color:#555; 
  text-align:center;
  position:relative;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.site-footer::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; height:2px;
  background:
    linear-gradient(90deg, transparent, rgba(58,137,201,0.4) 25%, rgba(176,176,176,0.6) 50%, rgba(230,126,34,0.4) 75%, transparent),
    linear-gradient(90deg, rgba(176,176,176,0.2), rgba(166,166,166,0.3) 50%, rgba(176,176,176,0.2));
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 2rem;
    padding: 1.2rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .site-footer {
    margin-top: 1.5rem;
    padding: 1rem 0;
    font-size: 0.85rem;
  }
}

/* Form Elements - Responsive */
form {
  width: 100%;
  max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

button,
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 44px;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: #2a6fa0;
  transform: translateY(-1px);
}

/* Search form responsive */
.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.search-form input {
  flex: 1;
  min-width: 0;
}

.search-form button {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
}

/* Form responsive adjustments */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="search"],
  textarea,
  select {
    padding: 0.6rem;
    font-size: 0.95rem;
  }
  
  button,
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    min-height: 42px;
  }
  
  .search-form {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="search"],
  textarea,
  select {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  
  button,
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-height: 40px;
  }
  
  .search-form {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* About Page Styles */
.about-hero{
  background: var(--about-hero-bg, linear-gradient(135deg, #1e293b 0%, #334155 100%));
  color:#fff;
  padding:4rem 0;
  margin-bottom:3rem;
  background-size: cover;
  background-position: center;
}
.about-hero-title{
  font-size:3rem;
  font-weight:700;
  margin:0 0 1rem 0;
  text-shadow:2px 2px 4px rgba(0,0,0,0.3);
  text-align:center;
}
.about-hero-subtitle{
  font-size:1.2rem;
  opacity:.9;
  max-width:680px;
  margin:0 auto;
  line-height:1.6;
  text-align:center;
}

.about-section{ margin-bottom:4rem; }

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}

.about-content{ font-size:1.1rem; line-height:1.8; color:#475569; }
.about-content p{ margin-bottom:1.5rem; }

.about-image{ text-align:center; }
.about-company-img{
  width:100%;
  max-width:500px;
  height:auto;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.about-cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:1.5rem;
}
.about-card{
  background:#ffffff;
  border-radius:12px;
  padding:1.25rem 1.5rem;
  box-shadow:0 4px 20px rgba(0,0,0,0.06);
}
.about-card h4{ margin:0 0 .5rem 0; color:#0f172a; font-weight:700; }
.about-card p{ margin:0; color:#475569; line-height:1.7; }

/* Capabilities */
.about-cap-card{
  background:#fff; padding:2rem; border-radius:12px; text-align:center;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
  border-left:4px solid #e2e8f0;
}
.cap-icon{ font-size:3rem; margin-bottom:1rem; display:block; }
.accent-blue{ border-left-color:#0ea5e9; }
.accent-green{ border-left-color:#10b981; }
.accent-amber{ border-left-color:#f59e0b; }
.accent-red{ border-left-color:#ef4444; }

/* Why Choose */
.about-why{
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color:white; padding:3rem; border-radius:16px;
}
.about-why-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:2rem; }
.about-why-card{
  background:rgba(255,255,255,0.1);
  padding:1.5rem; border-radius:8px; backdrop-filter: blur(8px);
}

/* CTA */
.about-cta{ text-align:center; background:#f8fafc; padding:3rem; border-radius:16px; }
.about-cta-subtitle{ font-size:1.1rem; color:#64748b; margin-bottom:2rem; max-width:600px; margin-left:auto; margin-right:auto; }
.about-cta-buttons{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.about-info-grid{ margin-top:2rem; }

/* Buttons */
.btn-accent{ background:#0ea5e9; color:white; }
.btn-accent:hover{ background:#0284c7; }
.btn-outline-accent{ background:transparent; color:#0ea5e9; border:2px solid #0ea5e9; }
.btn-outline-accent:hover{ background:#0ea5e9; color:white; }

/* Responsive for About */
@media (max-width: 992px){
  .about-grid{ grid-template-columns:1fr; gap:2rem; }
}
@media (max-width: 768px){
  .about-hero{ padding:3rem 0; }
  .about-hero-title{ font-size:2rem; }
  .about-hero-subtitle{ font-size:1rem; }
  .about-why{ padding:2rem; }
  .about-cta{ padding:2rem; }
}
@media (max-width: 576px){
  .about-hero{ padding:2.5rem 0; }
  .about-hero-title{ font-size:1.6rem; }
  .about-hero-subtitle{ font-size:.95rem; }
  .about-cards-grid{ grid-template-columns:1fr; }
}
@media (max-width: 480px){
  .about-cta-buttons{ flex-direction:column; gap:.75rem; }
}

/* Categories Page Styles */
.categories-hero{
  background: var(--categories-hero-bg, linear-gradient(135deg, #1e293b 0%, #334155 100%));
  color:#fff;
  padding:4rem 0;
  margin-bottom:3rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.categories-hero-title{
  font-size:3rem;
  font-weight:700;
  margin:0 0 1rem 0;
  text-shadow:2px 2px 4px rgba(0,0,0,0.3);
}
.categories-hero-subtitle{
  font-size:1.2rem;
  opacity:.9;
  max-width:680px;
  margin:0 auto;
  line-height:1.6;
}
.categories-container{ max-width:1200px; margin:0 auto; padding:0 1rem; }
.categories-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:2rem; }
.category-card-link{ text-decoration:none; color:inherit; display:block; transition:transform .3s ease, box-shadow .3s ease; }
.category-card-link:hover{ transform:translateY(-5px) scale(1.01); box-shadow:0 10px 20px rgba(0,0,0,0.1); }
.category-card{
  background:#ffffff;
  border-radius:12px;
  padding:1.2rem;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  cursor:pointer;
  overflow:hidden;
  position:relative;
  border:1px solid #f1f5f9;
  height:180px;
  text-align:left;
}
.category-bg-shape{
  position:absolute; top:-30px; right:-30px; width:80px; height:80px; background:var(--cat-color); opacity:.08; border-radius:50%; pointer-events:none;
}
.category-icon-wrap{ margin-bottom:.8rem; position:relative; z-index:1; display:flex; align-items:center; justify-content:flex-start; }
.category-icon-circle{ background:var(--cat-color); width:45px; height:45px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem; box-shadow:0 2px 8px rgba(0,0,0,0.08); }
.category-content{ position:relative; z-index:2; }
.category-title{ margin:0 0 .5rem 0; color:#1e293b; font-size:1.1rem; font-weight:600; line-height:1.2; }
.category-desc{ margin:0; color:#64748b; font-size:.85rem; line-height:1.4; opacity:.8; display:-webkit-box; -webkit-line-clamp:3; line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.category-arrow{ position:absolute; bottom:1rem; right:1rem; width:28px; height:28px; background:var(--cat-color); border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:.15; transition:opacity .3s ease; font-size:.9rem; color:#fff; }
.category-card-link:hover .category-arrow{ opacity:.35; }

/* Responsive for Categories */
@media (max-width: 992px){
  .categories-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 768px){
  .categories-hero{ padding:3rem 0; }
  .categories-hero-title{ font-size:2rem; }
  .categories-hero-subtitle{ font-size:1rem; }
}
@media (max-width: 576px){
  .categories-grid{ grid-template-columns:1fr; gap:1rem; }
  .category-card{ height:auto; padding:1rem; }
  .category-icon-circle{ width:40px; height:40px; font-size:1.15rem; }
  .category-title{ font-size:1rem; }
  .category-desc{ font-size:0.9rem; }
}

/* Mobile Responsive Styles */

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle:hover{ background:none !important; border:none !important; color:white; }

/* Base responsive breakpoints */
@media (max-width: 1200px) {
  .container { width: 95%; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 992px) {
  .container { width: 96%; }
  
  /* Header adjustments */
  .header-top { 
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .search-box {
    max-width: 100%;
    order: 3;
  }
  
  .header-contact {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* Navigation */
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .nav-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Hero section */
  .hero-slider { height: 420px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  
  /* Categories and products */
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header mobile layout */
  .header-top {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .brand {
    order: 1;
  }
  
  .header-contact {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .search-box {
    order: 3;
    width: 100%;
    max-width: none;
  }
  
  .lang-switcher {
    order: 4;
  }
  
  /* Mobile navigation */
  .main-nav {
    position: relative;
    display: block !important;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-menu a {
    padding: 1rem;
    text-align: center;
    border-bottom: none !important;
  }
  
  /* Hero mobile */
  .hero-slider { height: 360px; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Categories mobile */
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Story modules mobile */
  .story-slider {
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .story-item {
    width: 80px;
  }
  
  .story-badge {
    width: 70px;
    height: 70px;
  }
  
  /* Contact info mobile - hide text, show icons only */
  .header-contact a span:last-child {
    display: none;
  }
  
  /* Mega menu mobile */
  .mega-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: auto;
    background: rgba(0,0,0,0.1);
  }
}

@media (max-width: 576px) {
  .container { width: 98%; }
  
  /* Typography mobile */
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .section-title { font-size: 1.4rem; }
  
  /* Logo mobile */
  .logo-text { font-size: 1rem; }
  .logo-icon { font-size: 1.2rem; }
  
  /* Hero mobile small */
  .hero-slider { height: 320px; }
  
  /* Buttons mobile */
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Cards mobile */
  .category-card, .product-card {
    margin: 0 0.5rem;
  }
  
  .category-image, .product-image {
    height: 150px;
  }
  
  /* Story mobile small */
  .story-item {
    width: 70px;
  }
  
  .story-badge {
    width: 60px;
    height: 60px;
  }
  
  .story-label {
    font-size: 0.75rem;
    max-width: 70px;
  }
  
  /* Search mobile */
  .search-box input {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
  
  .search-box button {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  .hero-slider { height: 300px; }
  .hero-title { font-size: 1.3rem; }
  .section-title { font-size: 1.2rem; }
  
  /* Padding adjustments */
  .featured-categories, .featured-products {
    padding: 2rem 0;
  }
  
  /* Story extra small */
  .story-item {
    width: 65px;
  }
  
  .story-badge {
    width: 55px;
    height: 55px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-menu a:hover,
  .category-card:hover,
  .product-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-slider { height: 240px; }
  .hero-title { font-size: 1.4rem; }
  .hero-subtitle { font-size: 0.9rem; }
}

/* RTL Support */
.rtl{ direction:rtl; }
.rtl .header-top{ flex-direction:row-reverse; }
.rtl .nav-menu{ flex-direction:row-reverse; }
.rtl .story-slider{ flex-direction:row-reverse; }
.rtl .hero-buttons{ flex-direction:row-reverse; }
.rtl .mega-menu{ left:auto; right:0; }
.rtl .phone-link{ flex-direction:row-reverse; }
.rtl .search-box form{ flex-direction:row-reverse; }
.rtl .lang-menu{ flex-direction:row-reverse; }
.rtl .nav-menu a{ text-align:center; }
.rtl .carousel-btn.prev{ right:-12px; left:auto; }
.rtl .carousel-btn.next{ left:-12px; right:auto; }

/* RTL Mobile adjustments */
@media (max-width: 768px) {
  .rtl .nav-menu {
    flex-direction: column;
  }
  
  .rtl .header-top {
    flex-direction: column;
  }
}

/* Hide browser loading progress bar - Chrome, Safari, Edge */
::-webkit-progress-bar,
::-webkit-progress-value {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide Chrome's top loading bar */
html::before,
body::before,
html::after,
body::after {
  content: none !important;
  display: none !important;
}

/* Hide browser's native loading indicators */
*[role="progressbar"],
*[aria-label*="loading"],
*[aria-label*="Loading"],
*[class*="loading"],
*[class*="progress"],
*[id*="loading"],
*[id*="progress"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Specific hiding for common loading bar classes */
.loading-bar,
.progress-bar-loading,
#loading-bar,
.nprogress,
.pace,
.pace-progress,
.loading-indicator,
.top-loading-bar {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

/* Hide any blue progress bars specifically */
*[style*="background: blue"],
*[style*="background-color: blue"],
*[style*="background: #0000ff"],
*[style*="background-color: #0000ff"],
*[style*="background: rgb(0, 0, 255)"],
*[style*="background-color: rgb(0, 0, 255)"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hero slider mobile refinements */
@media (max-width: 768px) {
  .hero-slider { height: 360px !important; }
  .hero-title { font-size: 1.9rem !important; }
  .hero-subtitle { font-size: 1rem !important; }
  .slider-dots { bottom: 12px !important; }
}
@media (max-width: 576px) {
  .hero-slider { height: 320px !important; }
}
@media (max-width: 480px) {
  .hero-slider { height: 300px !important; }
  .slider-dots { bottom: 8px !important; gap: 8px !important; }
  .slider-dot { width: 9px !important; height: 9px !important; }
  .slider-nav { width: 32px !important; height: 32px !important; font-size: 14px !important; }
  .slider-nav.prev { left: 6px !important; }
  .slider-nav.next { right: 6px !important; }
}
