/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2744;
  --navy-light: #2a3f6a;
  --blue: #3a8fd4;
  --blue-light: #5cb8f0;
  --blue-pale: #e8f4fd;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --red-heart: #e63946;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff 0%, #b8c6d4 40%, #8a9bb0 70%, #c5d3e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}

.nav-logo-text .sub {
  font-size: 0.72rem;
  color: var(--blue-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 4px;
  margin-left: 12px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--blue);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 32px;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 60px rgba(58, 143, 212, 0.4);
}

/* Hero entrance animation - triggered by JS after splash */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
}

.hero-anim.visible {
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}


.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 30%, #cbd5e1 60%, #f1f5f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 8px;
  margin-bottom: 8px;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero .subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero .tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(58, 143, 212, 0.4);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58, 143, 212, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== ABOUT ===== */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

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

.category-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.category-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 39, 68, 0.85));
}


.category-info {
  padding: 20px 24px 24px;
}

.category-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.category-info p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.category-info .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.category-card:hover .arrow {
  gap: 10px;
}

/* ===== CATEGORY FULL PAGE ===== */
.category-page-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.category-page-overlay.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.category-page-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.category-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  font-family: inherit;
}

.category-back-btn:hover {
  background: var(--gray-100);
}

.category-close-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-close-btn:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.category-page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 60px 48px 48px;
}

.category-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.category-page-overlay.active .category-page-hero-bg {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.category-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}


.category-page-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.category-page-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 20px;
}

.category-page-stats {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.category-page-body {
  padding: 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subcat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.category-page-overlay.active .subcat-card {
  animation: cardFadeIn 0.4s ease forwards;
}

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

.subcat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--blue), #2980b9);
  transition: height 0.3s ease;
}

.subcat-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.subcat-card:hover::before {
  height: 100%;
}

.subcat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.subcat-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.subcat-card-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.subcat-card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.subcat-card:hover .subcat-card-arrow {
  gap: 12px;
}

/* ===== PRODUCT FULL PAGE ===== */
.product-page-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: var(--white);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.product-page-overlay.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.product-page-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.product-page-content {
  /* no padding - hero goes edge to edge */
}

.product-page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 80px 48px 48px;
}

.product-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.product-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(26,39,68,0.5), transparent);
  z-index: 1;
}

.product-page-overlay.active .product-page-hero-bg {
  animation: heroZoom 10s ease forwards;
}

.product-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.product-page-breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-page-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.product-page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-page-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-page-count {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.product-page-body-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}

.product-page-types {
  margin-top: 0;
}

.product-page-types h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-pale);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-types-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.product-types-hint svg {
  flex-shrink: 0;
  color: var(--blue);
}

.product-types-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-type-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  transition: all 0.25s ease;
  opacity: 0;
  animation: cardFadeIn 0.35s ease forwards;
}

.product-type-card:hover {
  border-left-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  background: var(--gray-50);
}

.product-type-index {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-type-info {
  flex: 1;
  min-width: 0;
}

.product-type-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}

.product-type-add {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.product-type-qty {
  width: 52px;
  padding: 6px 4px;
  text-align: center;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s ease;
}

.product-type-qty:focus {
  border-color: var(--blue);
}

.product-type-add-btn {
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-type-add-btn:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.product-type-add-btn.added {
  background: #16a34a;
}

.product-page-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray-600);
}

.product-page-empty p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-label {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: #25D366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4);
  pointer-events: none;
  animation: waLabelPulse 3s ease-in-out infinite;
}
.whatsapp-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #25D366;
  transform: rotate(45deg);
  border-radius: 2px;
}
@keyframes waLabelPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.85; transform: translateY(-3px); }
}

/* ===== FLOATING QUOTE BADGE ===== */
.quote-badge {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.4);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.quote-badge.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.quote-badge:hover {
  background: var(--blue);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(58, 143, 212, 0.5);
}

.quote-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #dc2626;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ===== QUOTE PANEL ===== */
.quote-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2900;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quote-panel-backdrop.active {
  display: block;
  opacity: 1;
}

.quote-panel {
  position: fixed;
  top: 0;
  right: -440px;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--white);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-panel.active {
  right: 0;
}

.quote-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.quote-panel-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.quote-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.quote-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.quote-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.quote-item:last-child {
  border-bottom: none;
}

.quote-item-info {
  flex: 1;
  min-width: 0;
}

.quote-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 3px;
}

.quote-item-path {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.quote-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.quote-item-qty {
  width: 48px;
  padding: 6px 4px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: #000;
  outline: none;
}

.quote-item-qty:focus {
  border-color: var(--blue);
}

.quote-item-remove {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quote-item-remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.quote-panel-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-quote-clear {
  flex: 1;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray-600);
  background: var(--gray-100);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quote-clear:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.btn-quote-pdf {
  flex: 2;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-quote-pdf:hover {
  background: var(--blue);
}

/* ===== SEARCH ===== */
.search-wrapper {
  margin-bottom: 40px;
  position: relative;
  z-index: 50;
}

.search-box {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 16px 24px 16px 50px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.search-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(58, 143, 212, 0.1), var(--shadow-md);
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--gray-200);
  max-height: 420px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 14px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-result-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

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

.search-result-item:hover::before {
  opacity: 1;
}

.search-result-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.search-result-path {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.search-no-result {
  padding: 24px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

@media (max-width: 1024px) {
  .category-page-grid { grid-template-columns: repeat(2, 1fr); }
  .category-page-hero { min-height: 35vh; padding: 48px 32px 40px; }
  .category-page-title { font-size: 2.2rem; }
  .category-page-body { padding: 32px; }
  .category-page-topbar { padding: 14px 24px; }
  .product-page-topbar { padding: 14px 24px; }
  .product-page-hero { min-height: 32vh; padding: 60px 32px 40px; }
  .product-page-hero-content h1 { font-size: 2rem; }
  .product-page-body-inner { padding: 36px 24px 60px; }
  .product-type-qty { width: 44px; }
  .product-type-add-btn { padding: 7px 14px; font-size: 0.75rem; }
}

@media (max-width: 768px) {
  .category-page-grid { grid-template-columns: 1fr; }
  .category-page-hero { min-height: 30vh; padding: 32px 20px 28px; }
  .category-page-title { font-size: 1.6rem; }
  .category-page-description { font-size: 0.9rem; }
  .category-page-body { padding: 20px; }
  .category-page-topbar { padding: 12px 16px; }
  .product-page-topbar { padding: 12px 16px; }
  .product-page-hero { min-height: 28vh; padding: 48px 20px 28px; }
  .product-page-hero-content h1 { font-size: 1.6rem; }
  .product-page-hero-content p { font-size: 0.9rem; }
  .product-page-body-inner { padding: 24px 16px 48px; }
  .product-type-index { display: none; }
  .product-page-hero-actions { flex-direction: column; align-items: flex-start; }
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(58, 143, 212, 0.08);
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(92, 184, 240, 0.06);
  pointer-events: none;
}

.contact .section-header h2 {
  color: var(--white);
}

.contact .section-header p {
  color: rgba(255,255,255,0.6);
}

.contact .section-divider {
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.contact-card .c-icon {
  width: 44px;
  height: 44px;
  background: rgba(58, 143, 212, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
  padding: 10px;
}

.contact-card .c-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.contact-card a {
  color: var(--blue-light);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-800);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(58, 143, 212, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff 0%, #b8c6d4 40%, #8a9bb0 70%, #c5d3e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-size: 0.75rem;
  color: var(--blue-light);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer-contact-item .fc-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--blue-light);
}

.footer-contact-item .fc-icon svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .lang-switch {
    margin-left: 0;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .hero .subtitle {
    font-size: 0.85rem;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .about-image {
    margin-top: 16px;
  }
  .whatsapp-btn { width: 50px; height: 50px; right: 20px; bottom: 20px; }
  .quote-badge { right: 20px; bottom: 84px; width: 50px; height: 50px; }
  .back-to-top { left: 20px; bottom: 20px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Category image placeholder colors */
.cat-img-1 { background: linear-gradient(135deg, #1a2744, #2a3f6a); }
.cat-img-2 { background: linear-gradient(135deg, #2a3f6a, #3a8fd4); }
.cat-img-3 { background: linear-gradient(135deg, #3a8fd4, #1a2744); }
.cat-img-4 { background: linear-gradient(135deg, #2a3f6a, #5cb8f0); }
.cat-img-5 { background: linear-gradient(135deg, #1a2744, #3a8fd4); }
.cat-img-6 { background: linear-gradient(135deg, #3a8fd4, #2a3f6a); }
.cat-img-7 { background: linear-gradient(135deg, #1a2744, #5cb8f0); }
.cat-img-8 { background: linear-gradient(135deg, #2a3f6a, #1a2744); }
.cat-img-9 { background: linear-gradient(135deg, #3a8fd4, #5cb8f0); }

.category-image .cat-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}

/* ===== SVG ICON SYSTEM ===== */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.svg-icon svg {
  width: 1em;
  height: 1em;
}



/* ===== HERO SHIP BACKGROUND ===== */
.hero-bg-ships {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bg-ship {
  position: absolute;
  opacity: 0.7;
}

.bg-ship-1 {
  width: 400px;
  top: 10%;
  right: 5%;
  animation: drift 25s ease-in-out infinite;
}

.bg-ship-2 {
  width: 300px;
  bottom: 25%;
  left: 3%;
  animation: drift 30s ease-in-out infinite reverse;
}

.bg-ship-3 {
  width: 200px;
  top: 55%;
  right: 25%;
  animation: drift 20s ease-in-out infinite;
}

.bg-icon {
  position: absolute;
  opacity: 0.6;
}

.bg-icon-anchor {
  width: 100px;
  top: 15%;
  left: 8%;
  animation: floatSlow 15s ease-in-out infinite;
}

.bg-icon-chain {
  width: 60px;
  top: 30%;
  right: 15%;
  animation: floatSlow 18s ease-in-out infinite reverse;
}

.bg-icon-container {
  width: 140px;
  bottom: 30%;
  right: 8%;
  animation: floatSlow 22s ease-in-out infinite;
}

.bg-icon-shackle {
  width: 70px;
  bottom: 35%;
  left: 20%;
  animation: floatSlow 16s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(15px) translateY(-8px); }
  50% { transform: translateX(-10px) translateY(5px); }
  75% { transform: translateX(8px) translateY(-3px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}
