/* ===== EMAIL MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 40, 0.85);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(10,16,40,0.35);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 14px;
  cursor: pointer;
  color: #6b7280;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: #e5e7eb;
  color: #111;
}
.modal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #0f172a;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.modal-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.modal-form input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.modal-form input:focus {
  border-color: #c0392b;
}
.modal-submit {
  width: 100%;
  padding: 16px !important;
  font-size: 1rem !important;
}
.modal-disclaimer {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 10px;
}
.modal-disclaimer a {
  color: #c0392b;
  text-decoration: none;
}
.modal-success {
  display: none;
  background: #f0fdf4;
  border: 2px solid #16a34a;
  color: #15803d;
  border-radius: 10px;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
}
.modal-success.show {
  display: block;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-8px);
  z-index: 1000;
  border: 1px solid #f3f4f6;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: #fef2f2;
  color: #c0392b;
}

/* ===== INNER PAGE STYLES ===== */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  padding: 100px 24px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.25) 0%, transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  color: #f87171;
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== INNER PAGE PRODUCT SECTION ===== */
.inner-products {
  padding: 64px 0;
  background: #f9fafb;
}
.inner-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.filter-row select {
  padding: 10px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #374151;
  cursor: pointer;
  outline: none;
}
.filter-row select:focus { border-color: #c0392b; }
.results-count {
  margin-left: auto;
  color: #6b7280;
  font-size: 0.9rem;
}

/* ===== INFO SECTIONS ===== */
.info-section {
  padding: 64px 0;
  background: #fff;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.info-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.25s;
}
.info-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.info-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.info-card h3 { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.info-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 64px 0;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 12px;
}
.contact-info p { color: #6b7280; line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-detail-text span { color: #6b7280; font-size: 0.9rem; }

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f3f4f6;
}
.contact-form-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #c0392b; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 2px solid #16a34a;
  color: #15803d;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
  color: #374151;
  line-height: 1.8;
}
.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: #c0392b; }
.legal-date {
  display: inline-block;
  background: #fef2f2;
  color: #c0392b;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 32px;
}

/* =====================================================
   VLNT deal-of-day image strip
===================================================== */
.vlnt-deal-imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 100%;
}
.vlnt-deal-img {
  width: 32%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.vlnt-deal-img:hover { transform: translateY(-6px) scale(1.04); }
.vlnt-deal-img-center {
  width: 36%;
  position: relative;
  z-index: 2;
  transform: translateY(-16px);
}
.vlnt-deal-img-center:hover { transform: translateY(-22px) scale(1.04); }

/* =====================================================
   VLNT SPORTS — homepage banner
===================================================== */
.vlnt-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}
.vlnt-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.vlnt-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .vlnt-banner-inner { grid-template-columns: 1fr; }
}
.vlnt-banner-imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -16px;
}
.vlnt-banner-img {
  width: 38%;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.vlnt-banner-img:hover { transform: translateY(-8px) scale(1.05); }
.vlnt-banner-img-mid {
  width: 42%;
  max-width: 180px;
  margin: 0 -8px;
  z-index: 2;
  position: relative;
  transform: translateY(-12px);
}
.vlnt-banner-img-mid:hover { transform: translateY(-20px) scale(1.05); }

.vlnt-banner-tag {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  color: #f87171;
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vlnt-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.vlnt-banner-title span { color: #f87171; }
.vlnt-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 420px;
}
.vlnt-banner-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.vlnt-banner-was {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.vlnt-banner-now {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}
.vlnt-banner-code {
  background: rgba(192,57,43,0.25);
  border: 1px solid rgba(192,57,43,0.5);
  color: #fca5a5;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}
.vlnt-banner-code strong { color: #fff; }
.vlnt-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   VLNT SPORTS — batting-gear.html featured section
===================================================== */
.vlnt-section {
  padding: 72px 0;
  background: #f9fafb;
  border-top: 3px solid #c0392b;
}
.vlnt-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.vlnt-shop-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c0392b;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid #c0392b;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.vlnt-shop-all:hover { background: #c0392b; color: #fff; }

.vlnt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .vlnt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vlnt-grid { grid-template-columns: 1fr; } }

.vlnt-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #f3f4f6;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.vlnt-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: #c0392b;
}
.vlnt-card-featured {
  border-color: #c0392b;
  box-shadow: 0 8px 32px rgba(192,57,43,0.15);
}

.vlnt-img-wrap {
  position: relative;
  background: #f8fafc;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.vlnt-img {
  width: 100%;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.vlnt-card:hover .vlnt-img { transform: scale(1.05); }
.vlnt-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f172a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.vlnt-badge-hot { background: #c0392b; }

.vlnt-info { padding: 20px; }
.vlnt-brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 6px;
}
.vlnt-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}
.vlnt-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.vlnt-features span {
  font-size: 0.8rem;
  color: #6b7280;
}
.vlnt-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.vlnt-was {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.vlnt-now {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Barlow Condensed', sans-serif;
}
.vlnt-code {
  background: #fef2f2;
  color: #c0392b;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}
.vlnt-btn {
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 12px !important;
}

.vlnt-cta-strip {
  margin-top: 32px;
  background: #0f172a;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.vlnt-cta-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.vlnt-coupon {
  color: #f87171;
  font-weight: 800;
  font-size: 1rem;
}
.vlnt-cta-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #c0392b;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.vlnt-cta-link:hover { background: #a93226; }

/* =====================================================
   SOCIAL STRIP — under fold
===================================================== */
.social-strip {
  background: #0f172a;
  padding: 40px 0;
  overflow: hidden;
}
.social-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.social-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.social-strip-follows {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-follow-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.social-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.social-follow-btn span { color: rgba(255,255,255,0.7); font-weight: 400; font-size: 0.78rem; }
.social-follow-btn strong { color: #fff; }
.ig-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.tt-btn {
  background: #000;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.social-strip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 500;
}
.social-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Post grid — strip */
.social-post-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .social-post-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .social-post-grid { grid-template-columns: repeat(2, 1fr); } }

.social-post {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.social-post-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
}
.social-post-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.social-post:hover .social-post-bg { transform: scale(1.08); }
.social-post-emoji { font-size: 3rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

.social-post-platform {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.ig-badge { background: linear-gradient(135deg, #833ab4, #fd1d1d); color: #fff; }
.tt-badge { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }

.social-post-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  pointer-events: none;
}

.social-post-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 14px;
}
.social-post:hover .social-post-hover { opacity: 1; }

.social-post-caption {
  display: none; /* hidden in strip — shown only in wall */
}

/* =====================================================
   SOCIAL WALL — below footer
===================================================== */
.social-wall {
  background: #080f1e;
  padding: 72px 0 56px;
}
.social-wall-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.social-wall-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.social-wall-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 8px;
}
.social-wall-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}
.social-wall-sub strong { color: rgba(255,255,255,0.85); }
.social-wall-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.social-wall-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-wall-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.ig-wall-cta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.tt-wall-cta { background: #111; color: #fff; border: 1px solid rgba(255,255,255,0.15); }

/* Masonry-style grid */
.social-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
@media (max-width: 768px) {
  .social-wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 480px) {
  .social-wall-grid { grid-template-columns: 1fr 1fr; }
}

.wall-post {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.wall-post-tall { grid-row: span 2; }

.wall-post-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.wall-post:hover .wall-post-bg { transform: scale(1.06); }
.wall-post-emoji {
  font-size: clamp(3rem, 6vw, 5rem);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  opacity: 0.85;
}
.wall-post-platform {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
}
.wall-post-play-lg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.wall-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}
.wall-post:hover .wall-post-overlay { opacity: 1; }
/* Always show bottom info on tall posts */
.wall-post-tall .wall-post-overlay { opacity: 1; }

.wall-post-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
}
.wall-post-caption {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-wall-tag-cta {
  margin-top: 32px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.social-wall-tag-cta strong {
  color: #c0392b;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 600px) {
  .modal-box { padding: 36px 24px 28px; }
  .modal-title { font-size: 1.7rem; }
  .social-strip-header { flex-direction: column; align-items: flex-start; }
  .social-wall-header { flex-direction: column; align-items: flex-start; }
  .social-wall-btns { width: 100%; }
  .social-wall-cta { flex: 1; justify-content: center; }
  .wall-post-tall { grid-row: span 1; }
}
