/* Coskind Pharma - Client Approved Homepage Styles */
:root {
  --navy: #001f3f;
  --navy-deep: #002147;
  --sky: #00aeef;
  --sky-soft: #3498db;
  --red: #d91e27;
  --brand-red: #e31c23;
  --brand-navy: #1b2c56;
  --text: #222;
  --text-muted: #6b7280;
  --white: #ffffff;
  --bg-light: #f7fbff;
  --border: #e8eef5;
  --orange-star: #f5a623;
  --font: 'Poppins', sans-serif;
  --container: 1200px;
  --radius: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--navy-deep);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-right a {
  color: var(--white);
  opacity: 0.95;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--sky);
}

.top-bar-left i {
  margin-right: 6px;
}

.top-bar-right {
  display: flex;
  gap: 14px;
}

/* ===== Main Header ===== */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 31, 63, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  border-radius: 4px;
}

.main-nav > ul > li > a i {
  font-size: 9px;
  opacity: 0.7;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--sky);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  padding: 8px 0;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text);
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--sky);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--navy-deep);
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--bg-light);
  color: var(--sky);
}

.cart-btn .cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--sky);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.account-btn:hover {
  background: #0095ce;
  color: var(--white);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 20px;
  color: var(--navy-deep);
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f6ff 0%, #d4efff 45%, #c5e8ff 100%);
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  display: none;
  min-height: 480px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  align-items: center;
  padding: 70px 0 90px;
}

.hero-slide.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.hero-content {
  max-width: 560px;
  margin-left: max(16px, calc((100% - var(--container)) / 2));
  margin-right: auto;
  width: min(100% - 32px, 560px);
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-search {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 31, 63, 0.1);
  overflow: hidden;
  margin-bottom: 24px;
  max-width: 520px;
}

.search-category {
  position: relative;
  border-right: 1px solid var(--border);
  min-width: 130px;
}

.search-category select {
  appearance: none;
  border: none;
  background: transparent;
  padding: 14px 32px 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  cursor: pointer;
  outline: none;
}

.search-category i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text-muted);
  pointer-events: none;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 13px;
  min-width: 0;
}

.hero-search input::placeholder {
  color: #9ca3af;
}

.hero-search button {
  width: 52px;
  border: none;
  background: transparent;
  color: var(--navy-deep);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-search button:hover {
  color: var(--sky);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: #003366;
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--sky);
  border-color: #a8d8f0;
}

.btn-outline:hover {
  border-color: var(--sky);
  background: #f0faff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy-deep);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 5;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--white);
  color: var(--sky);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 33, 71, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  background: var(--navy-deep);
  width: 28px;
  border-radius: 999px;
}

/* ===== Features ===== */
.features {
  padding: 50px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 2px solid;
}

.feature-icon.red { color: #e74c3c; border-color: #f5c6c2; background: #fff5f4; }
.feature-icon.green { color: #27ae60; border-color: #b8e6cb; background: #f0fff6; }
.feature-icon.blue { color: var(--sky); border-color: #b3e5f8; background: #f0faff; }
.feature-icon.orange { color: #e67e22; border-color: #f5d5b0; background: #fff8f0; }

.feature-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Promo Banners ===== */
.promo-banners {
  padding: 10px 0 50px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.promo-card {
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.promo-card:hover {
  transform: translateY(-4px);
}

.promo-blue { background: #d9efff; }
.promo-pink { background: #ffe4ec; }
.promo-green { background: #e0f5e6; }
.promo-yellow { background: #fff3d1; }

.promo-text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.promo-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 6px 0 14px;
  line-height: 1.3;
  max-width: 140px;
}

.shop-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
}

.arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 10px;
}

.promo-card img {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 110px;
  height: auto;
  opacity: 0.95;
}

/* ===== Categories ===== */
.categories {
  padding: 40px 0 50px;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-label {
  display: block;
  color: var(--sky);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy-deep);
}

.categories-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.categories-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px 20px;
  flex: 1;
}

.categories-track::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
  transition: transform var(--transition);
}

.category-item:hover {
  transform: translateY(-4px);
}

.category-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.06);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  overflow: hidden;
  padding: 16px;
}

.category-circle img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.category-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
}

.cat-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.cat-arrow:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

/* ===== Products ===== */
.products {
  padding: 20px 0 60px;
  background: #fafcfe;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px 22px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 31, 63, 0.08);
  transform: translateY(-3px);
}

.product-img {
  height: 160px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.product-img img {
  max-height: 140px;
  width: auto;
  margin: 0 auto;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
  min-height: 44px;
}

.product-rating {
  color: var(--orange-star);
  font-size: 12px;
  margin-bottom: 8px;
}

.product-rating span {
  color: var(--text-muted);
  margin-left: 4px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 14px;
}

.add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--sky);
  color: var(--navy-deep);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.add-to-cart i {
  color: var(--sky);
}

.add-to-cart:hover {
  background: var(--sky);
  color: var(--white);
}

.add-to-cart:hover i {
  color: var(--white);
}

/* ===== Trust ===== */
.trust {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #c5e8f7;
  color: var(--sky);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== About ===== */
.about-brief {
  padding: 50px 0;
  background: var(--bg-light);
}

.about-text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.3fr;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col ul a:hover {
  color: var(--sky);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 13px;
}

.footer-social .fb { background: #3b5998; }
.footer-social .ig { background: #e4405f; }
.footer-social .tw { background: #1da1f2; }
.footer-social .li { background: #0077b5; }

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  margin-bottom: 12px !important;
}

.contact-list i {
  color: var(--sky);
  margin-top: 3px;
  width: 14px;
}

.contact-list a:hover {
  color: var(--sky);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  background: var(--sky);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #0095ce;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.pay-badge {
  background: var(--white);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.pay-badge.visa { color: #1a1f71; }
.pay-badge.mc { color: #eb001b; }
.pay-badge.paypal { color: #003087; }
.pay-badge.upi { color: #097939; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .main-nav > ul > li > a {
    padding: 8px 8px;
    font-size: 12px;
  }

  .features-grid,
  .promo-grid,
  .products-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .account-btn span,
  .account-btn {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    padding: 70px 24px 24px;
    transition: right var(--transition);
    z-index: 2000;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav > ul > li > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 12px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .top-bar-left {
    gap: 10px;
    font-size: 11px;
  }

  .top-bar-right {
    display: none;
  }

  .logo-img {
    height: 44px;
  }

  .hero-slide {
    min-height: 420px;
    background-position: center;
    padding: 50px 0 80px;
  }

  .hero-search {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .search-category {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .features-grid,
  .promo-grid,
  .products-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: 180px;
  }

  .category-item {
    width: 100px;
  }

  .category-circle {
    width: 90px;
    height: 90px;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .blog-grid,
  .category-cards-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Inner Pages ===== */
.page-hero {
  background: linear-gradient(135deg, #e8f6ff 0%, #d4efff 100%);
  padding: 42px 0 36px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--sky);
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 6px;
  color: #9ca3af;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy-deep);
}

.page-section {
  padding: 50px 0 70px;
}

.page-section .section-header {
  margin-bottom: 28px;
}

.narrow {
  max-width: 860px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.content-main h2 {
  font-size: 1.45rem;
  color: var(--navy-deep);
  margin: 22px 0 10px;
}

.content-main p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.info-card i {
  color: var(--sky);
  font-size: 22px;
  margin-bottom: 10px;
}

.info-card h3 {
  font-size: 15px;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 13px;
  margin: 0;
}

.side-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.05);
  position: sticky;
  top: 100px;
}

.side-box h3 {
  color: var(--navy-deep);
  margin-bottom: 14px;
  font-size: 17px;
}

.side-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.side-list li:last-child {
  border-bottom: none;
}

.side-list strong {
  color: var(--navy-deep);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.page-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.page-note i {
  color: var(--sky);
  margin-right: 6px;
}

.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  min-height: 52px;
  line-height: 1.5;
}

.products-page-grid {
  margin-top: 8px;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 31, 63, 0.08);
}

.category-card .category-circle {
  margin-bottom: 14px;
}

.category-card h3 {
  color: var(--navy-deep);
  font-size: 16px;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info-panel h2,
.contact-form h2 {
  color: var(--navy-deep);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.contact-info-panel > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-details i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f6ff;
  color: var(--sky);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: var(--navy-deep);
  font-size: 14px;
}

.contact-details span,
.contact-details a {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-details a:hover {
  color: var(--sky);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.05);
}

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

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

.form-success {
  margin-top: 14px;
  color: #1e8449;
  font-size: 14px;
  font-weight: 500;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-deep);
  padding: 14px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--sky);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  color: var(--text-muted);
  font-size: 14px;
  padding-bottom: 14px;
  line-height: 1.7;
}

.cta-box {
  margin-top: 36px;
  text-align: center;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
}

.cta-box h3 {
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content h2 {
  color: var(--navy-deep);
  font-size: 1.25rem;
  margin: 26px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 14px;
}

.legal-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.legal-content ul li {
  list-style: disc;
}

.legal-content a {
  color: var(--sky);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 31, 63, 0.08);
}

.blog-thumb {
  height: 140px;
  background: linear-gradient(135deg, #e8f6ff, #d4efff);
  display: grid;
  place-items: center;
  font-size: 36px;
  color: var(--sky);
}

.blog-body {
  padding: 18px;
}

.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-body h3 {
  color: var(--navy-deep);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.text-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
}

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

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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