:root {
  --bg-dark: #1e1e1e;
  --bg-mid: #2a2a2a;
  --text-light: #eaeaea;
  --text-muted: #9a9a9a;
  --accent: #b8a58a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= NAV ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  max-width: 1400px;
  margin: auto;
  padding: 18px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LEFT LINKS */
.nav-left {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* spacing between image and text, if you want text */
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo-img {
  display: block;
  height: 40px; /* adjust height as needed */
  width: auto;
}

/* RIGHT ICONS */
.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.nav-icon {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav-icon:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ================= PRODUCT ================= */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
}

.gallery img {
  width: 100%;
  margin-bottom: 30px;
}

.product-info h1 {
  font-size: 28px;
  letter-spacing: 2px;
}

.price {
  margin: 20px 0;
  font-size: 18px;
}

/* Options */
.option span {
  display: block;
  margin-bottom: 10px;
}

.sizes button {
  background: none;
  border: 1px solid #444;
  color: var(--text-light);
  padding: 10px 16px;
  margin-right: 8px;
  cursor: pointer;
}

.sizes .active {
  border-color: var(--accent);
}

.colors .color {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
}

.black { background: #000; }
.beige { background: #d8c7a8; }

.quantity {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.quantity button {
  background: none;
  border: 1px solid #444;
  color: var(--text-light);
  width: 40px;
  height: 40px;
}

.quantity span {
  padding: 0 20px;
}

/* ================= CTA BUTTONS ================= */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  margin-bottom: 14px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* PRIMARY – DAFTAR */
.btn-primary {
    background: var(--accent);
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary span,
.btn-primary {
  z-index: 1;
}

.btn-primary:hover {
  color: #000;
}

/* SECONDARY – LOGIN */
.btn-secondary {
  background: transparent;
  border: 1px solid #555;
  color: var(--text-light);
}

.btn-secondary:hover {
  background: #3a3a3a;
  border-color: #3a3a3a;
  transform: translateY(-2px);
}

/* ACTIVE / FOCUS */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}


/* ================= FEATURES ================= */
.features {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;          /* bigger text */
  letter-spacing: 1px;
  color: #eaeaea;
  text-transform: uppercase;
}

/* Icon size */
.features i {
  font-size: 22px;          /* bigger icon */
  opacity: 0.85;
}


/* ================= MATERIALS SECTION ================= */
.materials {
  background: #262626;
  padding: 80px 60px;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT PANEL */
.materials-left {
  background: #5a5a5a;
  padding: 50px;
}

.materials-left p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 40px;
}

/* BUTTON */
.btn-read {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #ffffff;
  color: #000;
  background: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-read:hover {
  background: transparent;
  color: #ffffff;
}

/* RIGHT PANEL */
.materials-right {
  color: #ffffff;
}

.materials-text p {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.materials-text strong {
  font-weight: 600;
}

/* BADGES */
.materials-badges {
  display: flex;
  gap: 60px;
  margin-top: 80px;
  opacity: 0.25;
}

.materials-badges span {
  font-size: 18px;
  letter-spacing: 4px;
  text-align: center;
  line-height: 1.4;
}


/* ================= INFO GRID ================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 60px;
  background: #1f1f1f;
}

/* COMMON BOX */
.info-box {
  position: relative;
  padding: 50px;
  min-height: 320px;
}

/* ================= DELIVERY ================= */
.info-box.delivery {
  border: 1px solid #cfcfcf;
  background: transparent;
}

.info-box.delivery h3 {
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 25px;
  color: #cbb8a0;
}

.info-box.delivery p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbb8a0;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ================= HELP CENTER ================= */
.info-box.help {
  background: #5a554f;
  overflow: hidden;
}

.help-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.info-box.help h3 {
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 25px;
  color: #ffffff;
}

.info-box.help p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 40px;
}

/* IMAGE OVERLAY */
.help-image {
  position: absolute;
  right: 40px;
  bottom: 0;
  height: 85%;
  z-index: 1;
  opacity: 0.95;
}

/* ================= BUTTONS ================= */
.btn-outline-dark {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #cbb8a0;
  color: #1f1f1f;
  background: #cbb8a0;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: transparent;
  color: #cbb8a0;
}

.btn-outline-light {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #ffffff;
  color: #000;
  background: #ffffff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: transparent;
  color: #ffffff;
}

/* ================= FOOTER ================= */
.footer {
  background: #1c1c1c;
  color: #eaeaea;
  padding: 80px 60px 40px;
  border-top: 1px solid #333;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND / NEWSLETTER */
.footer-brand h4 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer form {
  display: flex;
  max-width: 360px;
}

.footer input {
  flex: 1;
  background: transparent;
  border: 1px solid #444;
  padding: 14px;
  color: #fff;
  font-size: 14px;
}

.footer input::placeholder {
  color: #888;
}

.footer button {
  background: var(--accent);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer button:hover {
  background: #ffffff;
}

/* LINKS */
.footer-links h5,
.footer-social h5 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: #b5b5b5;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.social-icons i {
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* Cinasuper link style */
.link {
  color: #ffcc00;           /* Bright accent color */
  font-weight: 600;          /* Bold for visibility */
  text-decoration: none;     /* Remove underline */
  position: relative;
  transition: color 0.3s ease;
}

.link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffcc00; /* Same as text color */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.link:hover {
  color: #ffffff;            /* Change color on hover */
}

.link:hover::after {
  transform: scaleX(1);      /* Underline animation */
  transform-origin: left;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

    .info-grid {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .help-image {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: 30px;
    right: 0;
  }
  .materials {
    padding: 60px 20px;
  }

  .materials-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .materials-badges {
    justify-content: space-between;
    gap: 20px;
  }
   .footer {
    padding: 60px 20px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer form {
    max-width: 100%;
  }

  .footer-bottom {
    margin-top: 40px;
  }
   .nav {
    padding: 16px 20px;
    grid-template-columns: auto 1fr auto;
  }

  .nav-left {
    display: none; /* clean mobile look */
  }

  .logo {
    text-align: center;
  }
    .quantity,.option{
    display: none;
  }

}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 18px;
  }

  .features div {
    font-size: 15px;
  }

  .features i {
    font-size: 20px;
  }
    .btn {
    font-size: 13px;
    padding: 14px;
  }
   .quantity,.option{
    display: none;
  }
}


