@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #1b4d3e;
  --bg-dark: #0f2a21;
  --bg-darker: #0a1c15;
  --accent: #c0c0c0;
  --accent-light: #e8e8e8;
  --text: #ffffff;
  --hover: #2d6a57;
  --gold: #d4af37;
  --border: #a8a8a8;
  --hdr: 165px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0; /* prevents grid/flex children from overflowing */
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader img {
  width: 240px;
  height: 240px;
  animation: pulse 1.5s ease-in-out infinite;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 5rem;
  right: 2rem;
  background: var(--hover);
  border: 1px solid var(--gold);
  padding: 1rem 2rem;
  z-index: 5000;
  animation: slideIn 0.4s ease;
  display: none;
  font-size: 0.9rem;
}
.toast.show {
  display: block;
}
@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 77, 62, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
header.scrolled {
  background: rgba(10, 28, 21, 0.98);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(212, 175, 55, 0.25);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.logo:hover {
  opacity: 0.88;
}
.logo img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid rgba(212, 175, 55, 0.6);
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.logo:hover img {
  transform: scale(1.05);
  border-color: rgba(212, 175, 55, 0.95);
  box-shadow:
    0 0 0 5px rgba(212, 175, 55, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.45);
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo-text h1 {
  font-size: 1.55rem;
  letter-spacing: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.logo-text span {
  font-size: 0.74rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
nav a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav a:hover,
nav a.active {
  color: var(--gold);
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 0.3rem;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: var(--accent);
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--bg-darker);
  border-color: var(--gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 2000;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s;
}
.mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.3rem;
  color: var(--text);
  border-bottom: 1px solid rgba(192, 192, 192, 0.08);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.mobile-menu .lang-switch {
  margin-top: 2rem;
  gap: 0.5rem;
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.mobile-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(192, 192, 192, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
  text-decoration: none;
}
.mobile-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-darker);
}

/* ===== PAGES ===== */
.page {
  display: none;
  min-height: 100vh;
}
.page.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--bg-darker) 0%,
    var(--bg) 40%,
    var(--hover) 70%,
    var(--bg-darker) 100%
  );
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none; /* keeps buttons/links clickable */
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05) brightness(0.5);
  transition: transform 7000ms ease, filter 1s ease;
  will-change: transform, opacity;
}
.slide.active img {
  transform: scale(1.13);
  filter: saturate(1.05) contrast(1.05) brightness(1);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 25% 25%, var(--accent) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
}


.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 4rem));
  padding: 0 2rem;
}

.hero-logo {
  width: 280px;
  height: 280px;
  margin: 0 auto 2.5rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(192, 192, 192, 0.15));
  border-radius: 50%;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero h1 span {
  color: var(--gold);
}
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--accent);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.btn:hover {
  background: var(--hover);
  border-color: var(--hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-darker);
  border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: #e0be4a;
  border-color: #e0be4a;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2.5s ease-in-out infinite;
  color: var(--accent);
  opacity: 0.4;
  z-index: 3;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 6rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 4;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.hero-dot:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.7);
}
.hero-dot.active {
  width: 22px;
  background: rgba(212, 175, 55, 0.95);
  border-color: rgba(212, 175, 55, 1);
}
.hero-dot:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.95);
  outline-offset: 3px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 28, 21, 0.35);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-arrow:hover {
  border-color: rgba(212, 175, 55, 0.75);
  color: rgba(212, 175, 55, 1);
  background: rgba(10, 28, 21, 0.55);
  transform: translateY(-50%) scale(1.04);
}
.hero-arrow:active {
  transform: translateY(-50%) scale(0.98);
}
.hero-arrow:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.95);
  outline-offset: 3px;
}
.hero-arrow-prev {
  left: 1.3rem;
}
.hero-arrow-next {
  right: 1.3rem;
}

@media (max-width: 600px) {
  .hero-dots {
    bottom: 5.4rem;
  }
  .hero-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .slide img,
  .scroll-hint {
    transition: none !important;
    animation: none !important;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5.5rem 0;
}
.section-dark {
  background: var(--bg-darker);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 1px;
}
.section-header h2 span {
  color: var(--gold);
}
.section-header .line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.section-header p {
  color: var(--accent);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cat-card {
  background: rgba(45, 106, 87, 0.15);
  border: 1px solid rgba(192, 192, 192, 0.12);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.cat-card:hover::before {
  opacity: 1;
}
.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.cat-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.cat-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.cat-card:hover h3 {
  color: var(--gold);
}
.cat-card p {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.cat-card .count {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: calc(var(--hdr, 165px) + 1.5rem) 0 2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--accent);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--accent);
  cursor: pointer;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  opacity: 0.4;
}
.breadcrumb .current {
  color: var(--gold);
  font-weight: 500;
}

/* ===== COLOR FILTER ===== */
.color-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  user-select: none;
}
.color-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.color-item:hover .color-circle {
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.color-item.active .color-circle {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.4);
  transform: scale(1.15);
}
.all-circle {
  background: rgba(192, 192, 192, 0.1);
  border: 2px solid rgba(192, 192, 192, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition:
    border-color 0.18s,
    color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.color-item.active .all-circle {
  border-color: var(--gold);
  color: var(--gold);
}
.color-label {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: capitalize;
  transition: color 0.18s;
  line-height: 1;
}
.color-item:hover .color-label,
.color-item.active .color-label {
  color: var(--text);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.8rem;
}
.product-card {
  background: rgba(45, 106, 87, 0.12);
  border: 1px solid rgba(192, 192, 192, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.product-img {
  height: 300px;
  background: linear-gradient(145deg, var(--hover) 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img .rose-emoji {
  font-size: 5.5rem;
  transition: transform 0.5s;
}
.product-card:hover .rose-emoji {
  transform: scale(1.1) rotate(5deg);
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 28, 21, 0.6) 0%, transparent 50%);
}
/* ===== LOGO OVERLAY ===== */
.logo-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.72;
  z-index: 3;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 4px;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.product-card:hover .logo-overlay {
  opacity: 0.9;
}
.no-watermark .logo-overlay {
  display: none;
}

.product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--gold);
  color: var(--bg-darker);
  padding: 0.25rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
}
.product-info {
  padding: 1.3rem;
}
.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}
.product-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 192, 192, 0.3);
  transition: transform 0.3s;
}
.dot:hover {
  transform: scale(1.3);
}
.product-meta {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stock {
  color: #4ade80;
  font-weight: 500;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 1rem 0 5rem;
}
.gallery-main {
  height: 520px;
  background: linear-gradient(145deg, var(--hover) 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192, 192, 192, 0.12);
  position: relative;
  overflow: hidden;
}
.gallery-main .rose-emoji {
  font-size: 8.5rem;
}
.gallery-main .zoom-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-main:hover .zoom-icon {
  opacity: 1;
}
.gallery-thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.thumb {
  width: 70px;
  height: 70px;
  background: var(--hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.thumb.active,
.thumb:hover {
  border-color: var(--gold);
}

.detail-info h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.detail-info .origin {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}
.detail-info > p {
  color: var(--accent);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.colors-section h4,
.sizes-section h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.color-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.color-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.color-circle.active {
  border-color: var(--gold);
  transform: scale(1.2);
}
.color-circle::after {
  content: attr(data-name);
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--accent);
}
.color-circle:hover::after,
.color-circle.active::after {
  opacity: 1;
}

.size-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.size-btn {
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(192, 192, 192, 0.25);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.size-btn.active,
.size-btn:hover {
  background: var(--gold);
  color: var(--bg-darker);
  border-color: var(--gold);
}

.specs {
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.06);
  font-size: 0.9rem;
}
.spec-row span:first-child {
  color: var(--accent);
  font-weight: 300;
}

.action-btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== ABOUT ===== */
.about-hero-section {
  padding: calc(var(--hdr, 165px) + 2rem) 0 4rem;
  text-align: center;
  background: var(--bg-darker);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-content.reverse {
  direction: rtl;
}
.about-content.reverse > * {
  direction: ltr;
}
.about-img {
  height: 380px;
  background: linear-gradient(145deg, var(--hover) 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192, 192, 192, 0.1);
  position: relative;
  overflow: hidden;
}
.about-img::after {
  content: '';
  position: absolute;
  top: -1rem;
  right: -1rem;
  bottom: 1rem;
  left: 1rem;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.video-mute-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(10, 28, 21, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-mute-btn:hover {
  background: rgba(10, 28, 21, 0.9);
  border-color: rgba(212, 175, 55, 0.9);
  color: var(--gold);
}
.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.about-text p {
  color: var(--accent);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(45, 106, 87, 0.12);
  border: 1px solid rgba(192, 192, 192, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.value-card .val-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.2rem;
}
.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.value-card p {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 300;
}

.certs-list {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.certs-list li {
  background: rgba(45, 106, 87, 0.2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  color: var(--accent);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.certs-list li:hover {
  border-color: var(--gold);
  background: rgba(45, 106, 87, 0.3);
}

/* About Gallery */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-photo-slot {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(45, 106, 87, 0.12);
  border: 1px dashed rgba(192, 192, 192, 0.25);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}
.about-photo-slot:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.about-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.about-photo-slot img[src=""] {
  display: none;
}
.about-photo-slot:not(:has(img[src])) .photo-num,
.about-photo-slot img[src=""] ~ .photo-num {
  display: flex;
}
.photo-num {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(192, 192, 192, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.photo-num::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(192,192,192,0.4)' stroke-width='1.2'%3E%3Cpath d='M23 19a2 2 0 01-2 2H3a2 2 0 01-2-2V8a2 2 0 012-2h4l2-3h6l2 3h4a2 2 0 012 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.about-photo-slot img[src=""] ~ .photo-num {
  display: flex;
}
@media (max-width: 900px) {
  .about-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .about-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== HOME ABOUT INTRO ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.home-about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.4);
}

.about-hero-section h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.contact-page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#page-admin > .section:first-child {
  padding-top: calc(var(--hdr) + 2rem);
}

/* ===== OUR HISTORY ===== */
.our-history .history-body {
  max-width: 720px;
  margin: 0 auto;
}
.our-history .history-body p {
  color: var(--accent);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.our-history .history-body h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 2rem 0 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.contact-form-wrap {
  background: rgba(45, 106, 87, 0.1);
  border: 1px solid rgba(192, 192, 192, 0.1);
  padding: 3rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(10, 28, 21, 0.5);
  border: 1px solid rgba(192, 192, 192, 0.2);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.info-card {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding: 1.5rem;
  background: rgba(45, 106, 87, 0.1);
  border: 1px solid rgba(192, 192, 192, 0.08);
  transition: all 0.3s;
}
.info-card:hover {
  border-color: var(--gold);
}
.info-icon {
  width: 45px;
  height: 45px;
  background: var(--hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.info-card p,
.info-card a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 300;
  display: block;
}
.info-card a:hover {
  color: var(--gold);
}

.map-placeholder {
  height: 320px;
  background: linear-gradient(145deg, var(--hover), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192, 192, 192, 0.1);
  margin-top: 3rem;
  text-align: center;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  font-size: 2.8rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  display: block;
  font-weight: 700;
}
.stat-item .lbl {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--hover) 0%, var(--bg-darker) 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
}
.footer-brand p {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
  font-size: 0.9rem;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-darker);
}
.social-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 300;
  cursor: pointer;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  background: rgba(27, 77, 62, 0.3);
  border: 1px solid rgba(192, 192, 192, 0.2);
  color: var(--text);
  font-size: 0.88rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 0.8rem 1.2rem;
  background: var(--gold);
  color: var(--bg-darker);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-form button:hover {
  background: #e0be4a;
}
.footer-bottom {
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 300;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 900;
}
.back-top.show {
  display: flex;
}
.back-top:hover {
  background: var(--gold);
  color: var(--bg-darker);
  border-color: var(--gold);
}

/* ===== INQUIRY MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--bg);
  border: 1px solid var(--border);
  max-width: 550px;
  width: 100%;
  padding: 3rem;
  position: relative;
  animation: scaleIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
}
.modal-close:hover {
  color: var(--gold);
}
.modal h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.modal .modal-sub {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */

/* ── Tablet (≤1024px) ─────────────────────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content,
  .contact-grid {
    gap: 2rem;
  }
  .hero-logo {
    width: 200px;
    height: 200px;
  }
  .about-intro-grid {
    gap: 2rem;
  }
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── Mobile (≤768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  :root { --hdr: 130px; }

  /* Header */
  nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .header-inner {
    padding: 0.8rem 1.5rem;
  }
  .logo img {
    width: 105px;
    height: 105px;
  }
  .logo-text h1 {
    font-size: 1.1rem;
    letter-spacing: 2.5px;
  }
  .logo-text span {
    font-size: 0.62rem;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    align-items: flex-start;
  }
  .hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
  }
  .hero-content {
    width: calc(100% - 2rem);
    padding: calc(var(--hdr) + 1.5rem) 1rem 2rem;
    margin: 0 auto;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Spacing */
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  /* Grids */
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-detail,
  .about-content,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Product card */
  .product-img {
    height: 220px;
  }
  .gallery-main {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .gallery-main img {
    object-fit: contain !important;
  }
  .gallery-thumbs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
  }

  /* Buttons */
  .action-btns {
    flex-direction: column;
  }
  .action-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* About / sections */
  .about-content.reverse {
    direction: ltr;
  }
  .about-img::after {
    display: none;
  }
  .about-img {
    height: 260px;
  }
  .about-hero-section h2 {
    font-size: 2rem;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .home-about-img {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .contact-form-wrap {
    padding: 1.5rem;
  }
  .contact-page-title {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ── Small mobile (≤480px) ────────────────────────────── */
@media (max-width: 480px) {
  :root { --hdr: 120px; }

  /* Header */
  .logo img {
    width: 95px;
    height: 95px;
  }
  .logo-text h1 {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
  .logo-text span {
    font-size: 0.56rem;
    letter-spacing: 1.5px;
  }
  .logo {
    gap: 0.7rem;
  }

  /* Hero */
  .hero-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: 1.7rem;
    letter-spacing: 2px;
  }
  .hero p {
    font-size: 0.88rem;
  }

  /* Grids → single column */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }

  /* Product card */
  .product-img {
    height: 200px;
  }
  .gallery-main {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .gallery-main img {
    object-fit: contain !important;
  }

  /* Spacing */
  .section {
    padding: 2.5rem 0;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }

  /* Buttons full-width */
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-buttons .btn {
    max-width: 100%;
  }

  /* Spacing */
  .container {
    padding: 0 0.8rem;
  }
  .contact-page-title {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    font-size: 0.78rem;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 50px;
    height: 50px;
  }
}

/* ===== ADMIN ===== */
.admin-wrap {
  margin-top: 1.5rem;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.admin-card {
  background: rgba(10, 28, 21, 0.35);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
}
.admin-card h3 {
  margin-bottom: 1rem;
}
.admin-card h4 {
  margin: 0 0 0.75rem 0;
}
.admin-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.admin-row label {
  font-size: 0.9rem;
  color: var(--accent-light);
}
.admin-row input,
.admin-row select,
.admin-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.2);
  background: rgba(15, 42, 33, 0.6);
  color: var(--text);
  outline: none;
}
.admin-row textarea {
  resize: vertical;
  min-height: 90px;
}
.admin-inline {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.admin-divider {
  height: 1px;
  background: rgba(192, 192, 192, 0.15);
  margin: 1.1rem 0;
}
.admin-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.admin-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 999px;
  background: rgba(15, 42, 33, 0.45);
  font-size: 0.85rem;
}
.admin-chip .swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.admin-chip button {
  border: none;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.admin-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
.admin-product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.15);
  background: rgba(15, 42, 33, 0.4);
}
.admin-note {
  margin-top: 0.9rem;
  color: var(--accent);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .admin-inline {
    grid-template-columns: 1fr;
  }
}
