:root {
  --ink: #020609;
  --navy: #07111a;
  --panel: #0b1924;
  --blue: #118cff;
  --gold: #d5ad62;
  --text: #f5f7f8;
  --muted: #aebbc3;
  --line: #d5ad6242;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.announcement {
  height: 34px;
  display: grid;
  place-items: center;
  background: #000;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-align: center;
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: #020609ee;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(15px);
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: none;
  border: 0;
}
.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand span,
.footer-brand span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand b,
.footer-brand b {
  font:
    700 1.2rem Georgia,
    serif;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.brand small,
.footer-brand small {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
}
.nav nav {
  display: flex;
  gap: 30px;
}
.nav nav button,
.cart-link {
  border: 0;
  background: none;
  color: #dfe7eb;
}
.nav nav button:hover,
.nav nav button.active {
  color: var(--gold);
}
.cart-link i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 0.7rem;
  font-style: normal;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.5rem;
}
.hero {
  height: 680px;
  position: relative;
  overflow: hidden;
}
.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 1s,
    transform 6s;
  transform: scale(1.04);
}
.hero img.show {
  opacity: 1;
  transform: scale(1);
}
.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000e, #02111f8c 58%, #062d500f);
}
.hero-copy {
  position: absolute;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(650px, 85vw);
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
}
.hero h1,
.page-title {
  font:
    500 clamp(2.8rem, 6vw, 5.3rem) / 1 Georgia,
    serif;
  margin: 18px 0;
}
.hero p,
.intro p {
  color: #d4dde2;
  line-height: 1.7;
  font-size: 1.08rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--blue);
  background: linear-gradient(135deg, #0d73d5, #13a5ff);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px #118cff55;
}
.button.gold,
.outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #090603;
}
.outline {
  background: transparent;
  border-color: var(--gold);
  color: #e9c985;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
}
.dots .on {
  background: var(--gold);
}
.values {
  max-width: 1180px;
  margin: -25px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #07111ae8;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px #000;
  padding: 25px;
}
.values div {
  text-align: center;
  border-right: 1px solid var(--line);
}
.values div:last-child {
  border: 0;
}
.values span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 6px;
}
.section,
.page {
  max-width: 1180px;
  margin: auto;
  padding: 95px 24px;
}
.section-title {
  font:
    500 2.7rem Georgia,
    serif;
  margin: 10px 0 34px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0 0 20px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #34230b, #171006);
  border-color: #e4bd70;
  box-shadow:
    0 25px 60px #000,
    0 0 32px #d5ad6240;
  z-index: 3;
}
.product-image {
  width: 100%;
  height: 365px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #050a0e;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.product-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.05);
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #020609dd;
  color: var(--gold);
  padding: 7px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.product-copy {
  padding: 18px 20px 0;
}
.product-copy small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-copy h3 {
  font:
    500 1.45rem Georgia,
    serif;
  margin: 8px 0;
}
.product-copy p {
  color: var(--muted);
  line-height: 1.55;
  min-height: 48px;
}
.price {
  color: var(--gold);
  font-size: 1.2rem;
}
.card-actions,
.buy-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 16px;
}
.card-actions .button {
  padding: 12px 10px;
}
.reviews-band {
  text-align: center;
  padding: 90px 20px;
  background:
    radial-gradient(circle at 80% 20%, #073d6b, transparent 40%), #03080c;
}
.reviews-band h2 {
  font:
    500 clamp(2rem, 4vw, 3rem) Georgia,
    serif;
  max-width: 850px;
  margin: 18px auto;
}
.reviews-band p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 18px auto;
}
.custom-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background:
    radial-gradient(circle at 85% 10%, #073d6b, transparent 38%), #07111a;
}
.custom-banner img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.custom-banner div {
  padding: 65px;
  align-self: center;
}
.custom-banner h2 {
  font:
    500 3rem Georgia,
    serif;
}
.custom-banner p {
  color: var(--muted);
  line-height: 1.7;
}
.intro {
  text-align: center;
  max-width: 820px;
  margin: auto;
}
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.filters button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--navy);
  color: #e5ca96;
  border-radius: 999px;
}
.filters .selected {
  background: var(--gold);
  color: #090603;
}
.detail {
  max-width: 1220px;
  margin: auto;
  padding: 45px 24px 90px;
}
.back {
  border: 0;
  background: none;
  color: var(--gold);
  padding: 12px 0;
}
.detail-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}
.main-photo {
  height: 630px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.main-photo:hover img {
  transform: scale(1.04);
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.thumbs button {
  height: 100px;
  padding: 0;
  background: #050a0e;
  border: 2px solid transparent;
  opacity: 0.65;
}
.thumbs button.active {
  opacity: 1;
  border-color: var(--gold);
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info h1 {
  font:
    500 clamp(2.5rem, 5vw, 4rem) / 1 Georgia,
    serif;
}
.rating {
  color: var(--gold);
}
.detail-price {
  display: block;
  font:
    2.1rem Georgia,
    serif;
  color: var(--gold);
  margin: 25px 0;
}
.product-info p,
.product-info li {
  color: var(--muted);
  line-height: 1.75;
}
.product-info label,
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  margin: 18px 0;
}
.product-info select,
.form input,
.form select,
.form textarea {
  padding: 13px;
  background: #03090d;
  border: 1px solid var(--line);
  color: white;
  border-radius: 10px;
}
.info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 45px;
  margin-top: 70px;
}
.info-panel h2,
.review-section h2 {
  font:
    2.6rem Georgia,
    serif;
}
.info-panel p {
  color: var(--muted);
  line-height: 1.8;
}
.review-section {
  padding-top: 70px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 25px;
}
.review-card p,
.review-card small {
  color: var(--muted);
  line-height: 1.65;
}
.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.form {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 35px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.upload {
  border: 1px dashed var(--gold);
  padding: 25px;
  text-align: center;
}
.form .button {
  width: 100%;
}
.process div {
  display: flex;
  gap: 15px;
  margin: 22px 0;
}
.process i {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #090603;
  font-style: normal;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy {
  padding: 70px;
  align-self: center;
}
.about-copy p {
  color: var(--muted);
  line-height: 1.8;
}
.track-card {
  max-width: 700px;
  margin: auto;
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 40px;
}
.track-result {
  margin-top: 28px;
  padding: 22px;
  background: var(--panel);
  border-left: 4px solid var(--gold);
}
.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  color: var(--muted);
}
.steps b {
  color: var(--gold);
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 45px;
}
.cart-item {
  display: grid;
  grid-template-columns: 85px 1fr auto auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.cart-item img {
  width: 85px;
  height: 75px;
  object-fit: cover;
}
.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty button,
.remove {
  background: none;
  border: 1px solid var(--line);
  color: white;
}
.summary {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 25px;
  height: max-content;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
}
.empty {
  text-align: center;
  padding: 70px 20px;
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background: #1f9b55;
  color: white;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px #000;
}
.toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  z-index: 100;
  background: var(--gold);
  color: #090603;
  padding: 12px 20px;
  border-radius: 99px;
  font-weight: 700;
  transition: 0.3s;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 55px 7vw 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
  color: var(--muted);
}
footer button {
  background: none;
  border: 0;
  color: var(--muted);
  margin-right: 14px;
}
.owner-link {
  position: absolute;
  right: 4vw;
  bottom: 24px;
  opacity: 0.65;
}
.admin {
  min-height: 100vh;
  background: #03080c;
  display: grid;
  grid-template-columns: 235px 1fr;
}
.admin-side {
  background: #020609;
  border-right: 1px solid var(--line);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
}
.admin-side .brand {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.admin-side nav {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.admin-side nav button,
.admin-side .store {
  padding: 13px;
  border: 0;
  background: none;
  color: var(--muted);
  text-align: left;
}
.admin-side nav .active {
  background: #0c3152;
  color: white;
}
.admin-side .store {
  margin-top: auto;
}
.admin-main {
  padding: 35px;
  min-width: 0;
}
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-head h1 {
  font:
    2.4rem Georgia,
    serif;
  margin: 5px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.stat {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 20px;
}
.stat span,
.stat small {
  display: block;
  color: var(--muted);
}
.stat strong {
  display: block;
  color: var(--gold);
  font:
    1.55rem Georgia,
    serif;
  margin: 10px 0;
}
.admin-panel {
  background: var(--navy);
  border: 1px solid var(--line);
  padding: 24px;
  margin-top: 22px;
}
.deadline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.due {
  border: 1px solid var(--line);
  border-top: 4px solid #e04e42;
  padding: 17px;
}
.due:nth-child(2) {
  border-top-color: #e89a27;
}
.due:nth-child(3) {
  border-top-color: var(--gold);
}
.due h3 {
  margin: 15px 0 4px;
}
.due p {
  color: var(--muted);
}
.due select,
.order-table select {
  padding: 8px;
  background: #03090d;
  color: white;
  border: 1px solid var(--line);
}
.order-table {
  overflow: auto;
}
.order-row {
  min-width: 820px;
  display: grid;
  grid-template-columns: 85px 1fr 1.4fr 90px 80px 150px;
  gap: 12px;
  align-items: center;
  padding: 14px 4px;
  border-top: 1px solid #ffffff12;
  font-size: 0.88rem;
}
.headings {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}
.urgent {
  color: #ff746b;
}
.invoice {
  margin-left: auto;
}
.toast,
.page,
.detail {
  animation: fade 0.45s ease;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 850px) {
  .menu {
    display: block;
  }
  .brand span {
    display: none;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #020609f8;
    padding: 22px;
    flex-direction: column;
  }
  .nav nav.open {
    display: flex;
  }
  .hero {
    height: 620px;
  }
  .values {
    margin: 0;
    grid-template-columns: 1fr;
  }
  .values div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .product-grid,
  .custom-banner,
  .detail-main,
  .two-col,
  .about,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .product-image {
    height: min(105vw, 440px);
  }
  .custom-banner img {
    height: 390px;
  }
  .custom-banner div,
  .about-copy {
    padding: 40px 24px;
  }
  .main-photo {
    height: min(110vw, 580px);
  }
  .product-info {
    padding-top: 10px;
  }
  .info-panel {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .admin {
    display: block;
  }
  .admin-side {
    display: none;
  }
  .admin-main {
    padding: 18px;
  }
  .stat-grid,
  .deadline-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card:hover {
    transform: scale(1.025);
  }
}
@media (max-width: 520px) {
  .hero-copy {
    left: 22px;
    width: calc(100% - 44px);
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .section,
  .page {
    padding: 65px 15px;
  }
  .product-grid {
    gap: 20px;
  }
  .card-actions,
  .buy-actions,
  .field-row {
    grid-template-columns: 1fr;
  }
  .thumbs button {
    height: 70px;
  }
  .info-panel {
    padding: 25px 20px;
  }
  .track-card,
  .form {
    padding: 24px 18px;
  }
  .cart-item {
    grid-template-columns: 70px 1fr auto;
  }
  .cart-item .line-total {
    display: none;
  }
  .stat-grid,
  .deadline-grid {
    grid-template-columns: 1fr;
  }
  .admin-head {
    align-items: flex-start;
  }
  .whatsapp span {
    display: none;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .owner-link {
    position: static;
    text-align: left;
  }
  .page-title {
    font-size: 2.7rem;
  }
}
@media (hover: none) {
  .product-card:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.delivery-strip { margin: 28px auto 0; max-width: 980px; padding: 16px 20px; border: 1px solid var(--line); background: #07111a; color: var(--muted); text-align: center; line-height: 1.7; }
.delivery-strip b, .delivery-box b { color: var(--gold); }
.delivery-box { display: flex; flex-direction: column; gap: 7px; margin: 20px 0; padding: 16px; border: 1px solid var(--line); background: #07111a; color: var(--muted); line-height: 1.45; }
.summary label { display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-weight: 700; margin: 18px 0; }
.summary select { width: 100%; padding: 12px; background: #03090d; border: 1px solid var(--line); border-radius: 8px; color: white; }
.thumbs { max-height: 330px; overflow-y: auto; padding-right: 3px; }
