@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #050b14;
  --bg-abyssal: #081220;
  --bg-card: rgba(14, 27, 46, 0.75);
  --bg-card-hover: rgba(20, 39, 66, 0.85);
  --bg-glass: rgba(10, 25, 47, 0.65);
  --bg-glass-border: rgba(0, 245, 212, 0.18);
  --bg-input: #0b1a2e;
  
  --primary-cyan: #00f5d4;
  --primary-azure: #00bbf9;
  --primary-glow: rgba(0, 245, 212, 0.35);
  
  --accent-gold: #ffd166;
  --accent-coral: #ff477e;
  --accent-purple: #7b2cbf;
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-highlight: #5eead4;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: 0 0 15px rgba(0, 245, 212, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(0, 245, 212, 0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background aquatic gradient light */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 15%, rgba(0, 187, 249, 0.08) 0%, rgba(5, 11, 20, 0) 70%),
              radial-gradient(circle at 85% 60%, rgba(0, 245, 212, 0.06) 0%, rgba(5, 11, 20, 0) 60%),
              radial-gradient(circle at 15% 80%, rgba(123, 44, 191, 0.06) 0%, rgba(5, 11, 20, 0) 60%);
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #07192f 0%, #0c2b48 50%, #07192f 100%);
  border-bottom: 1px solid rgba(0, 245, 212, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  z-index: 101;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.announcement-tag {
  background: rgba(0, 245, 212, 0.15);
  color: var(--primary-cyan);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(8, 18, 32, 0.96);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  padding: 1rem 0;
  transform: translateZ(0);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00f5d4, #00bbf9);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
  color: #050b14;
  font-size: 1.5rem;
}

.brand-text h1 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ffffff 40%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-azure));
  transition: var(--transition-smooth);
  border-radius: var(--radius-full);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Cart Button */
.cart-trigger-btn {
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.3);
  color: var(--primary-cyan);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.cart-trigger-btn:hover {
  background: rgba(0, 245, 212, 0.2);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
  transform: translateY(-2px);
}

.cart-badge {
  background: linear-gradient(135deg, var(--accent-coral), #ff007f);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 71, 126, 0.6);
}

/* Subtle Admin Panel Trigger */
.nav-admin-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 27, 46, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-admin-btn:hover {
  background: rgba(0, 245, 212, 0.12);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.25);
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00f5d4 0%, #00bbf9 100%);
  color: #050b14;
  box-shadow: 0 4px 20px rgba(0, 245, 212, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(0, 245, 212, 0.6);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 245, 212, 0.4);
  color: var(--primary-cyan);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd166 0%, #f77f00 100%);
  color: #050b14;
  box-shadow: 0 4px 20px rgba(255, 209, 102, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 6px 25px rgba(255, 209, 102, 0.5);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* Hero Section with Canvas */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

#water-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #00f5d4 20%, #00bbf9 60%, #ffd166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-cyan);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Hero Showcase Card */
.hero-showcase {
  position: relative;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.showcase-image-container {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: radial-gradient(circle at center, #0c2b48 0%, #060d17 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-img {
  width: 88%;
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 15px 25px rgba(0, 245, 212, 0.3));
}

.showcase-card:hover .showcase-img {
  transform: scale(1.06) rotate(1deg);
}

.showcase-badge-dna {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(5, 11, 20, 0.9);
  border: 1px solid rgba(0, 245, 212, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.showcase-info {
  margin-top: 1.2rem;
}

.showcase-strain {
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase-name {
  font-size: 1.35rem;
  margin: 0.3rem 0;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.showcase-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Genetics Features Grid */
.genetics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.genetics-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.genetics-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 212, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.genetics-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.2), rgba(0, 187, 249, 0.1));
  border: 1px solid rgba(0, 245, 212, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--primary-cyan);
}

.genetics-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.genetics-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Strains Pills / Carousel Bar */
.strains-bar {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-cyan) transparent;
}

.strain-pill {
  flex: 0 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.strain-pill:hover, .strain-pill.active {
  background: rgba(0, 245, 212, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.25);
}

.strain-pill-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

/* Product Card Component */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: none !important;
  transform: none !important;
}

.product-card:hover {
  transform: none !important;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
}

.product-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  background: radial-gradient(circle at 50% 72%, #0c2035 0%, #060e1a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.25rem 1rem 1.25rem;
}

.product-thumb img {
  width: 82%;
  max-height: 135px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
  transition: none !important;
}

.product-card:hover .product-thumb img {
  transform: none !important;
}

.product-badges {
  position: absolute;
  top: 0.85rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  z-index: 3;
  width: 90%;
  pointer-events: none !important;
  user-select: none;
  text-align: center;
}

.badge-grade {
  background: rgba(5, 11, 20, 0.88);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}

.badge-package {
  background: rgba(0, 187, 249, 0.18);
  border: 1px solid rgba(0, 187, 249, 0.5);
  color: var(--primary-azure);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.product-strain-code {
  font-size: 0.75rem;
  color: var(--primary-cyan);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

.product-title a {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  color: inherit;
  margin: 0 auto;
}

.product-title a:hover {
  color: var(--primary-cyan);
}

.product-genetics-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

/* Customização Avançada dos Combos (Filtros e Selects) */
.custom-combo-group {
  margin-bottom: 1.35rem;
}

.custom-combo-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.custom-combo-label .label-text {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.custom-combo-label .active-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-cyan);
  box-shadow: 0 0 8px var(--primary-cyan);
  display: inline-block;
}

.custom-combo-wrapper {
  position: relative;
  width: 100%;
}

.custom-combo-wrapper::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2300f5d4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.custom-combo-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

.form-control, select.form-control, .custom-select {
  width: 100%;
  background: #081528 !important;
  border: 1px solid rgba(0, 245, 212, 0.25) !important;
  border-radius: var(--radius-md) !important;
  color: #f1f5f9 !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  padding: 0.75rem 2.6rem 0.75rem 1.1rem !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.form-control:hover, select.form-control:hover, .custom-select:hover {
  border-color: rgba(0, 245, 212, 0.6) !important;
  background: #0c1f38 !important;
  box-shadow: 0 0 18px rgba(0, 245, 212, 0.2), 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.form-control:focus, select.form-control:focus, .custom-select:focus {
  border-color: var(--primary-cyan) !important;
  background: #0d2442 !important;
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.25), 0 0 22px rgba(0, 245, 212, 0.3) !important;
}

/* Combo ativo com seleção */
select.form-control.combo-active, .custom-select.combo-active {
  border-color: var(--primary-cyan) !important;
  background: #0a213c !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 0 14px rgba(0, 245, 212, 0.25) !important;
}

/* Estilização dos itens de menu option */
.form-control option, select.form-control option, .custom-select option {
  background: #060e1a !important;
  color: #e2e8f0 !important;
  padding: 0.8rem 1rem !important;
  font-size: 0.9rem !important;
}

.form-control option:checked, select.form-control option:checked, .custom-select option:checked {
  background: #0e2f52 !important;
  color: var(--primary-cyan) !important;
  font-weight: 700 !important;
}

.genetic-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.original-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.btn-add-cart {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-azure));
  color: #050b14;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.btn-add-cart svg {
  stroke: #050b14;
  transition: transform 0.2s ease;
}

.btn-add-cart:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px var(--primary-glow);
}

.btn-add-cart:hover svg {
  transform: scale(1.1);
}

.btn.btn-add-cart {
  width: auto;
  height: auto;
  min-height: 42px;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  gap: 0.5rem;
}

/* Shipping / Guarantee Section */
.guarantee-box {
  background: linear-gradient(135deg, rgba(8, 25, 46, 0.9), rgba(12, 40, 68, 0.7));
  border: 1px solid rgba(0, 245, 212, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.guarantee-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 245, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Sliding Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 11, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-abyssal);
  border-left: 1px solid var(--bg-glass-border);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  color: var(--accent-coral);
  transform: rotate(90deg);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: #091a2e;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item-package {
  font-size: 0.75rem;
  color: var(--primary-cyan);
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.4rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.qty-btn:hover {
  background: var(--primary-cyan);
  color: #000;
}

.cart-item-remove {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--accent-coral);
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: rgba(5, 11, 20, 0.5);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cart-summary-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--primary-cyan);
  border-left-width: 5px;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  max-width: 420px;
  animation: toastSlideIn 0.35s ease forwards;
  backdrop-filter: blur(12px);
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  margin-top: auto;
  background: rgba(4, 8, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--primary-cyan);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .guarantee-box {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
