/* ========================
       FIRST CALL TECHNOLOGY CSS
       ======================== */

:root {
  --green: #16a34a;
  --green-dark: #166534;
  --green-light: #dcfce7;
  --green-mid: #22c55e;
  --black: #0a0a0a;
  --dark: #111827;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(22, 163, 74, 0.10);
  --radius: 14px;
  --transition: 0.22s ease;
  font-family: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8fafb;
  color: var(--dark);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  object-fit: cover;
}

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



/*content section*/
    /* Rest of the sections remain the same */
    .categories, .products, .brands, .why-us, .newsletter, .footer 
    
    .products { padding: 60px 0; background: #f8fafb; }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .section-header h2 {
      font-family: 'Syne', sans-serif;
      font-size: 30px;
      font-weight: 800;
      color: var(--dark);
    }
    .product-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
    .tab {
      padding: 8px 18px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: white;
      font-size: 13px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      transition: all var(--transition);
    }
    .tab:hover { border-color: var(--green); color: var(--green); }
    .tab.active { background: var(--green); border-color: var(--green); color: white; }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
    }
    .product-card {
      background: white;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all var(--transition);
      cursor: pointer;
    }
    .product-card:hover {
      box-shadow: 0 8px 32px rgba(22,163,74,0.15);
      transform: translateY(-6px);
      border-color: var(--green);
    }
    .product-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: #ef4444;
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 50px;
      z-index: 1;
    }
    .product-badge.new { background: var(--green); }
    .product-card { position: relative; }
    .product-img {
      width: 100%;
      height: 200px;
      text-align: center;
      background: var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .product-info { padding: 16px; }
    .product-brand { font-size: 11px; color: var(--black); font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
    .product-name { font-size: 13.5px; font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
    .product-rating { font-size: 12px; color: #f59e0b; margin-bottom: 10px; }
    .product-rating span { color: var(--gray); }
    .product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .price-now { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--black); }
    .price-old { font-size: 13px; color: var(--gray); text-decoration: line-through; }
    .add-cart-btn {
      width: 100%;
      background: var(--green);
      color: white;
      border: none;
      padding: 10px;
      border-radius: 50px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      transition: background var(--transition);
    }
    .add-cart-btn:hover { background: var(--green-dark); }

    .brands { padding: 60px 0; background: white; }
    .brand-strip {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .brand-item {
      padding: 14px 30px;
      border: 2px solid var(--border);
      border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--gray);
      transition: all var(--transition);
      cursor: pointer;
    }
    .brand-item:hover {
      border-color: var(--green);
      color: var(--green);
      background: var(--green-light);
    }


    /* Laptops Products Section */
.laptops-products {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  padding: 60px 0;
}

.laptops-products .product-tabs .tab {
  background: white;
}

.laptops-products .product-tabs .tab.active {
  background: var(--green, #16a34a);
  color: white;
  border-color: var(--green, #16a34a);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .laptops-products .product-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .laptops-products .product-tabs .tab {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* Monitors & Desktops Section */
.monitors-products {
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
  padding: 60px 0;
}

/* Desktop: 6 products per row */
.monitors-products .product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.monitors-products .product-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.monitors-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(22,163,74,0.15);
  border-color: #16a34a;
}

.monitors-products .product-img {
  width: 100%;
  height: 160px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.monitors-products .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.monitors-products .product-img .emoji-icon {
  font-size: 48px;
}

.monitors-products .product-info {
  padding: 12px;
}

.monitors-products .product-brand {
  font-size: 10px;
}

.monitors-products .product-name {
  font-size: 12px;
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 32px;
}

.monitors-products .product-rating {
  font-size: 10px;
  margin-bottom: 6px;
}

.monitors-products .product-price {
  margin-bottom: 10px;
}

.monitors-products .price-now {
  font-size: 14px;
}

.monitors-products .price-old {
  font-size: 11px;
}

.monitors-products .add-cart-btn {
  padding: 6px;
  font-size: 11px;
}

.monitors-products .product-badge {
  font-size: 9px;
  padding: 2px 8px;
}

.monitors-products .product-tabs .tab {
  padding: 6px 14px;
  font-size: 12px;
}

.monitors-products .product-tabs .tab.active {
  background: var(--green, #16a34a);
  color: white;
  border-color: var(--green, #16a34a);
}

/* Tablet: 6 products per row */
@media (max-width: 1024px) {
  .monitors-products .product-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }
  
  .monitors-products .product-img {
    height: 140px;
  }
}

/* Mobile: 2 products per row */
@media (max-width: 768px) {
  .monitors-products .product-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  
  .monitors-products .product-img {
    height: 120px;
  }
  
  .monitors-products .product-name {
    font-size: 11px;
    min-height: auto;
  }
  
  .monitors-products .price-now {
    font-size: 12px;
  }
  
  .monitors-products .product-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .monitors-products .product-tabs .tab {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* Small mobile: 2 products per row (keep same) */
@media (max-width: 480px) {
  .monitors-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .monitors-products .product-img {
    height: 100px;
  }
  
  .monitors-products .product-info {
    padding: 8px;
  }
  
  .monitors-products .product-name {
    font-size: 10px;
  }
  
  .monitors-products .price-now {
    font-size: 11px;
  }
  
  .monitors-products .add-cart-btn {
    font-size: 9px;
    padding: 4px;
  }
}
    .why-us { padding: 60px 0; background: var(--light-gray); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 16px;
    }
    .why-card {
      background: white;
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      border: 1px solid var(--border);
      transition: all var(--transition);
    }
    .why-card:hover {
      box-shadow: var(--shadow);
      border-color: var(--green);
      transform: translateY(-4px);
    }
    .why-icon { font-size: 42px; margin-bottom: 14px; }
    .why-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
    .why-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

    .newsletter {
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      padding: 56px 0;
      color: white;
    }
    .newsletter-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .newsletter h2 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 6px; }
    .newsletter p { opacity: 0.85; font-size: 15px; }
    .newsletter-form { display: flex; gap: 0; flex-shrink: 0; }
    .newsletter-form input {
      padding: 14px 22px;
      border: none;
      border-radius: 50px 0 0 50px;
      font-size: 14px;
      width: 300px;
      outline: none;
    }
    .newsletter-form button {
      background: var(--dark);
      color: white;
      border: none;
      padding: 14px 28px;
      border-radius: 0 50px 50px 0;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: background var(--transition);
    }
    .newsletter-form button:hover { background: #000; }

    .footer {
      background: var(--black);
      color: #9ca3af;
      padding: 60px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .logo-name { color: var(--black); }
    .footer-brand p { margin-top: 14px; font-size: 13.5px; line-height: 1.7; }
    .socials { display: flex; gap: 10px; margin-top: 18px; }
    .socials a {
      width: 34px; height: 34px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all var(--transition);
    }
    .socials a:hover { background: var(--green); color: white; }
    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: white;
      margin-bottom: 16px;
    }
    .footer-col a, .footer-col p {
      display: block;
      font-size: 13.5px;
      margin-bottom: 10px;
      color: #9ca3af;
      transition: color var(--transition);
    }
    .footer-col a:hover { color: var(--green-mid); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      font-size: 13px;
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content h1 { font-size: 36px; }
      .cat-grid { grid-template-columns: repeat(4, 1fr); }
      .product-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: repeat(6, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .hero-landing {
        flex-direction: column;
        height: auto;
      }
      .hero-left {
        width: 100%;
        height: 60vh;
        min-height: 400px;
      }
      .hero-right {
        width: 100%;
        flex-direction: row;
        height: 300px;
      }
      .promo-top, .promo-bottom {
        width: 50%;
        height: 100%;
      }
      .hero-content { padding: 30px; }
      .hero-content h1 { font-size: 28px; }
    }

    @media (max-width: 768px) {
      .header-inner { flex-wrap: wrap; }
      .search-bar { order: 3; flex: 0 0 100%; }
      .product-grid { grid-template-columns: repeat(6, 1fr); }
      .cat-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .hero-right { flex-direction: column; height: auto; }
      .promo-top, .promo-bottom { width: 100%; height: 200px; }
      .hero-prev, .hero-next { width: 30px; height: 30px; font-size: 14px; }
    }

    @media (max-width: 480px) {
      .hero-left { height: 50vh; }
      .hero-content h1 { font-size: 22px; }
      .hero-stats { gap: 20px; }
       .product-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats strong { font-size: 18px; }
    }