/* ============================================================
   PHONEHS APPLE — Design System
   ============================================================ */

/* ====== VARIABLES ====== */
:root {
  /* Colors */
  --color-black: #1d1d1f;
  --color-dark: #424245;
  --color-gray: #6e6e73;
  --color-gray-light: #86868b;
  --color-gray-bg: #f5f5f7;
  --color-white: #ffffff;
  --color-blue: #0071e3;
  --color-blue-hover: #0077ed;
  --color-blue-bg: rgba(0,113,227,0.08);
  --color-green: #30d158;
  --color-green-bg: rgba(48,209,88,0.1);
  --color-orange: #ff9500;
  --color-red: #ff3b30;
  --color-red-bg: rgba(255,59,48,0.08);
  --color-border: rgba(0,0,0,0.08);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.72rem;
  --font-size-sm: 0.82rem;
  --font-size-base: 0.92rem;
  --font-size-md: 1.05rem;
  --font-size-lg: 1.15rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.8rem;
  --font-size-4xl: 3.8rem;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 72px;
  --space-4xl: 100px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.08);
  --shadow-product: 0 12px 24px rgba(0,0,0,0.06);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.3s;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 52px;
}

/* ====== RESET / BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(var(--font-size-3xl), 6vw, var(--font-size-4xl)); font-weight: 800; letter-spacing: -0.04em; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.5vw, var(--font-size-3xl)); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p { color: var(--color-gray); line-height: 1.6; }

.text-gradient {
  background: linear-gradient(135deg, #0071e3, #00c7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====== LAYOUT ====== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-full {
  padding: var(--space-4xl) var(--space-lg);
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-gray {
  background: var(--color-gray-bg);
}

/* ====== SECTION HEADERS ====== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.section-dark .section-tag { color: var(--color-green); }

.section-title {
  margin-bottom: var(--space-md);
}

.section-dark .section-title { color: var(--color-white); }

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary { background: var(--color-blue); color: white; }
.btn-primary:hover { background: var(--color-blue-hover); transform: scale(1.02); }

.btn-white { background: white; color: var(--color-black); }
.btn-white:hover { background: #f0f0f0; transform: scale(1.02); }

.btn-secondary { background: transparent; color: var(--color-blue); border: 1.5px solid var(--color-blue); }
.btn-secondary:hover { background: var(--color-blue-bg); }

.btn-secondary-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-secondary-light:hover { background: rgba(255,255,255,0.1); }

.btn-sm { padding: 10px 20px; font-size: var(--font-size-sm); }
.btn-lg { padding: 18px 36px; font-size: var(--font-size-md); }

/* ====== CARDS ====== */
.card {
  background: var(--color-gray-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease);
}

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

.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
}

.card-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

/* ====== BADGES ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.badge-grade-a { background: #d4edda; color: #1a7a2e; }
.badge-grade-b { background: #fff3cd; color: #856404; }
.badge-grade-c { background: #fde2e2; color: #a11d1d; }
.badge-flash { background: var(--color-red-bg); color: var(--color-red); }
.badge-new { background: var(--color-blue-bg); color: var(--color-blue); }
.badge-pro { background: var(--color-green-bg); color: #1a7a2e; }

/* ====== TRUST BAR ====== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  padding: 40px var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-size-sm);
  color: var(--color-gray);
  font-weight: 500;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gray-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}

.trust-icon svg { width: 20px; height: 20px; }

/* ====== QUICK CATS ====== */
.phs-quickcats {
  background: var(--color-gray-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 28px var(--space-lg);
}
.phs-quickcats-inner {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.phs-qcat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
  white-space: nowrap;
}
.phs-qcat:hover {
  border-color: var(--color-blue);
  box-shadow: 0 2px 8px rgba(26,86,219,0.10);
  color: var(--color-blue);
}
.phs-qcat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-blue);
}
.phs-qcat-name {
  font-weight: 600;
}
.phs-qcat-count {
  font-size: 0.72rem;
  color: var(--color-gray);
  background: var(--color-gray-bg);
  border-radius: 20px;
  padding: 1px 7px;
  font-weight: 600;
}
/* Ventes Flash */
.phs-qcat--flash { color: #dc2626; }
.phs-qcat--flash .phs-qcat-icon { color: #dc2626; }
.phs-qcat--flash .phs-qcat-count { background: #fee2e2; color: #dc2626; }
.phs-qcat--flash:hover { border-color: #dc2626; box-shadow: 0 2px 8px rgba(220,38,38,0.12); color: #b91c1c; }

/* Quickcats — mobile : 2 colonnes + wrap autorisé */
@media (max-width: 768px) {
  .phs-quickcats { padding: 20px 16px; }
  .phs-quickcats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
  }
  .phs-qcat {
    padding: 10px 10px;
    gap: 6px;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    flex-wrap: wrap;
    line-height: 1.2;
    min-width: 0;
  }
  .phs-qcat-icon { flex-shrink: 0; }
  .phs-qcat-name {
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .phs-qcat-count {
    font-size: 0.68rem;
    padding: 1px 6px;
  }

  /* Trust bar — slider horizontal avec snap */
  .trust-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    gap: 14px;
    padding: 22px 16px;
    scrollbar-width: none;
  }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: var(--color-gray-bg);
    border-radius: 12px;
    padding: 10px 14px;
    gap: 10px;
    font-size: 0.78rem;
  }
  .trust-item .trust-icon {
    width: 32px;
    height: 32px;
    background: white;
  }
  .trust-icon svg { width: 16px; height: 16px; }
}

/* ====== EYEBROW ====== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.eyebrow svg { width: 14px; height: 14px; }

/* ====== LINK ARROW ====== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-blue);
  transition: gap var(--duration) var(--ease);
}

.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 14px; height: 14px; }

/* ====== FORM ELEMENTS ====== */
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  background: var(--color-white);
  transition: border-color var(--duration) var(--ease);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12);
}

.form-input::placeholder { color: var(--color-gray-light); }

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.form-group { margin-bottom: var(--space-lg); }

.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  background: var(--color-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.form-select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12);
}

/* ====== TABLES ====== */
.table-apple {
  width: 100%;
  border-collapse: collapse;
}

.table-apple th {
  text-align: left;
  padding: 12px 16px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-light);
  border-bottom: 1px solid var(--color-border);
}

.table-apple td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.table-apple tr:last-child td { border-bottom: none; }

.table-apple tbody tr:hover {
  background: var(--color-gray-bg);
}

/* ====== PAGINATION ====== */
.pagination-apple {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination-apple a,
.pagination-apple span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  transition: all var(--duration) var(--ease);
}

.pagination-apple a:hover {
  background: var(--color-gray-bg);
  border-color: var(--color-gray-light);
}

.pagination-apple .current {
  background: var(--color-blue);
  color: white;
  border-color: var(--color-blue);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-up { animation: fadeInUp 0.6s var(--ease) both; }
.animate-fade-up-delay-1 { animation-delay: 0.1s; }
.animate-fade-up-delay-2 { animation-delay: 0.2s; }
.animate-fade-up-delay-3 { animation-delay: 0.35s; }
.animate-fade-up-delay-4 { animation-delay: 0.5s; }

/* ====== UTILITY ====== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: white; }
.text-gray { color: var(--color-gray); }
.text-blue { color: var(--color-blue); }
.text-green { color: var(--color-green); }
.text-red { color: var(--color-red); }
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ====== SCREEN READER ====== */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ====== HERO SLIDER ====== */
.phs-hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
}
.phs-hero-slides { position: relative; height: 100%; min-height: 75vh; }

.phs-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phs-hero-slide.active { opacity: 1; position: relative; }

/* Background image */
.phs-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

/* Fallback quand pas d'image = dégradé */
.phs-hero-slide-bg.phs-hero-no-img {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Overlay noir semi-transparent (configurable via Customizer) */
.phs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Content */
.phs-hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 80px 24px;
}
.phs-hero-slide-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.phs-hero-slide-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.phs-hero-slide-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 28px;
}
.text-gradient {
  background: linear-gradient(90deg, #64d2ff, #0071e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTAs */
.phs-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Arrows */
.phs-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.phs-hero-arrow:hover { background: rgba(255,255,255,0.2); }
.phs-hero-arrow.prev { left: 16px; }
.phs-hero-arrow.next { right: 16px; }

/* Dots */
.phs-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.phs-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.phs-hero-dot.active {
  width: 24px;
  background: white;
}

/* ====== CATEGORIES GRID ====== */
.phs-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.phs-cat-card {
  display: flex;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  min-height: 200px;
  transition: transform var(--duration) var(--ease);
}
.phs-cat-card:hover { transform: translateY(-4px); }
.phs-cat-large { grid-column: 1 / -1; background: #1d1d1f; color: white; min-height: 260px; }
.phs-cat-blue { background: #f0f4f8; }
.phs-cat-green { background: #f0f8f0; }
.phs-cat-card-content { padding: 32px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.phs-cat-label { font-size: var(--font-size-xs); text-transform: uppercase; letter-spacing: 0.08em; color: #888; font-weight: 700; }
.phs-cat-large .phs-cat-label { color: rgba(255,255,255,0.5); }
.phs-cat-name { font-size: 1.6rem; font-weight: 800; margin: 6px 0; }
.phs-cat-price { font-size: var(--font-size-sm); color: #888; }
.phs-cat-large .phs-cat-price { color: rgba(255,255,255,0.5); }
.phs-cat-card-img { flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px; }
.phs-cat-card-img img { max-height: 200px; width: auto; object-fit: contain; }
.phs-cat-large .phs-cat-card-img img { max-height: 240px; }

/* ====== PRODUCTS SCROLL ====== */
.phs-products-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 var(--space-lg) 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: var(--max-width);
  margin: 0 auto;
}
.phs-products-scroll::-webkit-scrollbar { height: 4px; }
.phs-products-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.phs-product-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--color-gray-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-black);
  transition: transform var(--duration) var(--ease);
}
.phs-product-card:hover { transform: translateY(-4px); }

.phs-product-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: white;
}
.phs-product-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Placeholder quand pas d'image */
.phs-product-img-wrap img[src=""],
.phs-product-img-wrap img:not([src]) {
  display: none;
}
.phs-product-img-wrap:has(img[src=""]),
.phs-product-img-wrap:empty {
  background: linear-gradient(135deg, #f0f0f2, #e8e8ec);
}

.phs-product-info { padding: 14px 16px 16px; }
.phs-product-brand {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray);
  font-weight: 600;
  margin-bottom: 4px;
}
.phs-product-name {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.phs-product-price {
  font-size: var(--font-size-lg);
  font-weight: 700;
}
.phs-product-price .old-price {
  font-size: var(--font-size-sm);
  color: var(--color-gray-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

/* ====== REPAIR GRID ====== */
.phs-repair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.phs-repair-card {
  text-decoration: none;
  color: inherit;
}
.phs-repair-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.phs-repair-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.phs-repair-card p { font-size: var(--font-size-sm); line-height: 1.6; margin-bottom: 12px; opacity: 0.7; }
.phs-repair-price { font-size: var(--font-size-sm); font-weight: 700; color: var(--color-green); }

/* ====== GRADES SECTION ====== */
.phs-grades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.phs-grade-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
}
.phs-grade-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 16px;
}
.phs-grade-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.phs-grade-card p { font-size: var(--font-size-sm); line-height: 1.6; color: var(--color-gray); }
