/* ===========================
   Service Full Card (services page)
   =========================== */
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-full-card__header {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
}

.service-full-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.service-full-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-full-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-full-card__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.service-full-card__meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.service-full-card__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.service-full-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.service-full-card__price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* Package badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge--gold {
  background: var(--gold);
  color: var(--navy);
}

.badge--navy {
  background: var(--navy);
  color: var(--white);
}

.badge--light {
  background: var(--bg-light);
  color: var(--text-secondary);
}

/* ===========================
   Services Categories
   =========================== */
.services-section {
  padding: var(--space-xl) 0;
}

.services-section + .services-section {
  padding-top: 0;
}

.category-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.category-label__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.category-label__text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===========================
   Shop / Product Cards
   =========================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card__image {
  aspect-ratio: 1;
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  color: var(--gold);
  font-size: 3rem;
}

.product-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

/* Cart icon */
.cart-icon {
  position: relative;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cart-icon svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   Booking Page Components
   =========================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}

.booking-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

.booking-panel__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.booking-step__num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.booking-step__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

/* Time slots */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}

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

.time-slot {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.time-slot:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.time-slot.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--bg-light);
}

/* Order summary */
.booking-summary {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.booking-summary__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.booking-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.booking-summary__item:last-of-type {
  border-bottom: none;
}

.booking-summary__total {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-summary__total-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.booking-summary__total-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.booking-note {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: var(--space-md);
}

.booking-note strong {
  color: var(--gold);
}

/* Confirmation card */
.booking-confirmation {
  display: none;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  text-align: center;
}

.booking-confirmation.show {
  display: block;
}

.booking-confirmation__icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--navy);
}

.booking-confirmation__icon svg {
  width: 36px;
  height: 36px;
}

.booking-confirmation__title {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.booking-confirmation__text {
  color: var(--text-secondary);
  max-width: 45ch;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

/* ===========================
   Contact Page
   =========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-item__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-item__value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-info-item__value a {
  color: var(--navy);
  transition: color var(--transition);
}

.contact-info-item__value a:hover {
  color: var(--gold-dark);
}

/* ===========================
   Hours Table
   =========================== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
}

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

.hours-table .closed {
  color: var(--text-muted);
}

/* ===========================
   Forms
   =========================== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B1F3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error {
  font-size: 0.8rem;
  color: #E53E3E;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #E53E3E;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  background: #F0FFF4;
  border: 1px solid #9AE6B4;
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  color: #276749;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.form-success.show {
  display: flex;
}

/* ===========================
   Athlete Spotlight Cards
   =========================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

.spotlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-left: 4px solid var(--gold);
}

.spotlight-card__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.spotlight-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.spotlight-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.spotlight-card__quote {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
}

/* ===========================
   Announcement Banner
   =========================== */
.announce-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.5rem var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.announce-bar a {
  text-decoration: underline;
  color: var(--navy);
}

/* ===========================
   Social Feeds Section
   =========================== */
.social-feeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 900px) {
  .social-feeds {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.social-feed-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.social-feed-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.social-feed-label svg {
  flex-shrink: 0;
  color: var(--navy);
}

/* Facebook Page Plugin responsive wrapper */
.fb-page-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

.fb-page-wrap iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
}

.fb-feed-cta {
  margin-top: var(--space-md);
  text-align: center;
}

/* Instagram placeholder card (shown until live widget is connected) */
.ig-placeholder-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.ig-placeholder-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ig-placeholder-card__handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
}

.ig-placeholder-card__bio {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
  max-width: 280px;
}

.ig-placeholder-card .btn {
  margin-top: 0.25rem;
}
