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

:root {
  --primary: #1E293B;
  --secondary: #2563EB;
  --accent: #14B8A6;
  --highlight: #F59E0B;
  --background: #F8FAFC;
  --surface: #FFFFFF;
  --text: #111827;
  --text-muted: #64748B;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.05);
  --shadow-md: 0 8px 24px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 16px 32px rgba(30, 41, 59, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  max-width: 100vw;
  width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

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

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icon-btn {
  font-size: 1.2rem;
  color: var(--primary);
  position: relative;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--highlight);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--primary);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50% !important;
  max-width: 50% !important;
  height: 100vh;
  height: 100dvh;
  background-color: var(--surface);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 2rem 1.2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.close-menu-btn {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.close-menu-btn:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  width: 100%;
}

.mobile-nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--secondary);
  transform: translateX(5px);
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 90%;
  max-width: 700px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalSlide 0.3s ease forwards;
}

@keyframes modalSlide {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.8rem;
}

.search-input-wrapper i {
  font-size: 1.4rem;
  color: var(--secondary);
}

.search-input {
  width: 100%;
  font-size: 1.2rem;
  color: var(--text);
  background: transparent;
}

.close-search-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.search-results {
  margin-top: 1.5rem;
  max-height: 50vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.search-result-item:hover {
  background-color: var(--background);
}

.search-result-item img {
  width: 50px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.hero-container-centered {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  animation: fadeUp 1s ease forwards;
}

.hero-header-box {
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-capsule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.hero-capsule-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.hero-capsule-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hero-capsule-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-capsule-card:hover img {
  transform: scale(1.1);
}

.capsule-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.capsule-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.capsule-overlay h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.capsule-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.capsule-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.hero-ticker-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #e2e8f0;
}

.hero-ticker-bar span {
  white-space: nowrap;
}

.hero-ticker-bar i {
  color: var(--accent);
  margin-right: 0.4rem;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(20, 184, 166, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-lbl {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual-col {
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 480px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.badge-top {
  top: 1.5rem;
  left: 1.5rem;
  color: var(--accent);
}

.badge-bottom {
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--highlight);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-dark {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #0f172a;
  transform: translateY(-2px);
}

.section {
  padding: 6rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

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

.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-img {
  transform: scale(1.08);
}

.collection-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.collection-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.collection-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.collection-content .btn {
  white-space: nowrap;
}

.product-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform 0.5s ease;
}

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

.product-badge,
.product-actions {
  display: none !important;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--secondary);
  color: #ffffff;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-brand,
.product-specs {
  display: none !important;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--highlight);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.product-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 1rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-add-cart {
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-add-cart:hover {
  background-color: var(--secondary);
}

.banner-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  margin: 4rem auto;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 750px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-tag {
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.banner-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.banner-desc {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.brand-item {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition);
}

.brand-item:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-box {
  background-color: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(37, 99, 235, 0.15);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.newsletter-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 2rem auto 0 auto;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.page-banner {
  background: linear-gradient(180deg, var(--primary) 0%, #0f172a 100%);
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.page-title {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.shop-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 1.2rem;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter-categories {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.search-box-shop {
  position: relative;
  min-width: 280px;
}

.search-box-shop input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--background);
}

.search-box-shop i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-image-box {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f1f5f9;
}

.main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.thumbnail-row {
  display: none !important;
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.detail-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.detail-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.option-group {
  margin-bottom: 1.8rem;
}

.size-option-group {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px transparent solid;
  transition: all 0.3s ease;
}

.size-option-group.highlight-required {
  background: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.3);
  animation: sizeShake 0.4s ease-in-out;
}

@keyframes sizeShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.option-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: block;
}

.size-options,
.color-options {
  display: flex;
  gap: 0.8rem;
}

.size-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  outline: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.color-dot.active,
.color-dot:hover {
  outline: 2px solid var(--secondary);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.qty-btn {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.qty-btn:hover {
  background-color: var(--background);
}

.qty-input {
  width: 50px;
  text-align: center;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.specs-accordion {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.accordion-content {
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cart-table-wrapper {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow-x: auto;
  margin-bottom: 3rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cart-table th,
.cart-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-table th {
  background-color: #f8fafc;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cart-item-img {
  width: 70px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.remove-btn {
  color: #ef4444;
  font-size: 1.1rem;
  transition: var(--transition);
}

.remove-btn:hover {
  transform: scale(1.2);
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.order-summary {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  height: fit-content;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.summary-row.total {
  border-top: 2px solid var(--border);
  padding-top: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.about-hero {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 5rem auto;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.story-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.story-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 500;
}

.site-footer {
  background-color: var(--primary);
  color: #94a3b8;
  padding: 5rem 2rem 2rem 2rem;
  border-top: 1fr solid var(--border);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: #cbd5e1;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1440px) {
  .section { max-width: 1200px; }
}

@media (max-width: 1200px) {
  .hero-title { font-size: 3.5rem; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 2fr repeat(2, 1fr); gap: 2.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger-btn { display: block; }
  .hero-title { font-size: 3rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-detail-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .banner-section { flex-direction: column; text-align: center; gap: 2rem; padding: 3rem 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 2.2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .hero-capsule-grid { grid-template-columns: 1fr !important; width: 100%; }
  .detail-info { align-items: center; text-align: center; }
  .detail-price-row { justify-content: center; }
  .size-options, .color-options { justify-content: center; }
  .detail-actions { justify-content: center; width: 100%; }
  .cart-item-title { font-size: 0.88rem; max-width: 180px; }

  .hero-ticker-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    width: 100%;
  }

  .hero-ticker-bar span {
    white-space: nowrap !important;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .cart-layout {
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cart-table-wrapper {
    background: transparent;
    border: none;
    overflow-x: visible;
    margin-bottom: 2rem;
  }

  .cart-table,
  .cart-table tbody {
    display: block;
    width: 100%;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0.6rem 0.8rem;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
  }

  .cart-table td:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1;
    padding: 0;
    border: none;
  }

  .cart-item-img {
    width: 52px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .cart-item-title {
    font-size: 0.82rem;
    max-width: 170px;
  }

  .cart-table td:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 1;
    padding: 0;
    border: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .remove-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
  }

  .cart-table td:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .cart-table td:nth-child(2)::before {
    content: "Price:";
    font-weight: 600;
    color: var(--primary);
  }

  .cart-table td:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
  }

  .cart-table td:nth-child(4)::before {
    content: "Subtotal:";
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .cart-table td:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem !important;
    border-top: 1px dashed var(--border) !important;
  }

  .cart-table td:nth-child(3)::before {
    content: "Quantity:";
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
  }

  .cart-table td:nth-child(3) .quantity-control .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .cart-table td:nth-child(3) .quantity-control .qty-input {
    width: 32px;
    height: 28px;
    font-size: 0.82rem;
  }

  .order-summary {
    padding: 1.2rem;
    margin-top: 1.2rem;
  }
}

@media (max-width: 576px) {
  .grid-4 { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .hero-capsule-grid { grid-template-columns: 1fr !important; width: 100%; }
  .size-btn { font-size: 0.82rem; width: 38px; height: 38px; }
  .detail-title { font-size: 1.8rem; }
  .cart-item-title { max-width: 170px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .navbar { padding: 1rem; }
  .section { padding-left: 1rem !important; padding-right: 1rem !important; }
  .cart-item-title { max-width: 150px; }
}

@media (max-width: 360px) {
  .logo { font-size: 1.6rem; }
}

@media (max-width: 320px) {
  .hero-title { font-size: 1.7rem; }
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}

.toast-message {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-left: 4px solid #34d399;
}

.toast-error,
.toast-failure {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-left: 4px solid #fca5a5;
}
