/* ROXY WELLNESS - STYLES */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { -webkit-font-smoothing: antialiased; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0866FF 0%, #00C2FF 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(8, 102, 255, 0.35);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(8, 102, 255, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #0866FF;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #0866FF;
  text-decoration: none;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: linear-gradient(135deg, #0866FF 0%, #00C2FF 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: white;
  color: #0866FF;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.8);
  text-decoration: none;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.btn-outline-white:hover {
  background-color: white;
  color: #0866FF;
  border-color: white;
  transform: translateY(-2px);
}

/* Navigation */
.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1C2B4A;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0866FF, #00C2FF);
  transition: width 0.3s ease;
}
.nav-link:hover { color: #0866FF; }
.nav-link:hover::after { width: 100%; }

.mobile-nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1C2B4A;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(8, 102, 255, 0.1);
  transition: all 0.3s ease;
}
.mobile-nav-link:hover {
  color: #0866FF;
  padding-left: 0.5rem;
}

/* Cart */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #0866FF, #00C2FF);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(8, 102, 255, 0.2);
  border-color: rgba(8, 102, 255, 0.2);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #0866FF, #00C2FF);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  z-index: 10;
}

.product-add-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: #0866FF;
  z-index: 10;
}
.product-card:hover .product-add-btn {
  opacity: 1;
  transform: translateY(0);
}
.product-add-btn:hover {
  background: linear-gradient(135deg, #0866FF, #00C2FF);
  color: white;
}

.product-card-content { padding: 1.5rem; }

/* FAQ */
.faq-item {
  background: #F8FAFC;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.faq-item:hover { border-color: rgba(8, 102, 255, 0.2); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1C2B4A;
  font-family: inherit;
}
.faq-question:hover { color: #0866FF; }

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0866FF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #64748B;
  line-height: 1.7;
}

/* Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F8FAFC; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0866FF, #00C2FF);
  border-radius: 4px;
}

::selection { background: #0866FF; color: white; }

@media (max-width: 768px) {
  .btn-primary, .btn-outline, .btn-white, .btn-outline-white {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
  }
}
