/*
 * COMPONENTS
 * Reusable UI components
 */

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  transition: transform 0.2s, background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--text-main);
  color: var(--bg-dark);
  padding: 15px 35px;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-family-heading);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(253, 203, 88, 0.2);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(253, 203, 88, 0.1);
}

.btn-large {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* === PRODUCT GRID === */
.products-grid {
  display: grid;
  grid-template-columns: var(--products-grid-columns);
  gap: var(--grid-gap);
}

/* === PRODUCT CARD === */
.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 203, 88, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(253, 203, 88, 0.1);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: rgba(255, 255, 255, 0.04);
}

.product-image-placeholder.large {
  aspect-ratio: 1;
  max-width: 500px;
}

.product-info {
  padding: var(--space-4);
}

.product-info h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.product-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
}

.price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.price.large {
  font-size: var(--font-size-2xl);
}

.product-actions {
  padding: 0 var(--space-4) var(--space-4);
}

.product-actions .btn {
  width: 100%;
}

/* === HERO SECTION (Landing) === */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden; /* Empêche la vidéo de déborder */
  margin-top: calc(-1 * var(--header-height));
  margin-bottom: 40px;
}

/* Vidéo en background */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.4), var(--bg-dark));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Au-dessus de la vidéo et du filtre */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(253, 203, 88, 0.3));
  animation: floatLogo 6s ease-in-out infinite;
}

.hero-wordmark {
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 10vw, 5rem);
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 18px rgba(253, 203, 88, 0.25));
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero p {
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: var(--primary);
  font-family: var(--font-family-accent);
  margin-bottom: 40px;
  transform: rotate(-2deg);
}

/* === TICKER === */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: var(--accent);
  padding: 10px 0;
  transform: rotate(-1deg) scale(1.05);
  z-index: 2;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 20px;
  font-family: var(--font-family-heading);
  font-size: 1.2rem;
  color: white;
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CATEGORIES === */
.categories-nav {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: var(--border-width) solid var(--color-border);
}

.category-link {
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.category-link:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.category-section {
  margin-bottom: var(--space-12);
}

.category-section h2 {
  margin-bottom: var(--space-6);
}

/* === ORDER MODES === */
.order-modes {
  padding: var(--space-12) 0;
}

.order-modes h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--grid-gap);
  max-width: 600px;
  margin: 0 auto;
}

.mode-option {
  text-align: center;
  padding: var(--space-8);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.mode-option:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.mode-option h3 {
  margin-bottom: var(--space-2);
}

.mode-option p {
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

/* === PRODUCT DETAIL === */
.back-link {
  display: inline-block;
  margin-bottom: var(--space-6);
  color: var(--color-text-light);
}

.back-link:hover {
  color: var(--color-primary);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.product-detail-image {
  width: 100%;
  border-radius: var(--radius-lg);
}

.product-content h1 {
  margin-bottom: var(--space-4);
}

.product-content .description {
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.product-form {
  margin-top: var(--space-6);
}

/* === STEP FIELDSET === */
.step-fieldset {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 25px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.02);
}

.step-fieldset legend {
  font-family: var(--font-family-heading);
  font-weight: 800;
  padding: 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-size: 1.1rem;
}

.step-fieldset .required {
  font-size: 0.7rem;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.choices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.choice-label {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.choice-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.choice-label:hover {
  border-color: rgba(253, 203, 88, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.choice-label:has(input:checked) {
  border-color: var(--primary);
  background: rgba(253, 203, 88, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.choice-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  width: 100%;
}

.choice-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.choice-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.choice-price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 800;
  margin-top: 5px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.quantity-selector input {
  width: 80px;
  text-align: center;
}

/* === CART === */
.cart-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

@media (max-width: 992px) {
  .cart-content {
    grid-template-columns: 1fr;
  }
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .item-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.item-selections {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 10px 0;
  padding-left: 0;
  list-style: none;
}

.item-selections li {
  position: relative;
  padding-left: 15px;
}

.item-selections li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.item-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.item-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.quantity-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 5px;
  gap: 15px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: var(--primary);
  color: #000;
}

.quantity {
  font-weight: 800;
  font-size: 1.1rem;
  min-width: 25px;
  text-align: center;
}

.btn-remove {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.btn-remove:hover {
  opacity: 1;
  text-decoration: underline;
}

.cart-summary {
  padding: 35px;
  background: linear-gradient(145deg, #1A1A1A 0%, #0D0D0D 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  height: fit-content;
  position: sticky;
  top: 110px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.summary-row.total span:last-child {
  color: var(--primary);
}

.cart-summary .btn {
  width: 100%;
  margin-bottom: 15px;
}

.empty-cart {
  text-align: center;
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.empty-cart p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

/* === CHECKOUT === */
.checkout-content {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section h2 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.order-summary {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.summary-item:last-child {
  border-bottom: none;
}

.checkout-content > .btn {
  width: 100%;
  margin-top: 20px;
}

/* Specific Checkout Delivery Box */
.delivery-quote-box {
  padding: 20px;
  background: rgba(253, 203, 88, 0.05);
  border: 1px solid rgba(253, 203, 88, 0.2);
  border-radius: 18px;
  margin-top: 20px;
}

.delivery-quote-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 700;
}

.delivery-quote-row:last-child {
  margin-bottom: 0;
}

.delivery-quote-label {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.delivery-quote-value {
  color: #fff;
}

.delivery-quote-info {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
}

/* === SUCCESS PAGE === */
.success-page {
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--color-success);
  color: white;
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
  animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.order-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin: 15px 0;
  font-family: var(--font-family-heading);
}

.order-details {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.next-steps {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* === FEATURED SECTION === */
.featured {
  padding: var(--space-12) 0;
}

.featured h2 {
  text-align: center;
  margin-bottom: var(--space-8);
}

/* === EMPTY STATE === */
.empty-category {
  color: var(--color-text-light);
  font-style: italic;
}

/* =========================================================
   LANDING / OR'OTISSERIE SECTIONS
   ========================================================= */

/* Sections common */
.menu-section {
  padding-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1;
}

.section-subtitle {
  font-family: var(--font-family-accent);
  color: var(--primary);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

.btn-link {
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.btn-link:hover {
  color: var(--primary);
  border-bottom-color: rgba(253, 203, 88, 0.6);
}

/* Frequent searches links */
.frequent-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.frequent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: var(--text-main);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.frequent-link:hover {
  border-color: rgba(253, 203, 88, 0.55);
  background: rgba(253, 203, 88, 0.1);
  transform: translateY(-2px);
}

.frequent-link__label {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.frequent-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.frequent-link:hover .frequent-link__arrow {
  transform: translateX(2px);
  border-color: rgba(253, 203, 88, 0.7);
}

@media (max-width: 768px) {
  .frequent-links-grid {
    grid-template-columns: 1fr;
  }

  .frequent-link__label {
    font-size: 1rem;
  }
}

/* Cards scroll */
.cards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 20px 40px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.cards-scroll::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: 280px;
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-price {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Features grid */
.features-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.feature-number {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.feature-title {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pre-footer */
.pre-footer {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-dark) 100%);
}

.pre-footer h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pre-footer p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--accent);
  color: #ffffff; /* Explicit white for contrast */
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  box-shadow: 0 15px 35px rgba(248, 81, 73, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.25);
  width: max-content;
}

.floating-cta:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
  background: var(--color-accent-hover);
  box-shadow: 0 20px 40px rgba(248, 81, 73, 0.5);
}

@media (min-width: 768px) {
  .cards-scroll {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
  }
  .card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

