/* Aquawhite Design System & Shared Styles */

:root {
  --aqua: #0674BB;
  --aqua-dark: #055A9A;
  --aqua-light: #E3F0F8;
  --navy: #03045E;
  --accent-pink: #EF476F;
  --accent-yellow: #FFD166;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Reusable Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Qualifier Bar */
.qualifier-bar {
  background: var(--aqua-light);
  color: var(--navy);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-pink {
  background-color: var(--accent-pink);
  color: white;
  box-shadow: 0 10px 25px rgba(239, 71, 111, 0.4);
}

.btn-pink:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(239, 71, 111, 0.5);
}

.btn-aqua {
  background-color: var(--aqua);
  color: white;
  box-shadow: 0 10px 25px rgba(6, 116, 187, 0.3);
}

.btn-aqua:hover {
  background-color: var(--aqua-dark);
  transform: translateY(-3px);
}

/* Decorative background blobs for Hero */
.hero-blob-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: var(--accent-yellow);
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.35;
  transform: translate(-40%, -40%);
  pointer-events: none;
}

.hero-blob-blue {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: var(--aqua);
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.25;
  transform: translate(30%, 30%);
  pointer-events: none;
}

/* Yellow rotated frame wrapper for Video */
.video-wrapper-yellow {
  position: relative;
  width: 100%;
}

.video-yellow-backdrop {
  position: absolute;
  inset: 0;
  background-color: var(--accent-yellow);
  border-radius: 1.5rem;
  transform: rotate(3deg) scale(1.04);
  opacity: 0.7;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-wrapper-yellow:hover .video-yellow-backdrop {
  transform: rotate(6deg) scale(1.06);
}

.video-card {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid white;
  background: #f1f5f9;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.video-wrapper-yellow:hover .video-card {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.35);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Mute Toggle Button */
.mute-toggle-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.mute-toggle-btn:hover {
  background: white;
  transform: scale(1.1);
}

.mute-toggle-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Asymmetric Wave Dividers */
.divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  display: block;
}

.divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-200);
  padding: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.08);
  border-color: var(--aqua-light);
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-image-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  background: var(--accent-yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-category-tag {
  font-size: 0.8rem;
  color: var(--aqua);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.btn-flipkart {
  background: #2874f0;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.btn-flipkart:hover {
  background: #1259c7;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--navy);
  border: 2.5px solid var(--aqua);
  box-shadow: 0 6px 16px rgba(6, 116, 187, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.category-card:hover {
  border-color: #F4B41A;
  transform: translateY(-6px);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFBEA 45%, #FFE8B6 100%);
  box-shadow: 0 16px 32px rgba(244, 180, 26, 0.22);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.category-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: var(--aqua-light);
  color: var(--aqua);
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1.5px solid var(--aqua);
}

.category-card:hover .category-card-btn {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #F4B41A 100%);
  color: var(--navy);
  border-color: #F4B41A;
  box-shadow: 0 4px 14px rgba(244, 180, 26, 0.4);
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Animations */
.reveal-3d {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-3d.active {
  opacity: 1;
  transform: translateY(0);
}

/* Product Modal Styles */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 94, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-modal-content {
  background: white;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  padding: 2rem;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: var(--gray-100);
  border: none;
  font-size: 1.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--accent-pink);
  color: white;
}

.modal-body-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .modal-body-layout {
    grid-template-columns: 1fr;
  }
}

.modal-main-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.modal-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.modal-thumbnails-list {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.modal-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  object-fit: cover;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-thumb.active, .modal-thumb:hover {
  border-color: var(--aqua);
  transform: scale(1.05);
}

