/* آراد اسپرت — clone of Halochin Fitness Shop design system */

:root {
  --brand-teal: #4a959f;
  --brand-teal-light: #aadddd;
  --bg-dark: #333447;
  --bg-slate: #3e445c;
  --bg-deep: #1f2124;
  --text-light: #d7d7d7;
  --text-muted: #69727d;
  --steel: #6b728e;
  --white: #ffffff;
  --off-white: #ccd6df;
  --danger: #cf2e2e;
  --star: #ffba00;
  --success-gold: #fcb900;
  --radius: 10px;
  --container: 1200px;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(74, 149, 159, 0.15);
  --font: "Vazirmatn", Tahoma, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  direction: rtl;
}

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

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

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

.arad-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 1024px) {
  .arad-container {
    padding-inline: 40px;
  }
}

/* Buttons */
.arad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.arad-btn--primary {
  background: var(--brand-teal);
  color: var(--white);
}

.arad-btn--primary:hover {
  background: #3d8289;
  transform: scale(1.02);
}

.arad-btn--ghost {
  background: transparent;
  color: var(--brand-teal-light);
  border: 2px solid var(--brand-teal);
}

.arad-btn--ghost:hover {
  background: rgba(74, 149, 159, 0.1);
}

.arad-btn--buy {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--steel);
  padding: 8px 16px;
  font-size: 13px;
  min-width: 88px;
}

.arad-btn--buy:hover {
  background: var(--bg-slate);
  border-color: var(--brand-teal-light);
  color: var(--brand-teal-light);
}

/* Header — Digikala-inspired professional */
.arad-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eceff3;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.arad-header__utility {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 12px;
}

.arad-header__utility-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 20px;
}

.arad-header__utility-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #475569;
}

.arad-header__main-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

.arad-logo__text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.arad-logo__text img {
  display: none;
}

.arad-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #4a959f 0%, #2f6f77 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(74, 149, 159, 0.28);
}

.arad-logo__name {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1;
}

.arad-header__search-wrap {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arad-search__cats {
  position: relative;
  flex-shrink: 0;
}

.arad-cats-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a959f, #3a7f88);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(74, 149, 159, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.arad-cats-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.arad-search__cats-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  overflow: hidden;
  z-index: 30;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.arad-search__cats.is-open .arad-search__cats-menu {
  display: block;
}

.arad-search__cats-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.arad-search__cats-menu a:last-child {
  border-bottom: none;
}

.arad-search__cats-menu a:hover {
  background: #f0fafa;
  color: #2f6f77;
}

.arad-search {
  flex: 1;
  display: flex;
  align-items: center;
  height: 46px;
  background: #f4f7fa;
  border: 1px solid #e6ebf0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.arad-search:focus-within {
  background: #fff;
  border-color: #4a959f;
  box-shadow: 0 0 0 4px rgba(74, 149, 159, 0.12);
}

.arad-search input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  color: #0f172a;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.arad-search input::placeholder {
  color: #94a3b8;
}

.arad-search__submit {
  height: 100%;
  width: 52px;
  border: none;
  background: #4a959f;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.arad-search__submit:hover {
  background: #3a7f88;
}

.arad-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.arad-header__action,
.arad-header-cart__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #334155;
  transition: background 0.15s ease, color 0.15s ease;
}

.arad-header__action:hover,
.arad-header-cart__link:hover {
  background: #f4f7fa;
  color: #0f172a;
}

.arad-header__action-icon,
.arad-header-cart__icon {
  position: relative;
  display: inline-flex;
  color: #0f172a;
}

.arad-header__action span:last-child {
  font-size: 13px;
  font-weight: 600;
}

.arad-header-cart__badge {
  position: absolute;
  top: -7px;
  left: -8px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.arad-header-cart__meta {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}

.arad-header-cart__meta strong {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
}

.arad-header-cart__meta small {
  font-size: 11px;
  color: #94a3b8;
}

@media (min-width: 900px) {
  .arad-header-cart__meta {
    display: flex;
  }
}

.arad-header__nav {
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.arad-header__nav-inner {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding-block: 6px;
}

.arad-header__nav .arad-search__cats {
  flex-shrink: 0;
}

.arad-header__nav .arad-cats-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
}

.arad-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.arad-nav a {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  position: relative;
  border-radius: 0;
  transition: color 0.15s ease;
}

.arad-nav a:hover {
  color: #4a959f;
  background: transparent;
}

.arad-nav .current-menu-item > a {
  color: #4a959f;
  background: transparent;
  font-weight: 800;
}

.arad-nav .current-menu-item > a::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: #4a959f;
}

.arad-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.arad-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .arad-menu-toggle {
    display: flex;
  }

  .arad-header__nav {
    display: none;
  }

  .arad-header__nav.is-open {
    display: block;
  }

  .arad-header__nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding-block: 10px;
    gap: 8px;
  }

  .arad-header__nav .arad-cats-btn {
    width: 100%;
    justify-content: center;
  }

  .arad-nav {
    flex-direction: column;
  }

  .arad-nav .current-menu-item > a::after {
    display: none;
  }

  .arad-header__action span:last-child {
    display: none;
  }

  .arad-header__utility {
    display: none;
  }
}

@media (max-width: 640px) {
  .arad-logo__name {
    font-size: 16px;
  }

  .arad-header__search-wrap {
    order: 5;
    width: 100%;
    flex: 1 1 100%;
  }
}

/* Hero showcase: big banner + category grid (Digikala-style) */
.arad-hero {
  padding: 20px 0 8px;
  background: #eef3f7;
}

.arad-hero__showcase {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .arad-hero__showcase {
    /* Banner left + cats right — matching the reference layout */
    direction: ltr;
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .arad-hero-cats {
    direction: rtl;
  }
}

.arad-hero-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  background: #111;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  direction: ltr;
}

@media (min-width: 768px) {
  .arad-hero-slider {
    min-height: 340px;
  }
}

.arad-hero-slider__track {
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 0.5s ease;
  will-change: transform;
}

.arad-hero-slide {
  position: relative;
  display: block;
  flex: 0 0 100%;
  width: 100%;
  min-height: inherit;
  color: #fff;
}

.arad-hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.arad-hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.arad-hero-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.2s ease;
}

.arad-hero-slider__dots button.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}

.arad-hero-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.arad-hero-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 8px 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
  min-height: 104px;
}

.arad-hero-cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.arad-hero-cat img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.arad-hero-cat span {
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .arad-hero-cats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .arad-hero-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Features — light cards, same language as hero */
.arad-features {
  padding: 8px 0 20px;
  background: #eef3f7;
}

.arad-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .arad-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.arad-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.arad-feature__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(74, 149, 159, 0.12);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arad-feature__icon svg {
  width: 24px;
  height: 24px;
}

.arad-feature__text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 2px;
}

.arad-feature__text span {
  font-size: 12px;
  color: #6b7280;
}

/* Mid promo banners — clean photo cards on light bg */
.arad-banners {
  padding: 0 0 28px;
  background: #eef3f7;
}

.arad-banners__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .arad-banners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arad-banner-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background: #1f2937;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  padding: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arad-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.arad-banner-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.arad-banner-card:hover .arad-banner-card__img {
  transform: scale(1.06);
}

.arad-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(15, 23, 42, 0.28) 72%,
    rgba(15, 23, 42, 0.55) 100%
  );
  pointer-events: none;
}

.arad-banner-card__body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  transition: background 0.2s ease;
}

.arad-banner-card:hover .arad-banner-card__body {
  background: #fff;
}

.arad-banner-card__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a;
}

.arad-banner-card__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4a959f, #2f6f77);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(74, 149, 159, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.arad-banner-card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.arad-banner-card:hover .arad-banner-card__cta {
  filter: brightness(1.05);
}

.arad-banner-card:hover .arad-banner-card__cta svg {
  transform: translateX(-3px);
}

/* Sections */
.arad-section {
  padding: 48px 0;
}

.arad-section--light {
  background: #eef3f7;
  color: var(--bg-deep);
}

.arad-section--light .arad-section__head h2,
.arad-section--light .arad-product-card__title a,
.arad-section--light .arad-price {
  color: var(--bg-dark);
}

.arad-section--light .arad-product-card__desc {
  color: var(--text-muted);
}

.arad-section__head {
  margin-bottom: 28px;
}

.arad-section__head h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

/* Product grid & card */
.arad-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .arad-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .arad-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .arad-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

/* Single-row product carousel */
.arad-carousel {
  position: relative;
  padding-inline: 8px;
}

.arad-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.arad-carousel__track::-webkit-scrollbar {
  display: none;
}

.arad-carousel__track .arad-product-card {
  flex: 0 0 min(260px, 78vw);
  width: min(260px, 78vw);
  max-width: min(260px, 78vw);
  scroll-snap-align: start;
  height: auto;
}

@media (min-width: 768px) {
  .arad-carousel__track .arad-product-card {
    /* ~3.6 cards visible so next item peeks and carousel can scroll */
    flex-basis: calc((100% - 60px) / 3.6);
    width: calc((100% - 60px) / 3.6);
    max-width: calc((100% - 60px) / 3.6);
  }
}

.arad-carousel__btn {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
  padding: 0;
}

.arad-carousel__btn:hover {
  background: #4a959f;
  border-color: #4a959f;
  color: #fff;
}

.arad-carousel__btn--prev {
  right: -4px;
}

.arad-carousel__btn--next {
  left: -4px;
}

@media (max-width: 767px) {
  .arad-carousel__btn {
    display: none;
  }
}

.arad-section__head--carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.arad-product-card {
  background: var(--white);
  border: 1px solid #d7d7d7;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  transition: 0.25s ease;
  color: var(--bg-dark);
}

.arad-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.arad-product-card__media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f6f8;
  margin-bottom: 12px;
}

.arad-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arad-badge--sale {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
}

.arad-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.arad-product-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arad-product-card__title a {
  color: var(--bg-dark);
}

.arad-product-card__desc {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 18px;
  min-height: 36px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arad-product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  min-height: 52px;
}

.arad-product-card__prices {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 40px;
}

.arad-product-card__prices del {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
  min-height: 1.4em;
}

.arad-product-card__prices del.is-empty {
  visibility: hidden;
}

/* Homepage 3-column product shelves */
.arad-product-columns {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .arad-product-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.arad-product-col {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 14px;
  padding: 16px 16px 10px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.arad-product-col__head {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f6;
}

.arad-product-col__head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--bg-dark);
}

.arad-product-col__list {
  display: flex;
  flex-direction: column;
}

.arad-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid #f1f5f9;
  color: inherit;
  transition: background 0.15s ease;
}

.arad-product-row:last-child {
  border-bottom: none;
}

.arad-product-row:hover {
  background: #f8fafc;
}

.arad-product-row__media {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f6f8;
}

.arad-product-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arad-product-row__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.arad-product-row__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arad-product-row__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.arad-product-row__prices del {
  font-size: 11px;
  color: var(--text-muted);
}

.arad-product-row .arad-price {
  font-size: 14px;
}

.arad-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-deep);
}

.arad-price small {
  font-size: 12px;
  font-weight: 500;
}

/* Categories */
.arad-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .arad-cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .arad-cats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.arad-cat-item {
  background: var(--bg-slate);
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
  transition: 0.2s ease;
}

.arad-cat-item:hover {
  border-color: var(--brand-teal-light);
  transform: translateY(-3px);
}

.arad-cat-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(74, 149, 159, 0.15);
  overflow: hidden;
}

.arad-cat-item__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.arad-cat-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* Promo flash sale — special discount band */
.arad-promo {
  padding: 28px 0 40px;
  background: #eef3f7;
}

.arad-promo__inner {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  background-color: #3e445c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' opacity='0.07'%3E%3Crect x='18' y='22' width='28' height='10' rx='3'/%3E%3Ccircle cx='24' cy='27' r='5'/%3E%3Ccircle cx='40' cy='27' r='5'/%3E%3Cpath d='M70 20h8v28h-8zm14 6h18v16H84z'/%3E%3Cpath d='M120 18c8 0 14 6 14 14s-6 14-14 14-14-6-14-14 6-14 14-14z'/%3E%3Cpath d='M22 70h36v8H22zm6 14h24v20H28z'/%3E%3Cpath d='M78 68c10 0 18 8 18 18s-8 18-18 18-18-8-18-18 8-18 18-18z'/%3E%3Cpath d='M118 72h10v36h-10zm16 8h14v20h-14z'/%3E%3Cpath d='M20 128l12-18h20l12 18H20z'/%3E%3Cpath d='M78 118h28v8H78zm4 12h20v16H82z'/%3E%3Cpath d='M124 120c7 0 12 5 12 12h-24c0-7 5-12 12-12z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px 160px;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

@media (min-width: 992px) {
  .arad-promo__inner {
    grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
    padding: 32px 36px;
    gap: 28px;
    align-items: center;
  }
}

.arad-promo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.arad-promo__title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.arad-promo__title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

@media (min-width: 768px) {
  .arad-promo__title {
    font-size: 30px;
  }
}

.arad-promo__highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  background: #2a2f42;
  color: #7fd4d8;
  font-size: 0.92em;
  font-weight: 800;
  box-shadow:
    0 0 0 1.5px rgba(127, 212, 216, 0.55),
    0 0 18px rgba(127, 212, 216, 0.35);
  text-shadow: 0 0 12px rgba(127, 212, 216, 0.45);
}

.arad-promo__desc {
  margin: 0 0 22px;
  color: #b8c0d0;
  font-size: 13.5px;
  line-height: 2;
  max-width: 520px;
  padding-inline-start: 14px;
  border-inline-start: 3px solid #7fd4d8;
}

.arad-promo__timer {
  background: #24263a;
  border-radius: 16px;
  padding: 18px 18px 16px;
}

.arad-promo__timer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.arad-promo__timer-text {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.arad-promo__timer-text span {
  color: #7fd4d8;
}

.arad-promo__see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4a959f 0%, #5fb0b8 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease;
}

.arad-promo__see-all:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.arad-promo .arad-countdown {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
}

.arad-promo .arad-countdown__item {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.arad-promo .arad-countdown__item span {
  font-size: 12px;
  color: #aeb6c8;
  font-weight: 500;
  order: -1;
}

.arad-promo .arad-countdown__item strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: #3a3f55;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.arad-promo__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.arad-promo-card {
  background: #2e3148;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.arad-promo-card__media {
  position: relative;
  aspect-ratio: 1.05;
  border-radius: 12px;
  overflow: hidden;
  background: #e8ecf1;
  margin-bottom: 14px;
}

.arad-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.arad-promo-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: #a54d4d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1.2;
}

.arad-promo-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.arad-promo-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.arad-promo-card__title a {
  color: #fff;
  text-decoration: none;
}

.arad-promo-card__desc {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.75;
  color: #9aa3b5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arad-promo-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.arad-promo-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.arad-promo-card__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.arad-promo-card__prices del {
  font-size: 11px;
  color: #8b93a7;
  line-height: 1.3;
}

.arad-promo-card__price {
  color: #7fd4d8;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.arad-promo-card__price small {
  font-size: 11px;
  font-weight: 600;
}

.arad-promo-card__buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #58a8ab;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.2s ease;
  flex-shrink: 0;
}

.arad-promo-card__buy:hover {
  background: #4a959f;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .arad-promo__products {
    order: -1;
  }
}

@media (max-width: 640px) {
  .arad-promo__inner {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .arad-promo__title {
    font-size: 22px;
  }

  .arad-promo__products {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }

  .arad-promo .arad-countdown__item strong {
    min-height: 44px;
    font-size: 18px;
  }
}

/* Why us — light premium trust section */
.arad-why {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(74, 149, 159, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(74, 149, 159, 0.1), transparent 50%),
    linear-gradient(180deg, #eef3f7 0%, #f7fafc 100%);
}

.arad-why__stage {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .arad-why__stage {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.arad-why__visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  isolation: isolate;
}

.arad-why__glow {
  position: absolute;
  inset: auto -20% -30% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(74, 149, 159, 0.35), transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: why-pulse 5s ease-in-out infinite;
}

.arad-why__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  animation: float-soft 5.5s ease-in-out infinite;
}

.arad-why__copy {
  max-width: 520px;
}

.arad-why__brand {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #2f6f77;
}

.arad-why__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  color: #0f172a;
}

.arad-why__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.9;
  color: #64748b;
}

.arad-why__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arad-why__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.arad-why__list li:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 149, 159, 0.35);
  box-shadow: 0 14px 28px rgba(74, 149, 159, 0.12);
}

.arad-why__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #4a959f, #2f6f77);
  color: #fff;
  box-shadow: 0 10px 20px rgba(74, 149, 159, 0.28);
}

.arad-why__icon svg {
  width: 22px;
  height: 22px;
}

.arad-why__list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
}

.arad-why__list em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 12px;
  color: #64748b;
}

.arad-why__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.arad-btn--outline {
  background: #fff;
  color: #2f6f77;
  border: 1.5px solid #4a959f;
}

.arad-btn--outline:hover {
  background: #f0fafa;
  transform: translateY(-1px);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes why-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Blog */
.arad-blog-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .arad-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .arad-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage: force a single row of 3 */
.arad-blog-grid--row {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .arad-blog-grid--row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arad-blog-card {
  background: var(--bg-slate);
  border: 1px solid var(--steel);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s ease;
}

.arad-blog-card:hover {
  border-color: var(--brand-teal-light);
  transform: translateY(-3px);
}

.arad-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.arad-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arad-blog-card__body {
  padding: 16px;
}

.arad-blog-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.arad-blog-card__body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.arad-blog-card__body p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-light);
}

.arad-blog-card__more {
  color: var(--brand-teal-light);
  font-size: 13px;
}

/* Footer */
.arad-footer {
  background: #2a2c3d;
  border-top: 1px solid var(--steel);
  padding-top: 48px;
  margin-top: auto;
}

.arad-footer__grid {
  display: grid;
  gap: 28px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .arad-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .arad-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.arad-footer__brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-teal-light);
  margin-bottom: 12px;
}

.arad-footer__col h4 {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--white);
}

.arad-footer__col p,
.arad-footer__col li,
.arad-footer__col a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
}

.arad-footer__col a:hover {
  color: var(--brand-teal-light);
}

.arad-footer__trust {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(74, 149, 159, 0.4);
  border-radius: 8px;
  color: var(--brand-teal-light);
  font-weight: 700;
  font-size: 14px;
}

.arad-footer__bottom {
  border-top: 1px solid rgba(107, 114, 142, 0.35);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* Inner pages */
.arad-page-hero {
  padding: 36px 0;
  background: var(--bg-slate);
  border-bottom: 1px solid var(--steel);
}

.arad-page-hero h1 {
  margin: 0;
  font-size: 28px;
  color: var(--white);
}

.arad-content {
  padding: 40px 0 60px;
}

.arad-content .entry-content {
  max-width: 800px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 2;
}

/* WooCommerce overrides */
.woocommerce-ready .woocommerce,
.woocommerce-page .woocommerce {
  color: var(--text-light);
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  float: none !important;
}

.woocommerce div.product {
  background: var(--white);
  color: var(--bg-dark);
  border-radius: 12px;
  padding: 24px;
}

.woocommerce span.onsale {
  background: var(--danger) !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--brand-teal) !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--brand-teal) !important;
}

.arad-shop-wrap {
  padding: 40px 0 60px;
  background: #f3f5f7;
}

.arad-shop-wrap .page-title {
  color: var(--bg-dark);
  margin-bottom: 24px;
}

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

.arad-main {
  flex: 1;
}
.woocommerce ul.products li.product .arad-product-card{height:100%;}
.woocommerce ul.products li.product{list-style:none;}
