/* ==========================================================
   🖤 OXVA VAPES UK — STORE CATALOGUE MOBILE CSS (2025)
   ========================================================== */

/* ---------- Global Section ---------- */
.oxva-section {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 70px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---------- Headings ---------- */
.oxva-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}
.oxva-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 15px auto 25px;
  border-radius: 3px;
  background: linear-gradient(90deg,#f24a2e,#ff4d4d);
}
.oxva-section p {
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

/* ---------- Product Grid ---------- */
.oxva-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* ---------- Product Card ---------- */
.oxva-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: all .3s ease;
  text-align: center;
  padding-bottom: 15px;
}
.oxva-card:hover {
  transform: translateY(-6px);
  border-color: #f24a2e;
  box-shadow: 0 0 25px rgba(242,74,46,0.35);
}

/* ---------- Images ---------- */
.oxva-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #000;
}

/* ---------- Text ---------- */
.oxva-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 18px 10px 8px;
  line-height: 1.4;
  text-transform: lowercase;
}
.oxva-card h3:first-letter {
  text-transform: capitalize;
}
.oxva-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0 15px 12px;
  line-height: 1.6;
  min-height: 60px;
}
.oxva-card .price {
  color: #f24a2e;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  font-size: 1rem;
}

/* ---------- Buttons ---------- */
.oxva-card a {
  display: inline-block;
  background: linear-gradient(90deg,#f24a2e,#ff4d4d);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none !important;
  margin: 8px auto 12px;
  box-shadow: 0 4px 10px rgba(242,74,46,0.25);
  transition: all 0.3s ease;
}
.oxva-card a:hover {
  background: linear-gradient(90deg,#ff4d4d,#f24a2e);
  transform: translateY(-2px);
}
.oxva-card a:visited {
  color: #fff !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .oxva-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .oxva-section { padding: 60px 15px; }
  .oxva-grid { grid-template-columns: 1fr; gap: 25px; }
  .oxva-card img { height: 220px; }
  .oxva-card p { min-height: auto; }
  .oxva-card h3 { font-size: 1rem; }
  .oxva-card a { padding: 12px 30px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .oxva-section h2 { font-size: 1.6rem; }
  .oxva-card img { height: 200px; }
}
/* ==========================================================
   🩸 OXVA VAPE STORE — FAQ & FOOTER STYLING
   ========================================================== */

/* ---------- FAQ Section ---------- */
.oxva-faq {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: left;
  padding: 80px 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.oxva-faq h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.oxva-faq h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,#f24a2e,#ff4d4d);
  border-radius: 3px;
  margin: 15px auto 25px;
}

.oxva-faq .faq-item {
  max-width: 850px;
  margin: 0 auto 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.oxva-faq h3 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.oxva-faq p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.oxva-faq a {
  color: #f24a2e;
  font-weight: 600;
  text-decoration: none;
}
.oxva-faq a:hover { text-decoration: underline; }

/* ---------- Footer CTA ---------- */
.oxva-footer {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 70px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.oxva-footer h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.oxva-footer p {
  max-width: 800px;
  margin: 0 auto 14px;
  line-height: 1.7;
  color: #ccc;
}

.oxva-footer strong { color: #ff4d4d; }
.oxva-footer a {
  color: #f24a2e;
  text-decoration: none;
  font-weight: 600;
}
.oxva-footer a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .oxva-faq { padding: 60px 15px; }
  .oxva-faq h2 { font-size: 1.6rem; }
  .oxva-footer { padding: 50px 15px; }
  .oxva-footer h2 { font-size: 1.3rem; }
}
/* ==========================================================
   🖤 OXVA VAPE STORE — MICRO-ANIMATIONS & SPACING POLISH
   ========================================================== */

/* ---------- Fade-in Animation ---------- */
@keyframes oxvaFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.oxva-card,
.oxva-faq .faq-item,
.oxva-footer {
  opacity: 0;
  animation: oxvaFadeIn 0.9s ease-out forwards;
}

.oxva-card:nth-child(1) { animation-delay: 0.1s; }
.oxva-card:nth-child(2) { animation-delay: 0.2s; }
.oxva-card:nth-child(3) { animation-delay: 0.3s; }
.oxva-card:nth-child(4) { animation-delay: 0.4s; }
.oxva-card:nth-child(5) { animation-delay: 0.5s; }
.oxva-card:nth-child(6) { animation-delay: 0.6s; }
.oxva-card:nth-child(7) { animation-delay: 0.7s; }
.oxva-card:nth-child(8) { animation-delay: 0.8s; }

/* ---------- Subtle Hover Glow ---------- */
.oxva-card:hover {
  box-shadow: 0 0 25px rgba(242,74,46,0.35), 0 0 8px rgba(255,77,77,0.25);
}

/* ---------- Button Pulse Hover ---------- */
.oxva-card a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 15px rgba(242,74,46,0.35);
}

/* ---------- Section Transition Polish ---------- */
.oxva-section + .oxva-section,
.oxva-section + .oxva-faq,
.oxva-faq + .oxva-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---------- Smooth Scrolling ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- Mobile Spacing Fix ---------- */
@media (max-width: 768px) {
  .oxva-section { padding-top: 60px; padding-bottom: 50px; }
  .oxva-card { margin-bottom: 10px; }
  .oxva-faq { padding-top: 50px; padding-bottom: 40px; }
  .oxva-footer { padding-top: 40px; padding-bottom: 40px; }
}
