/* Product Detail Page Styles */

:root {
  --primary: #2563eb;
  --primary-2: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --bg-gray: #f8fafc;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg-gray);
}

.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .separator {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 600;
}

/* Product Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  margin-bottom: 60px;
}

/* Left Column */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Gallery */
.gallery-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.main-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-gray);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-favorite,
.btn-share {
  position: absolute;
  top: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.btn-favorite {
  right: 16px;
  color: var(--danger);
}

.btn-favorite:hover {
  background: var(--danger);
  color: white;
  transform: scale(1.1);
}

.btn-favorite.active i::before {
  content: '\f004';
  font-weight: 900;
}

.btn-share {
  right: 72px;
  color: var(--primary);
}

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

.thumbnail-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
}

.thumbnail {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  border: 3px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  background: none;
  padding: 0;
}

.thumbnail:hover {
  border-color: var(--primary);
}

.thumbnail.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .2);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Description */
.description-section,
.specs-section,
.reviews-section {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.description-section h2,
.specs-section h2,
.reviews-section h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.description-section h2 i,
.specs-section h2 i,
.reviews-section h2 i {
  color: var(--primary);
}

.description-content {
  color: var(--text-primary);
  line-height: 1.8;
}

.description-content ul {
  padding-right: 24px;
  margin: 16px 0;
}

.description-content li {
  margin: 8px 0;
}

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

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 8px;
}

.spec-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.spec-value {
  font-weight: 700;
  color: var(--text-primary);
}

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-score {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-stars i {
  color: var(--warning);
  font-size: 18px;
}

.rating-stars span {
  font-size: 14px;
  color: var(--text-secondary);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-item {
  padding: 20px;
  background: var(--bg-gray);
  border-radius: 12px;
}

.review-item .review-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-rating i {
  color: var(--warning);
  font-size: 14px;
}

.review-date {
  font-size: 13px;
  color: var(--text-secondary);
}

.review-text {
  margin: 0;
  line-height: 1.6;
  color: var(--text-primary);
}

/* Right Column */
.product-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

/* Product Info Card */
.product-info-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.product-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.product-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}

.product-meta i {
  color: var(--primary);
}

.product-price-section {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .05) 0%, rgba(6, 182, 212, .05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(37, 99, 235, .1);
}

.price-main {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.price-main span {
  font-size: 24px;
}

.price-negotiable {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
}

.product-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-gray);
  border-radius: 10px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.product-location i {
  color: var(--danger);
  font-size: 18px;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

/* .btn-primary,
.btn-secondary {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  font-size: 16px;
} */

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, .3);
}

/* .btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
} */

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

.safety-tips {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(245, 158, 11, .1);
  border-radius: 10px;
  border: 2px solid rgba(245, 158, 11, .2);
}

.safety-tips i {
  color: var(--warning);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.safety-tips strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.safety-tips ul {
  margin: 0;
  padding-right: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.safety-tips li {
  margin: 4px 0;
}

/* Seller Card */
/* Seller Card - Centered Profile Layout */
.seller-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Top Banner */
.seller-card::before {
  content: '';
  display: block;
  height: 110px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.seller-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Header Text (Small top right) */
.seller-card h3 {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.seller-card h3 i {
  color: white;
  background: none;
  width: auto;
  height: auto;
  font-size: 12px;
  margin-left: 6px;
}

/* Info Wrapper */
.seller-info {
  margin-top: 60px;
  /* Push down to overlap banner properly */
  flex-direction: column;
  align-items: center;
  border-bottom: none;
  padding: 0 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.seller-info img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-bottom: 16px;
  background: white;
}

.seller-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.seller-details h4 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.verified {
  color: white;
  font-size: 12px;
  background: #10b981;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.seller-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  background: white;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.seller-rating i {
  color: #f59e0b;
  font-size: 14px;
}

.seller-rating span {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 14px;
}

.seller-member {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  padding: 0;
  font-weight: 600;
}

.seller-member::before {
  content: '\f073';
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: #94a3b8;
}

/* Stats Row */
.seller-stats {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
  padding: 16px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  width: 100%;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.stat:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.stat-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

/* Button */
.btn-view-profile {
  margin: 0 0 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-view-profile::before {
  display: none;
}

.btn-view-profile:hover {
  background: #1d4ed8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-view-profile:hover i {
  transform: scale(1.1);
}

/* Report Button */
.btn-report {
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--danger);
  border: 2px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-report:hover {
  border-color: var(--danger);
  background: var(--danger);
  color: white;
}

/* Related Products */
.related-section {
  margin-top: 60px;
}

.related-section h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 32px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.related-section h2 i {
  color: var(--primary);
}

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

.related-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  text-decoration: none;
  display: block;
}

.related-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(6, 182, 212, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.related-card:hover::before {
  opacity: 1;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, .15);
  border-color: rgba(37, 99, 235, 0.2);
}

.related-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.related-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.related-card:hover .related-image::after {
  opacity: 1;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-image img {
  transform: scale(1.1);
}

.btn-favorite-small {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .95);
  border: none;
  border-radius: 50%;
  color: var(--danger);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-favorite-small:hover {
  background: var(--danger);
  color: white;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.related-content {
  padding: 18px;
  position: relative;
}

.related-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  line-height: 1.4;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.related-card:hover .related-content h4 {
  color: var(--primary);
}

.related-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 20px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 10px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.related-price span {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.related-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 6px 10px;
  background: #f8fafc;
  border-radius: 6px;
  width: fit-content;
}

.related-location i {
  color: #ef4444;
  font-size: 12px;
}


/* Header & Footer (scoped to product detail page so global header is not overridden) */
.product-detail-page .header-modern {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.product-detail-page .header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-detail-page .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 30px;
}

.product-detail-page .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s;
}

.product-detail-page .brand-logo:hover {
  transform: scale(1.02);
}

.product-detail-page .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .25);
}

.product-detail-page .logo-text {
  display: flex;
  flex-direction: column;
}

.product-detail-page .brand-name {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.product-detail-page .brand-tagline {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.product-detail-page .main-nav {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.product-detail-page .main-nav a {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  transition: all 0.3s;
}

.product-detail-page .main-nav a:hover {
  background: #f8fafc;
  color: #2563eb;
}

.product-detail-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-detail-page .icon-link,
.product-detail-page .user-profile-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
  text-decoration: none;
}

.product-detail-page .icon-link:hover,
.product-detail-page .user-profile-link:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.product-detail-page .footer-modern {
  background: #0f172a;
  color: white;
  margin-top: 60px;
}

.product-detail-page .main-footer {
  padding: 60px 0 30px;
}

.product-detail-page .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.product-detail-page .footer-section h5 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: white;
}

.product-detail-page .footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-detail-page .footer-brand .footer-logo i {
  font-size: 28px;
  color: #2563eb;
}

.product-detail-page .footer-brand .footer-logo h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.product-detail-page .footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.product-detail-page .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-detail-page .footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.product-detail-page .footer-section ul li a:hover {
  color: #2563eb;
  transform: translateX(-4px);
}

.product-detail-page .social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.product-detail-page .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.product-detail-page .social-links a:hover {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  transform: translateY(-2px);
}

.product-detail-page .footer-copyright {
  color: #64748b;
  font-size: 14px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-layout {
    grid-template-columns: 1fr 360px;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .product-right {
    position: static;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-actions {
    flex-direction: column;
  }

  .seller-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}