/*
Theme Name: Wavy Vapes
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Custom theme with scroll-bound animations (GSAP + ScrollTrigger).
Version: 1.0.0
Text Domain: wavy-vapes
*/

:root {
  --bg-hue: 0deg;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}



h1,
h2,
h3,
h4 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.textarea {
  resize: none;
}

.wv-mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
  filter: hue-rotate(var(--bg-hue));
}

.wv-cloud-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.wv-cloud {
  position: absolute;
  opacity: 0.55;
  will-change: transform, translate;
  animation: cloud-bob 6s ease-in-out infinite, cloud-drift 90s linear infinite;
}

.wv-cloud svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Individual cloud variants — stagger size, opacity, speed */
.wv-cloud--a {
  width: clamp(240px, 28vw, 520px);
  opacity: 0.5;
  animation: cloud-bob 7s ease-in-out infinite, cloud-drift 120s linear infinite;
}

.wv-cloud--b {
  width: clamp(180px, 20vw, 380px);
  opacity: 0.4;
  animation: cloud-bob 5.5s ease-in-out -2s infinite, cloud-drift 95s linear -30s infinite;
}

.wv-cloud--c {
  width: clamp(260px, 30vw, 560px);
  opacity: 0.35;
  animation: cloud-bob 8s ease-in-out -1s infinite, cloud-drift 140s linear -50s infinite;
}

.wv-cloud--d {
  width: clamp(160px, 18vw, 340px);
  opacity: 0.45;
  animation: cloud-bob 6.5s ease-in-out -3s infinite, cloud-drift 100s linear -20s infinite;
}

.wv-cloud--e {
  width: clamp(200px, 24vw, 440px);
  opacity: 0.3;
  animation: cloud-bob 9s ease-in-out -4s infinite, cloud-drift 130s linear -60s infinite;
}

/* Horizontal drift uses `transform` */
@keyframes cloud-drift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(80px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Vertical bob uses individual `translate` property so it
   composes with the transform-based drift without conflict */
@keyframes cloud-bob {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

.wv-container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.wv-section {
  padding: 96px 0;
}

.product_title {
  padding-right: 50px;
  margin: 0;
}

.wv-hero {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  min-height: 900px;
  display: flex;
  align-items: center;
}

.wv-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

@media (max-width: 900px) {
  .wv-hero {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: unset;
  }

  .wv-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .wv-hero-visual {
    height: 300px;
  }

  .wv-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .wv-hero-visual {
    height: 250px;
  }
}

.wv-hero-text h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: rgba(255, 255, 255, 0.95);
}

.wv-hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 32px 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

.wv-hero-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #0083b0;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.wv-hero-cta:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wv-hero-visual {
  position: relative;
  height: 500px;
  /* Increased height for the new image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-hero-image-blob {
  width: 100%;
  height: 100%;
  background-image: url('assets/images/wavy-hero.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.3);
}


.wv-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 20px;
}

/* Announcement Bar */
.wv-announcement-bar {
  background-color: #1d2a58;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 0.875rem;
  position: relative;
  overflow: visible;
  /* Allow pseudo-element to be visible */
  z-index: 101;
  /* Higher z-index to overlap header */
  --banner-color-background: #1d2a58;
  --banner-color-text: #ffffff;
}

.wv-announcement-bar::after {
  --wave-size-inline: 2160px;
  --wave-size-block: 12px;
  animation: wave-scroll 8s linear infinite;
  background-color: var(--banner-color-background, #1d2a58);
  block-size: var(--wave-size-block);
  bottom: -10px;
  /* Position at the bottom */
  content: "";
  inline-size: calc(var(--wave-size-inline) + 1px);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  position: absolute;
  left: 0;
}


.wv-announcement-content {
  display: flex;
  animation: scroll-announcement 130s linear infinite;
  white-space: nowrap;
  align-items: center;
  height: 100%;
}

.wv-announcement-item {
  padding: 0 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.wv-announcement-item a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.wv-announcement-item a:hover {
  opacity: 0.7;
}

.wv-announcement-item::after {
  content: '☁️';
  margin-left: 3rem;
  opacity: 0.6;
}

.wv-announcement-item:last-child::after {
  display: none;
}

@keyframes scroll-announcement {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes calm-wave-scroll {
  from {
    transform: translateX(0) scaleY(-1);
  }

  to {
    transform: translateX(-432px) scaleY(-1);
  }
}

@keyframes wave-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-432px);
    /* 20% of 2160px */
  }
}

.wv-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  border-image-slice: 1;
  position: absolute;
  /* Changed from fixed */
  top: 50px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.wv-header--sticky {
  position: fixed;
  top: 0;
  background: rgba(0, 131, 176, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}


.wv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wv-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (min-width: 641px) {
  .wv-mobile-toggle {
    display: none;
  }
}

@media (max-width: 640px) {

  .wv-header-actions .wv-nav-link,
  .wv-header-actions .wv-shop-dropdown {
    display: none;
  }

  .wv-mobile-toggle {
    display: block;
  }
}

.wv-header-link {
  display: inline-block;
}

@media (max-width: 640px) {
  .wv-header-link {
    display: none;
  }
}

.wv-cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wv-cart-count {
  display: none;
}

@media (min-width: 640px) {
  .wv-cart-count {
    display: inline;
  }
}

.wv-mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.wv-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 1);
}

.wv-mobile-toggle svg {
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.wv-mobile-toggle.active svg {
  transform: rotate(180deg);
}

@media (min-width: 769px) {
  .wv-mobile-toggle {
    display: none !important;
  }
}


.wv-nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.wv-nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.wv-logo {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.wv-logo img {
  width: 90px;
  position: relative;
  z-index: 9999;
}

.wv-sticky-row {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .wv-sticky-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wv-sticky-media {
    position: static;
    top: unset;
  }
}

.wv-sticky-media {
  position: sticky;
  top: 20%;
}

.wv-product-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

.wv-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wv-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.wv-card a {
  color: inherit;
  text-decoration: none;
}

.wv-card-title {
  margin: 0;
  font-size: 1.125rem;
}

.wv-muted {
  color: rgba(226, 232, 240, 0.82);
}

.wv-text {
  color: rgba(241, 245, 249, 0.92);
}

.p-6 {
  padding: 1.5rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-6 {
  gap: 1.5rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.min-w-0 {
  min-width: 0;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-5 {
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:row-span-2 {
    grid-row: span 2 / span 2;
  }
}

/* Single Product Page Styles */
.wv-single-product {
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.23) 38%, rgba(0, 152, 194, 1) 86%);
  min-height: 100vh;
  padding: 120px 0 80px 0;
}

.wc-block-components-product-name {
  color: #ffffff;
}

/* Product Container */
.wv-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  align-items: start;
}

.wv-product-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wv-product-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.woocommerce-cart .wv-glass {
  padding: 30px;
}

/* Removed custom wv_product layout styles - using WooCommerce only */

.wv-product-title h1,
.wv-product-title {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  color: #6b46c1 !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  text-transform: lowercase !important;
}

/* Product Description Box */
.wv-product-description-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(107, 70, 193, 0.2);
}

.wv-product-description-box p {
  color: #6b46c1 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

.wv-product-price {
  margin-bottom: 40px;
}

/* Pricing Options */
.wv-pricing-option {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-direction: column;
}

.wv-subscription-option {
  background: rgba(107, 70, 193, 0.1);
  border: 2px solid #6b46c1;
}

.wv-single-option {
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid #f97316;
}

.wv-option-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.wv-subscription-option input[type="radio"] {
  accent-color: #6b46c1;
}

.wv-single-option input[type="radio"] {
  accent-color: #f97316;
}

.wv-option-content {
  flex: 1;
  width: 100%;
}

.wv-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.wv-option-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

.wv-option-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
}

.wv-option-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.wv-option-original-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 12px;
}

.wv-option-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.wv-option-benefits li {
  font-size: 0.875rem;
  color: #6b46c1;
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}

.wv-option-benefits li:before {
  content: "▲";
  position: absolute;
  left: 0;
  color: #6b46c1;
}

.wv-delivery-frequency select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  font-size: 0.875rem;
  color: #374151;
}

.wv-price-note {
  font-size: 1rem;
  color: #8b4513;
  font-weight: 500;
}

.wv-product-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.wv-quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  background: white;
}

.wv-qty-btn {
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff6b35;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wv-qty-btn:hover {
  background: rgba(255, 107, 53, 0.1);
}

.wv-qty-input {
  border: none;
  padding: 12px;
  width: 60px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
}

/* Show and style WooCommerce cart form */
.woocommerce-product .cart {
  display: flex !important;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.woocommerce-product .cart .quantity {
  display: inline-block !important;
}

.woocommerce-product .cart .quantity .qty {
  width: 60px;
  padding: 8px 12px;
  border: 2px solid #6b46c1;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.woocommerce-product .cart .quantity .qty:focus {
  outline: none;
  border-color: #553c9a;
}

.woocommerce-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: white !important;
  border: none !important;
  padding: 12px 32px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex: 1 !important;
}

.woocommerce-product .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
  transform: translateY(-1px) !important;
}

.wv-amazon-link {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 16px;
}

.wv-amazon-link strong {
  color: #333;
  font-weight: 600;
}

/* Cart Actions */
.wv-cart-actions {
  margin-top: 14px;
}

.wv-products-grid div {
  margin-bottom: 30px;
}

.wv-calm-cta {
  margin-top: 60px;
}

/* Benefits Section */
.wv-benefits-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(to bottom, #6b46c1 0%, #6b46c1 60%, transparent);
}

.wv-benefits-section::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: #6b46c1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  transform: scaleY(-1);
  --wave-size-inline: 2160px;
  inline-size: calc(var(--wave-size-inline) + 1px);
  animation: calm-wave-scroll 4s linear infinite;
}

.wv-benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.wv-benefits-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.wv-benefits-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.wv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wv-benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wv-benefit-card:hover {
  background: rgba(0, 118, 255, 0.1);
  border-color: rgba(0, 118, 255, 0.3);
}

.wv-benefit-card.span-2 {
  grid-column: span 2 / span 2;
}

@media (max-width: 1024px) {
  .wv-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wv-benefits-grid {
    grid-template-columns: 1fr;
  }

  .wv-benefit-card.span-2 {
    grid-column: auto;
  }
}

.wv-benefit-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 3px;
  left: 20px;
  opacity: 0.8;
}

.wv-benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 60px 0 12px 0;
  position: relative;
  z-index: 1;
}

.wv-benefit-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Health Benefits */
.wv-health-benefits {
  background: rgba(107, 70, 193, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(107, 70, 193, 0.1);
}

.wv-health-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6b46c1;
  margin: 0 0 20px 0;
  text-align: center;
}

.wv-health-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.wv-health-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.wv-health-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(4px);
}

.wv-health-bullet {
  color: #10b981;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wv-health-item span:last-child {
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
}

.wv-health-note {
  font-size: 0.875rem;
  color: #6b46c1;
  text-align: center;
  font-style: italic;
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

/* More Products Section */
.wv-more-products-section {
  padding: 60px 0;
  margin-top: 60px;
}

.wv-more-products-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 70px 0;
  letter-spacing: 2px;
}

.wv-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wv-product-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 80px 20px 20px;
  text-align: center;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Darker glass effect */
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.wv-product-card:nth-child(2n) {
  /* Standard glass effect */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wv-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wv-product-image-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 150px;
  z-index: 2;
}

.wv-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.wv-product-card:hover .wv-product-img {
  transform: scale(1.05);
}

.wv-product-overlay {
  position: relative;
  z-index: 1;
  padding: 0;
  color: #333;
  transform: none;
  transition: none;
  background: none;
  backdrop-filter: none;
  border: none;
  margin-top: auto;
  text-align: center;
  margin-top: 30px;
}

.wv-product-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
  line-height: 1.3;
}

.wv-product-price {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.wv-product-price .woocommerce-Price-amount {
  color: #ffffff;
}

.wv-product-price .woocommerce-Price-currencySymbol {
  color: #ffffff;
}


.wv-product-btn {
  background: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
}

.wv-product-btn:hover {
  background: #555;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wv-product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wv-product-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: 600;
  border-radius: 10px;
}

.wv-product-img {
  height: 250px;
  object-fit: cover;
}

.wv-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #6b46c1;
  font-size: 1.125rem;
}

.wv-alternative-purchase {
  text-align: center;
  color: #8b4513;
}

.wv-alternative-purchase span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.wv-product-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wv-main-product-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-product-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.wv-product-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px dashed #ff6b35;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-weight: 600;
}

.wv-product-gallery {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.wv-gallery-thumb {
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.wv-gallery-thumb.wv-active {
  border-color: #ff6b35;
}

.wv-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-weight: 600;
}

.wv-testimonials-section {
  background: transparent;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.wv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .wv-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.wv-testimonial {
  position: relative;
}

.wv-testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #ff6b35;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

.wv-testimonial-content p {
  font-size: 1.125rem;
  color: #8b4513;
  line-height: 1.6;
  margin: 0;
  padding-left: 30px;
}

/* WooCommerce Product Images */
.wv-product-main-image {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.woocommerce-product .woocommerce-product-gallery {
  width: 100%;
}

.woocommerce-product .woocommerce-product-gallery__image {
  border-radius: 0;
  overflow: visible;
}

.woocommerce-product .woocommerce-product-gallery__wrapper {
  transition: none !important;
}

.woocommerce-product-gallery__wrapper img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
}

.woocommerce-product .woocommerce-product-gallery__wrapper:hover {
  transform: none !important;
}

.woocommerce-product .woocommerce-product-gallery__image {
  transition: none !important;
}

.woocommerce-product .woocommerce-product-gallery__image:hover {
  transform: none !important;
}

.woocommerce-product .woocommerce-product-gallery__image img {
  transition: none !important;
}

.woocommerce-product .woocommerce-product-gallery__image img:hover {
  transform: none !important;
  cursor: default !important;
  zoom: 1 !important;
}

/* Disable any other image hover effects */
.wv-product-main-image img:hover,
.wv-product-image img:hover,
.wv-product-image .woocommerce-product-gallery__image img:hover {
  transform: none !important;
  cursor: default !important;
  zoom: 1 !important;
}

/* Disable WooCommerce image zoom and lightbox */
.woocommerce-product-gallery__trigger {
  display: none !important;
}

.woocommerce-product-gallery--with-images .woocommerce-product-gallery__wrapper {
  cursor: default !important;
}

.woocommerce-product-gallery .flex-viewport {
  cursor: default !important;
}

/* Completely disable all zoom functionality */
.woocommerce-product-gallery {
  pointer-events: none !important;
}

.woocommerce-product-gallery img {
  pointer-events: none !important;
  cursor: default !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image {
  pointer-events: none !important;
  cursor: default !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image a {
  pointer-events: none !important;
  cursor: default !important;
}

/* Disable flexslider zoom */
.flex-viewport {
  cursor: default !important;
}

.flexslider {
  cursor: default !important;
}

.flexslider .slides img {
  cursor: default !important;
  pointer-events: none !important;
}

/* Override any zoom CSS */
.woocommerce-product-gallery__image img:hover {
  transform: scale(1) !important;
  transition: none !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  transition: none !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper:hover {
  transform: none !important;
}

.wv-product-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.wv-zoom-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e5e7eb;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.wv-zoom-btn:hover {
  background: white;
  border-color: #ff6b35;
}

.wv-thumb {
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wv-thumb:nth-child(2) {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.wv-thumb:nth-child(3) {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.wv-thumb:nth-child(4) {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.wv-thumb:nth-child(5) {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.wv-thumb.wv-active {
  border-color: #ff6b35;
  transform: scale(1.1);
}

/* Additional Modern Elements */
.woocommerce-product .woocommerce-product-rating {
  margin-bottom: 24px !important;
}

.woocommerce-product .star-rating {
  color: #ffd700 !important;
  font-size: 1.2rem !important;
}

.woocommerce-product .product_meta {
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 0.875rem;
  color: #4a5568;
}

/* Breadcrumbs Styling */
.woocommerce-breadcrumb {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 20px;
  display: inline-block;
}

.woocommerce-breadcrumb a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
  color: #e55a2b;
  text-decoration: underline;
}

/* Reviews & Comments Styling */
.woocommerce-tabs.wc-tabs-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1200px;
}

.woocommerce-tabs .tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 32px;
  padding: 0;
  list-style: none;
}

.woocommerce-tabs .tabs li {
  margin: 0;
}

.woocommerce-tabs .tabs li a {
  display: block;
  padding: 12px 24px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s ease;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.woocommerce-tabs .panel {
  padding: 0;
}

.woocommerce-tabs .panel h2 {
  font-size: 1.75rem;
  color: #ff6b35;
  margin-bottom: 24px;
  font-weight: 700;
}

/* Review Form Styling */
.comment-form-rating {
  margin-bottom: 20px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.comment-form input[type="submit"] {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.comment-form input[type="submit"]:hover {
  background: #e55a2b;
}

/* Individual Review Styling */
.commentlist {
  list-style: none;
  padding: 0;
}

.commentlist .comment {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.commentlist .comment-text {
  margin-left: 0;
}

.commentlist .star-rating {
  color: #fbbf24;
  margin-bottom: 12px;
}

.commentlist .meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.commentlist .meta strong {
  color: #ff6b35;
  font-weight: 600;
}

.commentlist .description p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.woocommerce-product .flex-control-thumbs {
  display: none !important;
}

.woocommerce-product .product_meta {
  display: none !important;
}

/* Show WooCommerce quantity input */
.woocommerce-product .quantity {
  display: inline-block !important;
}

.woocommerce-product input.qty {
  display: inline-block !important;
}

/* WooCommerce Related Products & Upsells */
.woocommerce-product .related.products,
.woocommerce-product .upsells.products {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 1200px;
}

.woocommerce-product .related.products h2,
.woocommerce-product .upsells.products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  text-align: center;
  margin: 0 0 40px 0;
  text-transform: lowercase;
}

.woocommerce-product .related.products ul.products,
.woocommerce-product .upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-product .related.products li.product,
.woocommerce-product .upsells.products li.product {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.woocommerce-product .related.products li.product:hover,
.woocommerce-product .upsells.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.woocommerce-product .related.products li.product img,
.woocommerce-product .upsells.products li.product img {
  border-radius: 12px;
  margin-bottom: 16px;
  width: 100%;
  height: auto;
}

.woocommerce-product .related.products li.product h2,
.woocommerce-product .upsells.products li.product h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
  text-transform: none;
}

.woocommerce-product .related.products li.product .price,
.woocommerce-product .upsells.products li.product .price {
  display: block !important;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 16px;
}

.woocommerce-product .related.products li.product .button,
.woocommerce-product .upsells.products li.product .button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.woocommerce-product .related.products li.product .button:hover,
.woocommerce-product .upsells.products li.product .button:hover {
  background: #e55a2b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wv-product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wv-product-title h1,
  .wv-product-title {
    font-size: 3rem !important;
  }

  .wv-pricing-option {
    padding: 16px;
  }

  .woocommerce-product .related.products ul.products,
  .woocommerce-product .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* More Products Tablet */
  .wv-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  /* Limit to 4 products on screens < 1024px, except homepage and shop page */
  body:not(.home):not(.page-template-page-shop):not(.woocommerce-shop) .wv-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wv-product-card {
    min-height: 260px;
    padding: 70px 15px 15px;
  }

  .wv-product-image-wrapper {
    width: 90px;
    height: 130px;
    top: -35px;
  }
}

@media (max-width: 768px) {

  /* Hero Section */
  .wv-hero {
    padding: 80px 20px 60px;
    min-height: auto;
  }

  .wv-hero-text h1 {
    font-size: 2.5rem;
  }

  .wv-hero-text p {
    font-size: 1.125rem;
    max-width: 100%;
  }

  /* Product Page */
  .wv-product-container {
    display: flex;
    flex-direction: column-reverse;
    padding: 20px;
    gap: 30px;
  }

  .wv-product-title h1,
  .wv-product-title {
    font-size: 2.5rem !important;
  }

  .wv-product-description-box {
    padding: 16px;
  }

  .wv-pricing-option {
    padding: 16px;
  }

  .wv-option-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .wv-option-price {
    font-size: 1.25rem;
  }

  .wv-cart-actions {
    flex-direction: column;
    gap: 12px;
  }

  .wv-add-to-cart-btn {
    width: 100%;
  }

  /* Benefits Section Mobile */
  .wv-benefits-section {
    padding: 16px;
  }

  .wv-benefits-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding-top: 40px;
  }

  .wv-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wv-benefit-card {
    padding: 16px;
  }

  .wv-benefit-card h4 {
    font-size: 1.25rem;
  }

  .wv-benefit-card p {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .wv-health-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wv-health-benefits {
    padding: 20px;
  }

  /* More Products Mobile */
  .wv-more-products-section {
    padding: 40px 0;
    border-radius: 16px;
  }

  .wv-more-products-section .wv-container {
    margin: 0 auto;
  }

  .wv-more-products-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .wv-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 70px 0 0;
  }

  .wv-product-card-link {
    padding-top: 30px;
  }

  .wv-product-image-wrapper {
    width: 80px;
    height: 120px;
    top: -70px;
  }

  .wv-product-card {
    min-height: 200px;
    padding: 60px 15px 15px;
  }

  .wv-product-overlay {
    padding: 0;
  }

  .wv-product-name {
    font-size: 1rem;
  }

  .wv-product-price {
    font-size: 1.125rem;
  }

  .wv-product-description {
    font-size: 0.75rem;
    padding: 0 5px;
  }

  .wv-product-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .wv-product-thumbnails {
    gap: 8px;
  }

  .wv-thumb,
  .v-zoom-btn {
    width: 36px;
    height: 36px;
  }

  /* Related Products */
  .woocommerce-product .related.products,
  .woocommerce-product .upsells.products {
    padding: 40px 20px;
    margin: 20px;
  }

  .woocommerce-product .related.products h2,
  .woocommerce-product .upsells.products h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .woocommerce-product .related.products ul.products,
  .woocommerce-product .upsells.products ul.products {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Tabs & Reviews */
  .woocommerce-tabs.wc-tabs-wrapper {
    padding: 24px;
    margin: 20px;
  }

  .woocommerce-tabs .tabs {
    flex-wrap: wrap;
    gap: 4px;
  }

  .woocommerce-tabs .tabs li a {
    padding: 10px 16px;
    font-size: 0.875rem;
  }

  /* Testimonials */
  .wv-testimonials-section {
    padding: 40px 20px;
  }

  .wv-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Breadcrumbs */
  .woocommerce-breadcrumb {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

/* Shop Dropdown Styles */
.wv-shop-dropdown {
  position: relative;
}

.wv-shop-dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 100vh;
  background: #e6e0ff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: hidden;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
}

.wv-shop-dropdown-menu.wv-active {
  transform: translateX(0);
  overflow-y: auto;
}

.wv-shop-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.wv-shop-dropdown-overlay.wv-active {
  opacity: 1;
  visibility: visible;
}

.wv-shop-dropdown-content {
  max-width: 100%;
  padding: 32px 24px 24px 24px;
  margin: 0;
  background: transparent;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wv-shop-close {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 24px;
}

.wv-shop-close span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  text-transform: lowercase;
}

.wv-shop-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #4a5568;
  transition: color 0.2s ease;
}

.wv-shop-close-btn:hover {
  color: #2d3748;
}

.wv-shop-all {
  margin-bottom: 30px;
}

.wv-shop-all-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2d3748;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.wv-shop-all-link:hover {
  color: #1a202c;
}

.wv-shop-products {
  margin-bottom: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wv-shop-product-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  min-height: 40px;
}

.wv-shop-product-item:hover {
  background-color: rgba(247, 250, 252, 0.8);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.wv-shop-product-item:last-child {
  border-bottom: none;
}

.wv-shop-product-expanded {
  background-color: rgba(247, 250, 252, 0.8);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.wv-shop-product-icon {
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(164, 177, 249, 0.1);
  border-radius: 8px;
}

.wv-shop-product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.wv-shop-product-info p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wv-shop-divider {
  height: 1px;
  background: rgba(226, 232, 240, 0.6);
  margin: 24px 0;
}

.wv-shop-links {
  margin-bottom: 24px;
}

.wv-shop-links:last-child {
  margin-bottom: 0;
}

.wv-shop-link-item {
  display: block;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 0;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.wv-shop-link-item:hover {
  color: #2d3748;
}

/* Product pricing in shop dropdown */
.wv-product-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  margin-top: 4px;
  display: block;
}

/* Contact section in shop dropdown */
.wv-shop-contact {
  margin-bottom: 20px;
}

.wv-shop-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 16px;
  margin-top: 0;
}

.wv-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wv-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.wv-contact-item:hover {
  color: #2d3748;
}

.wv-contact-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5568;
  font-size: 0.9rem;
}

.wv-contact-item svg,
.wv-contact-hours svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* WooCommerce Cart Submit Button Styling */
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained,
.wc-block-cart__submit-button,
.wp-element-button.wc-block-cart__submit-button {
  background: linear-gradient(135deg, #4c51bf 0%, #553c9a 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.025em !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(76, 81, 191, 0.3) !important;
  min-height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover,
.wc-block-cart__submit-button:hover,
.wp-element-button.wc-block-cart__submit-button:hover {
  background: linear-gradient(135deg, #553c9a 0%, #4c1d95 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(76, 81, 191, 0.4) !important;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:active,
.wc-block-cart__submit-button:active,
.wp-element-button.wc-block-cart__submit-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 10px rgba(76, 81, 191, 0.3) !important;
}

/* WooCommerce Button General Improvements */
.wc-block-components-button,
.wp-element-button {
  font-family: inherit !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

/* Checkout and Cart Page Button Improvements */
.wc-block-checkout__actions .wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 18px 36px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  min-height: 56px !important;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3) !important;
}

.wc-block-checkout__actions .wc-block-components-checkout-place-order-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4) !important;
}

/* Add to Cart Button Improvements */
.single_add_to_cart_button,
.wc-block-components-product-button .wc-block-components-product-button__button {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3) !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.single_add_to_cart_button:hover,
.wc-block-components-product-button .wc-block-components-product-button__button:hover {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
}

/* Loading and Disabled States */
.wc-block-components-button:disabled,
.wp-element-button:disabled,
.single_add_to_cart_button:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.wc-block-components-button.wc-block-components-button--loading,
.wp-element-button.wc-block-components-button--loading {
  position: relative !important;
  color: transparent !important;
}

.wc-block-components-button.wc-block-components-button--loading::after,
.wp-element-button.wc-block-components-button--loading::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 20px !important;
  height: 20px !important;
  margin: -10px 0 0 -10px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-top-color: white !important;
  border-radius: 50% !important;
  animation: wv-button-spin 1s linear infinite !important;
}

@keyframes wv-button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.wc-block-components-button:focus,
.wp-element-button:focus,
.single_add_to_cart_button:focus {
  outline: 2px solid #4c51bf !important;
  outline-offset: 2px !important;
}

.wv-shop-arrow {
  transition: transform 0.3s ease;
}

.wv-shop-dropdown.wv-active .wv-shop-arrow {
  transform: rotate(180deg);
}

/* Mobile adjustments for shop dropdown */
@media (max-width: 768px) {
  .wv-shop-dropdown-menu {
    width: 100vw;
    border-radius: 0;
  }

  .wv-shop-dropdown-content {
    padding: 24px 20px;
  }

  .wv-shop-products {
    max-height: 50vh;
    overflow-y: auto;
  }

  .wv-shop-product-item {
    padding: 16px 0;
    min-height: 60px;
  }

  .wv-shop-product-icon {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }

  .wv-shop-product-info h3 {
    font-size: 1rem;
  }

  .wv-shop-product-info p {
    font-size: 0.85rem;
  }

  .wv-shop-product-item:hover {
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .wv-shop-product-expanded {
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .woocommerce-product .woocommerce-product-gallery {
    width: 70%;
  }

  .wv-product-container {
    align-items: center;
  }
}

/* Shop Page Styles */
.wv-shop-hero {
  background: linear-gradient(135deg, #a4b1f9 0%, #8b5cf6 100%);
  padding: 120px 0 80px 0;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.wv-shop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.12)"/></svg>');
  pointer-events: none;
}

.wv-shop-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wv-shop-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.1;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.wv-shop-hero-subtitle {
  font-size: 1.25rem;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.wv-shop-main {
  padding: 80px 0;
  background: #ffffff;
}


.wv-products-grid {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wv-products-grid.wv-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.wv-shop-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wv-products-grid.wv-animate-in .wv-shop-product-card {
  opacity: 1;
  transform: translateY(0);
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(1) {
  transition-delay: 0.1s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(2) {
  transition-delay: 0.2s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(3) {
  transition-delay: 0.3s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(4) {
  transition-delay: 0.4s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(5) {
  transition-delay: 0.5s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(6) {
  transition-delay: 0.6s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(7) {
  transition-delay: 0.7s;
}

.wv-products-grid.wv-animate-in .wv-shop-product-card:nth-child(8) {
  transition-delay: 0.8s;
}

.wv-shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.wv-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wv-product-image-container {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wv-product-image {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.wv-product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.wv-product-icon {
  font-size: 4rem;
  opacity: 0.8;
}

.wv-product-info {
  padding: 24px;
  text-align: center;
}

.wv-product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.wv-product-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.wv-product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #059669;
}

.wv-no-products {
  text-align: center;
  padding: 80px 20px;
}

.wv-no-products h2 {
  font-size: 2rem;
  color: #1a202c;
  margin: 0 0 16px 0;
}

.wv-no-products p {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .wv-shop-hero {
    padding: 80px 0 60px 0;
  }

  .wv-shop-hero-title {
    font-size: 2.5rem;
  }

  .wv-shop-hero-subtitle {
    font-size: 1.1rem;
  }

  .wv-shop-main {
    padding: 60px 0;
  }

  .wv-shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }

  .wv-product-image-container {
    height: 240px;
  }

  .wv-product-info {
    padding: 20px;
  }

  .wv-option-header .price {
    margin: 0;
  }
}

/* Policy Page Content Styles */
.wv-glass h2 {
  font-size: 1.75rem;
  margin: 0 0 20px 0;
  color: rgba(255, 255, 255, 0.95);
}

.wv-glass h3 {
  font-size: 1.25rem;
  margin: 28px 0 12px 0;
  color: rgba(255, 255, 255, 0.9);
}

.wv-glass p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.wv-glass ul {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.wv-glass li {
  margin-bottom: 8px;
}

.wv-glass a {
  color: #60d0f0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wv-glass a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.wv-glass em {
  color: rgba(255, 255, 255, 0.6);
}

.p-10 {
  padding: 2.5rem;
}

/* Footer Styles */
.wv-footer {
  background: #1a1d29;
  padding: 80px 0 40px 0;
  color: #ffffff;
  position: relative;
}

.wv-contact-btn {
  font-size: 5em;
  padding: 0px 0 120px 0;
  text-align: center;
  margin: 0;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  transition: opacity 0.3s ease;
  width: 100%;
  font-weight: 600;
}

.wv-contact-btn:hover {
  opacity: 0.8;
}

.wv-footer::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: #1a1d29;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  transform: scaleY(-1);
  --wave-size-inline: 2160px;
  inline-size: calc(var(--wave-size-inline) + 1px);
  animation: calm-wave-scroll 4s linear infinite;
}


.wv-footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.wv-footer-brand {
  flex-shrink: 0;
  max-width: 240px;
}

.wv-footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.wv-footer-logo img {
  width: 80px;
  height: auto;
}

.wv-footer-tagline {
  color: #a0aec0;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.wv-logo-emoji {
  font-size: 24px;
}

.wv-footer-nav {
  display: flex;
  gap: 60px;
  flex: 1;
}

.wv-footer-section {
  flex: 1;
}

.wv-footer-about {
  flex-shrink: 0;
  min-width: 200px;
}

.wv-footer-column {
  display: flex;
  flex-direction: column;
}

.wv-footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.wv-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wv-footer-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.wv-footer-link:hover {
  color: #ffffff;
}

.wv-footer-links--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

@media (max-width: 480px) {
  .wv-footer-links--grid {
    grid-template-columns: 1fr;
  }
}

.wv-footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wv-footer-social-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.wv-footer-social-link:hover svg {
  opacity: 1;
}

.wv-footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.wv-footer-bottom p {
  color: #a0aec0;
  font-size: 0.8rem;
  margin: 0;
}

.wv-footer-disclaimer {
  color: #64748b !important;
  font-size: 0.75rem !important;
}

.wv-footer-newsletter {
  max-width: 280px;
}

.wv-footer-newsletter-text {
  color: #a0aec0;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.wv-newsletter-form {
  width: 100%;
}

.wv-newsletter-input-group {
  display: flex;
  border-bottom: 1px solid #4a5568;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.wv-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 8px 0;
  outline: none;
}

.wv-newsletter-input::placeholder {
  color: #718096;
  text-transform: lowercase;
}

.wv-newsletter-button {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0 8px 16px;
  text-transform: lowercase;
  transition: color 0.3s ease;
}

.wv-newsletter-button:hover {
  color: #e2e8f0;
}

/* Footer responsive styles */
@media (max-width: 1024px) {
  .wv-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .wv-footer {
    padding: 60px 0 30px 0;
  }

  .wv-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .wv-footer-newsletter {
    max-width: 100%;
  }

  .wv-footer-logo {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wv-footer {
    padding: 40px 0 20px 0;
  }

  .wv-footer-content {
    gap: 30px;
  }

  .wv-footer-title {
    margin-bottom: 16px;
  }

  .wv-footer-links {
    gap: 8px;
  }
}

/* Mood Powder Section Styles */
.wv-mood-powder-section {
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 50%, #1e90ff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.wv-mood-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.wv-mood-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  opacity: 0.6;
}

.wv-mood-cloud-1 {
  width: 200px;
  height: 80px;
  top: 10%;
  left: 5%;
}

.wv-mood-cloud-2 {
  width: 150px;
  height: 60px;
  top: 20%;
  right: 10%;
}

.wv-mood-cloud-3 {
  width: 180px;
  height: 70px;
  bottom: 15%;
  left: 15%;
  animation-delay: -14s;
}

@keyframes float-cloud {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  25% {
    transform: translateX(20px) translateY(-10px);
  }

  50% {
    transform: translateX(-10px) translateY(15px);
  }

  75% {
    transform: translateX(15px) translateY(-5px);
  }
}

.wv-mood-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.wv-mood-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 20px 0;
  text-transform: none;
  letter-spacing: -0.02em;
}

.wv-mood-subtitle {
  font-size: 1.125rem;
  color: #2d3748;
  margin: 0 0 60px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.wv-mood-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.wv-mood-product {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.6s ease;
}

.wv-mood-product.wv-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wv-mood-product-inner {
  text-align: center;
  transition: transform 0.3s ease;
}

.wv-mood-product-inner:hover {
  transform: translateY(-10px);
}

.wv-mood-product-image {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin: 0 auto 15px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wv-mood-product-placeholder {
  width: 160px;
  height: 200px;
  margin: 0 auto 15px auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wv-mood-placeholder-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wv-mood-placeholder-title {
  font-size: 1rem;
  font-weight: 700;
}

.wv-mood-placeholder-type {
  font-size: 0.75rem;
  opacity: 0.9;
}

.wv-mood-product-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a365d;
  margin: 0;
  text-transform: lowercase;
}

/* Responsive adjustments for mood section */
@media (max-width: 768px) {
  .wv-mood-powder-section {
    padding: 80px 20px;
  }

  .wv-mood-title {
    font-size: 2rem;
  }

  .wv-mood-subtitle {
    font-size: 1rem;
  }

  .wv-mood-products {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }

  .wv-mood-product-placeholder {
    width: 120px;
    height: 150px;
  }

  .wv-mood-placeholder-title {
    font-size: 0.75rem;
  }

  .wv-mood-placeholder-type {
    font-size: 0.625rem;
  }

  .wv-calm-section .wv-container {
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .wv-mood-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .wv-mood-product-placeholder {
    width: 100px;
    height: 120px;
  }

  .wv-mood-placeholder-title {
    font-size: 0.875rem;
  }

  .wv-mood-placeholder-type {
    font-size: 0.625rem;
  }
}


/* Calm Section Styles */
.wv-calm-section {
  background: linear-gradient(to bottom, #fa9482 0%, #c5bce0 60%, transparent);
  padding: 120px 0;
  position: relative;
  color: #ffffff;
}


.wv-calm-section::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: #fa9482;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  mask: url('data:image/svg+xml;utf8,<svg width="216" height="12" viewBox="0 0 216 12" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M216 4c-44 0-64 8-108 8S44 4 0 4V0h216v4Z" fill="black"/></svg>') 0 0 / 20% 100% repeat-x;
  transform: scaleY(-1);
  --wave-size-inline: 2160px;
  inline-size: calc(var(--wave-size-inline) + 1px);
  animation: calm-wave-scroll 4s linear infinite;
}

.wv-calm-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.wv-calm-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.wv-calm-subtitle {
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0 0 60px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.wv-calm-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1000px;
  margin-bottom: 60px;
}

.wv-calm-product {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.wv-calm-product:hover {
  transform: translateY(-10px) scale(1.05);
}

.wv-calm-product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.wv-calm-product-placeholder {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  text-align: center;
}

.wv-placeholder-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wv-placeholder-title {
  font-size: 1rem;
  font-weight: 700;
}

.wv-placeholder-type {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Individual product sizes */
.wv-calm-product-1 {
  width: 140px;
  height: 180px;
}

.wv-calm-product-1 .wv-calm-product-placeholder {
  width: 140px;
  height: 180px;
}

.wv-calm-product-2 {
  width: 100px;
  height: 220px;
}

.wv-calm-product-2 .wv-calm-product-placeholder {
  width: 100px;
  height: 220px;
}

.wv-calm-product-3 {
  width: 160px;
  height: 200px;
}

.wv-calm-product-3 .wv-calm-product-placeholder {
  width: 160px;
  height: 200px;
}

.wv-calm-product-4 {
  width: 140px;
  height: 190px;
}

.wv-calm-product-4 .wv-calm-product-placeholder {
  width: 140px;
  height: 190px;
}

.wv-calm-product-5 {
  width: 120px;
  height: 210px;
}

.wv-calm-product-5 .wv-calm-product-placeholder {
  width: 120px;
  height: 210px;
}

.wv-calm-button {
  display: inline-block;
  background: #4c51bf;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 81, 191, 0.3);
}

.wv-calm-button:hover {
  background: #3c366b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 81, 191, 0.4);
  color: white;
}

/* Responsive adjustments for calm section */
@media (max-width: 768px) {
  .wv-calm-section {
    padding: 80px 20px;
  }

  .wv-calm-products {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }

  .wv-calm-product {
    width: calc(50% - 10px);
    max-width: 150px;
  }

  .wv-calm-product-1,
  .wv-calm-product-2,
  .wv-calm-product-3,
  .wv-calm-product-4,
  .wv-calm-product-5 {
    transform: none;
  }

  .wv-placeholder-title {
    font-size: 0.75rem;
  }

  .wv-placeholder-type {
    font-size: 0.625rem;
  }
}

@media (max-width: 480px) {
  .wv-calm-products {
    gap: 10px;
  }

  .wv-calm-product-1 {
    width: 80px;
    height: 100px;
  }

  .wv-calm-product-1 .wv-calm-product-placeholder {
    width: 80px;
    height: 100px;
  }

  .wv-calm-product-2 {
    width: 60px;
    height: 120px;
  }

  .wv-calm-product-2 .wv-calm-product-placeholder {
    width: 60px;
    height: 120px;
  }

  .wv-calm-product-3 {
    width: 90px;
    height: 110px;
  }

  .wv-calm-product-3 .wv-calm-product-placeholder {
    width: 90px;
    height: 110px;
  }

  .wv-calm-product-4 {
    width: 80px;
    height: 105px;
  }

  .wv-calm-product-4 .wv-calm-product-placeholder {
    width: 80px;
    height: 105px;
  }

  .wv-calm-product-5 {
    width: 70px;
    height: 115px;
  }

  .wv-calm-product-5 .wv-calm-product-placeholder {
    width: 70px;
    height: 115px;
  }
}

.wv-shop-dropdown {
  position: relative;
}

@media (max-width: 768px) {
  .wv-shop-dropdown {
    display: none;
  }
}

.wv-shop-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.wv-shop-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.wv-shop-link svg {
  transition: transform 0.3s ease;
}

.wv-shop-link:hover svg {
  transform: rotate(180deg);
}

.wv-nav-menu li {
  margin: 0;
}

.wv-nav-menu .wv-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.wv-nav-menu .wv-nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.wv-nav-menu .wv-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.3s ease;
}

.wv-nav-menu .wv-nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Styles */
.wv-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #e6e0ff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  visibility: hidden;
}

.wv-mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}

.wv-mobile-menu-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.wv-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.wv-mobile-logo img {
  width: 80px;
}

.wv-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #4a5568;
}

.wv-mobile-nav-section {
  margin-bottom: 40px;
}

.wv-mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wv-mobile-nav-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.wv-mobile-nav-menu .wv-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #6b46c1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wv-mobile-products-section {
  margin-bottom: 40px;
}

.wv-mobile-section-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0aec0;
  margin-bottom: 16px;
  font-weight: 700;
}

.wv-mobile-products-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wv-mobile-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #2d3748;
  border: 1px solid rgba(107, 70, 193, 0.1);
  transition: all 0.2s ease;
}

.wv-mobile-product-item:active {
  background: #f7fafc;
  transform: scale(0.98);
}

.wv-mobile-product-name {
  font-weight: 600;
  font-size: 1rem;
}

.wv-mobile-product-item svg {
  color: #6b46c1;
  opacity: 0.5;
}

.wv-mobile-footer-section {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 70, 193, 0.1);
}

.wv-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wv-mobile-actions .wv-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 10px;
  background: white;
  color: #6b46c1;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(107, 70, 193, 0.1);
}

.wv-mobile-actions .wv-nav-link:last-child {
  background: #6b46c1;
  color: white;
}

/* Mobile Menu Toggle Animation */
@media (min-width: 769px) {
  .wv-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .wv-mobile-menu {
    display: block;
  }
}

/* Cart Icon Styling */
.wv-nav-link svg {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.wv-nav-link:hover svg {
  opacity: 1;
}

/* Mobile Menu Responsive Styles */
@media (max-width: 1024px) {
  .wv-nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .wv-hero {
    padding-top: 140px;
    min-height: 700px;
  }

  .wv-calm-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .wv-calm-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .wv-header .wv-container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .wv-container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
  }

  .wv-logo {
    font-size: 1.5rem;
  }

  .wv-hero {
    padding-top: 120px;
    min-height: 600px;
  }

  .wv-hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .wv-hero-text p {
    font-size: 1.125rem;
  }

  .wv-hero-visual {
    height: 300px;
    margin-top: 2rem;
  }

  .wv-mobile-toggle {
    display: flex !important;
  }

  .wv-header-inner {
    justify-content: space-between;
  }

  .wv-header-actions {
    gap: 1rem;
  }

  .wv-header {
    top: 40px;
  }

  .wv-logo img {
    width: 70px;
  }
}

@media (max-width: 640px) {
  .wv-header .wv-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .wv-logo {
    font-size: 1.25rem;
  }

  .wv-hero {
    padding: 150px 0;
    min-height: 500px;
  }

  .wv-hero-content {
    gap: 40px;
  }

  .wv-hero-text h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 16px;
  }

  .wv-hero-text p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .wv-hero-cta {
    padding: 14px 28px;
    font-size: 0.875rem;
  }

  .wv-hero-visual {
    height: 250px;
  }

  .wv-floating-product {
    border-radius: 15px;
  }

  .wv-product-1 {
    width: 80px;
    height: 110px;
  }

  .wv-product-2 {
    width: 90px;
    height: 120px;
  }

  .wv-product-3 {
    width: 70px;
    height: 100px;
  }

  .wv-product-4 {
    width: 75px;
    height: 105px;
  }

  .wv-single-product {
    padding: 40px 0 0;
  }
}

/* Single Product Price Styling */
.wv-single-product .wv-pricing-option .price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  display: block;
}

/* Contact Modal Styles */
.wv-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.wv-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wv-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.wv-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.wv-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.wv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wv-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wv-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.wv-form-group input,
.wv-form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.2s ease;
  resize: vertical;
}

.wv-form-group input:focus,
.wv-form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.wv-form-group input::placeholder,
.wv-form-group textarea::placeholder {
  color: #999;
}

.wv-submit-btn {
  background: #1a1d29;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.wv-submit-btn:hover {
  background: #2a2d39;
  transform: translateY(-1px);
}

.wv-submit-btn:active {
  transform: translateY(0);
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
  .wv-modal-content {
    padding: 24px;
    margin: 20px;
    width: calc(100% - 40px);
  }

  .wv-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wv-contact-btn {
    font-size: 3em;
    padding: 0px 0 80px 0;
  }
}

/* Body blur effect when modal is open */
body.modal-open {
  overflow: hidden;
}

body.modal-open>*:not(.wv-modal) {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

body.modal-open .wv-modal {
  filter: none;
}

/* Updated Footer Responsive Styles */
@media (max-width: 1024px) {
  .wv-footer-main {
    gap: 40px;
  }

  .wv-footer-nav {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .wv-footer-main {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .wv-footer-nav {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .wv-footer-brand {
    align-self: center;
  }

  .wv-footer-about {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .wv-contact-btn {
    font-size: 3em;
    padding: 0px 0 60px 0;
  }

  .wv-footer-main {
    gap: 30px;
  }

  .wv-footer-nav {
    gap: 20px;
  }
}

.home .wv-benefits-section {
  padding-bottom: 90px;
}

/* QR Modal Specific Styles */
.wv-qr-modal-content {
  max-width: 400px;
  text-align: center;
  padding: 40px 24px;
}

.wv-qr-wrapper img {
  width: 240px;
  height: 240px;
  margin: 0 auto 24px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wv-qr-wrapper h3 {
  font-size: 1.5rem;
  color: #1d2a58;
  margin-bottom: 12px;
}

.wv-qr-wrapper p {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.5;
}