/* ===================================================================
   UEEX — Kurumsal Tek Sayfa Site — Ana Stil Dosyası
   =================================================================== */

:root {
  --color-black: #0a0a0a;
  --color-black-soft: #121212;
  --color-charcoal: #1c1c1e;
  --color-white: #ffffff;
  --color-off-white: #f6f5f3;
  --color-gray-100: #f1f1f0;
  --color-gray-300: #d8d7d4;
  --color-gray-500: #8a8a86;
  --color-gray-700: #4a4a48;
  --color-gold: #b8935a;
  --color-gold-light: #d8bd8d;
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.10);
  --shadow-hard: 0 30px 80px rgba(0,0,0,0.35);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Manrope', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }

.section-head p {
  color: var(--color-gray-700);
  font-size: 17px;
  margin-top: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-hard); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-outline-dark {
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--color-black);
}
.btn-outline-dark:hover { background: var(--color-black); color: var(--color-white); }
.btn-gold { background: var(--color-gold); color: var(--color-black); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(184,147,90,0.35); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* =================== HEADER =================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.0);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  height: 72px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
}
.brand-logo img { height: 34px; width: auto; }
.brand-logo .logo-text {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}
.brand-logo .logo-sub {
  display: block;
  font-size: 9.5px;
  letter-spacing: 3px;
  color: var(--color-gold-light);
  font-weight: 600;
  margin-top: -2px;
}

.main-nav ul {
  display: flex;
  gap: 40px;
}
.main-nav a {
  color: var(--color-white);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}
.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
}
.mobile-nav .btn { margin-top: 10px; }

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.55;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.95) 100%),
              linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 55%, rgba(10,10,10,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 720px;
  padding: 100px 0 90px;
}
.hero-content .eyebrow { color: var(--color-gold-light); }
.hero-title {
  font-size: clamp(46px, 7.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}
.hero-title .line2 { color: var(--color-gold-light); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 26px 0 42px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll .mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  position: relative;
}
.hero-scroll .mouse::before {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  background: var(--color-gold-light);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 7px; }
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 56px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 640px;
}
.hero-stats .stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
}
.hero-stats .stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.4px;
}

/* =================== MARQUEE / CATEGORY STRIP =================== */
.category-strip {
  background: var(--color-off-white);
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-gray-300);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-700);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee-track span::after { content: '•'; color: var(--color-gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =================== ÜRÜNLER =================== */
.products-section { padding: 130px 0; background: var(--color-white); }

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

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-100);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }

.product-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: #e9e8e5;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,10,10,0.85);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  z-index: 2;
}

.product-body { padding: 26px 26px 28px; }
.product-body h3 { margin-bottom: 10px; }
.product-body p {
  color: var(--color-gray-700);
  font-size: 14.5px;
  margin-bottom: 20px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--color-black);
  border-bottom: 1.5px solid var(--color-black);
  padding-bottom: 3px;
  transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.product-link:hover { gap: 13px; color: var(--color-gold); border-color: var(--color-gold); }

/* =================== HAKKIMIZDA =================== */
.about-section {
  background: var(--color-black);
  color: var(--color-white);
  padding: 140px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-copy .eyebrow { color: var(--color-gold-light); }
.about-copy p {
  color: rgba(255,255,255,0.72);
  font-size: 16.5px;
  margin-bottom: 18px;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.about-badge b { font-size: 22px; color: var(--color-gold-light); display:block; }
.about-badge span { font-size: 12.5px; color: rgba(255,255,255,0.7); }

/* =================== ÖZELLİKLER =================== */
.features-section { padding: 120px 0; background: var(--color-off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--color-white);
  padding: 38px 28px;
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid var(--color-gray-300);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--color-black);
  color: var(--color-gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}
.feature-card h4 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--color-gray-700); }

/* =================== GALERİ =================== */
.gallery-section { padding: 130px 0; background: var(--color-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-gray-100);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--color-white);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 34px;
  color: var(--color-white);
  font-size: 34px;
  line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* =================== İLETİŞİM =================== */
.contact-section {
  padding: 130px 0;
  background: var(--color-black-soft);
  color: var(--color-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-info-item:hover { background: rgba(255,255,255,0.07); transform: translateX(4px); }
.contact-info-item .ci-icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--color-gold);
  color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-item .ci-body b { display: block; font-size: 15px; margin-bottom: 4px; }
.contact-info-item .ci-body a,
.contact-info-item .ci-body span { color: rgba(255,255,255,0.68); font-size: 14.5px; line-height: 1.5; }
.contact-info-item .ci-body a:hover { color: var(--color-gold-light); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,0.12);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: grayscale(0.3) contrast(1.05); }

.contact-form-note {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-logo { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-black); }

.admin-hint {
  opacity: 0.18;
  font-size: 11px;
  cursor: default;
  user-select: none;
  transition: opacity 0.3s ease;
}
.admin-hint:hover { opacity: 0.55; }

/* =================== SCROLL ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.42s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 34px; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 70px 0 60px; }
  .products-section, .about-section, .features-section, .gallery-section, .contact-section { padding: 80px 0; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
}

/* =================== ADMIN PANEL =================== */
#admin-lock-overlay {
  align-items: center;
  justify-content: center;
  z-index: 3500;
}
#admin-lock-overlay .admin-panel {
  height: auto;
  border-radius: var(--radius-lg);
  animation: none;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}
#admin-lock-overlay .admin-body { padding: 40px 32px; }
#admin-lock-input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
  text-align: center;
  letter-spacing: 2px;
}
#admin-lock-input:focus { outline: 1.5px solid var(--color-gold); }

.admin-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.6);
  z-index: 3000;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
}
.admin-overlay.open { display: flex; }

.admin-panel {
  width: min(480px, 100%);
  height: 100%;
  background: #14140f;
  color: #f1efe9;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  animation: slideIn 0.4s var(--ease);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.admin-header {
  position: sticky; top: 0;
  background: #14140f;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 2;
}
.admin-header h3 { color: var(--color-gold-light); font-size: 17px; }
.admin-close { font-size: 26px; color: #fff; opacity: 0.7; }
.admin-close:hover { opacity: 1; }

.admin-body { padding: 24px; }
.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.admin-tab-btn {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  font-weight: 600;
}
.admin-tab-btn.active { background: var(--color-gold); color: #14140f; }

.admin-section { display: none; }
.admin-section.active { display: block; }

.admin-field { margin-bottom: 18px; }
.admin-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.admin-field input[type=text],
.admin-field input[type=tel],
.admin-field input[type=email],
.admin-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 14px;
  resize: vertical;
}
.admin-field input:focus, .admin-field textarea:focus { outline: 1.5px solid var(--color-gold); }
.admin-field small { display:block; margin-top:6px; color: rgba(255,255,255,0.4); font-size: 11.5px; }

.admin-img-preview {
  width: 100%; height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
}
.admin-file-btn {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.admin-file-btn:hover { background: rgba(255,255,255,0.18); }

.admin-product-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.03);
}
.admin-product-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.admin-mini-btn {
  padding: 7px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.08);
  font-size: 11.5px;
  color: #fff;
}
.admin-mini-btn:hover { background: rgba(255,255,255,0.16); }
.admin-mini-btn.danger { background: rgba(220,70,70,0.2); color: #ff9a9a; }
.admin-mini-btn.danger:hover { background: rgba(220,70,70,0.35); }

.admin-actions-bar {
  position: sticky; bottom: 0;
  background: #14140f;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.admin-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.admin-add-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px dashed rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}
.admin-add-btn:hover { border-color: var(--color-gold); color: var(--color-gold-light); }

.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-black);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
