:root {
  --primary-gradient: linear-gradient(45deg, #ff6b6b, #ff8e53, #ffb347, #ffcc5c);
  --secondary-gradient: linear-gradient(45deg, #e91e63, #ff4081, #ff80ab, #f48fb1);
  --tertiary-gradient: linear-gradient(45deg, #8e24aa, #ba68c8, #e1bee7, #f3e5f5);
  --dark-peach: linear-gradient(45deg, #d84315, #ff7043, #ffab91, #ffccbc);
}

.bg-gradient-primary {
  background: var(--primary-gradient) !important;
  color: white !important;
}

.bg-gradient-secondary {
  background: var(--secondary-gradient) !important;
  color: white !important;
}

.bg-gradient-tertiary {
  background: var(--tertiary-gradient) !important;
  color: white !important;
}

.bg-gradient-dark-peach {
  background: var(--dark-peach) !important;
  color: white !important;
}

.hero-section {
  background: var(--primary-gradient);
  color: white;
  padding: 5rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.pill-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  background: linear-gradient(145deg, #ffffff, #fff5f0);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
  border-radius: 15px;
}

.pill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.2);
  background: linear-gradient(145deg, #fff5f0, #ffe8dc);
}

.price-badge {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  background: var(--secondary-gradient) !important;
  color: white;
}

.footer {
  background: linear-gradient(45deg, #333333, #555555);
  color: white;
  padding: 2rem 0;
  margin-top: 3rem;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  color: white;
}

.btn-outline-primary {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

.btn-outline-primary:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
}

.navbar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge.bg-primary {
  background: var(--primary-gradient) !important;
}

.badge.bg-success {
  background: linear-gradient(45deg, #00c853, #64dd17, #aeea00) !important;
}

.badge.bg-warning {
  background: linear-gradient(45deg, #ff9100, #ffab40, #ffcc80) !important;
}

.badge.bg-info {
  background: linear-gradient(45deg, #00b0ff, #40c4ff, #80d8ff) !important;
}

.alert-info {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
  border-color: #90caf9;
  color: #1565c0;
}

.alert-success {
  background: linear-gradient(45deg, #e8f5e9, #c8e6c9);
  border-color: #81c784;
  color: #2e7d32;
}

.alert-warning {
  background: linear-gradient(45deg, #fff3e0, #ffe0b2);
  border-color: #ffb74d;
  color: #ef6c00;
}

.alert-danger {
  background: linear-gradient(45deg, #ffebee, #ffcdd2);
  border-color: #e57373;
  color: #c62828;
}

.card-header.bg-success {
  background: linear-gradient(45deg, #00c853, #64dd17, #aeea00) !important;
}

/* Sexy floating animation for call-to-action */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Sexy hover effects for buttons */
.btn-sexy {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-sexy::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-sexy:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

/* Glowing effect for important elements */
.glow {
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.glow:hover {
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.7);
}

/* Sexy pill icon styling */
.bi-capsule-pill {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff5f0;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff5252, #ff7b47);
}

/* Sexy table styling */
.table-hover tbody tr:hover {
  background: linear-gradient(90deg, rgba(255, 235, 238, 0.5), rgba(255, 224, 178, 0.5));
}

/* Custom form control styling */
.form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

/* Sexy progress bars */
.progress-bar {
  background: var(--primary-gradient);
}

/* Pagination sexy styling */
.page-item.active .page-link {
  background: var(--primary-gradient);
  border-color: #ff6b6b;
}

.page-link {
  color: #ff6b6b;
}

.page-link:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff5252;
}

/* Products */

.product-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}

.product-header {
  background: linear-gradient(45deg, #2e7d32, #388e3c);
  color: white;
  padding: 1.5rem;
  border-radius: 15px 15px 0 0;
}

.btn-sensual {
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-sensual:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
  color: white;
}

.product-image-placeholder {
  position: relative;
  overflow: hidden;
}

.product-image-placeholder::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.breadcrumb {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.breadcrumb-item.active {
  color: #2e7d32;
  font-weight: 500;
}
