/* ============================================================
   AREA 3020 — COMPLETE STYLESHEET
   ============================================================ */

/* -------------------------------------------------------
   RESET & BASE
------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #1c1c1c;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* -------------------------------------------------------
   NAVBAR
------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1c1c1c;
  padding: 14px 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
}

.nav-links a {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* SEARCH */
.search-wrapper { position: relative; }

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 14px;
  gap: 8px;
  transition: all 0.25s;
}

.search-box:focus-within {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.search-box i { color: #aaa; font-size: 14px; }

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 13px;
  width: 180px;
}

.search-box input::placeholder { color: #888; }

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  display: none;
  z-index: 2000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  min-width: 240px;
}

.search-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.search-item:last-child { border-bottom: none; }
.search-item:hover { background: rgba(255,255,255,0.08); }

.search-item h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.search-item p {
  color: #888;
  font-size: 11px;
  margin-top: 2px;
}

/* CART ICON */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 18px;
  transition: all 0.25s;
}

.cart-icon:hover {
  background: white;
  color: #1c1c1c;
  transform: translateY(-2px);
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e53935;
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AUTH */
.auth-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-logged-out {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-logged-in {
  display: none;
  align-items: center;
  gap: 10px;
}

.login-btn {
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
}

.login-btn:hover {
  color: white;
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.signup-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  background: white;
  color: #1c1c1c;
  transition: all 0.25s;
}

.signup-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.user-pill {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 12px;
  gap: 8px;
}

.user-pill .username {
  font-weight: 600;
  color: white;
  font-size: 13px;
}

.user-pill .user-number {
  font-size: 11px;
  opacity: 0.7;
  color: white;
}

.logout-btn {
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  transition: all 0.25s;
}

.logout-btn:hover {
  background: white;
  color: #1c1c1c;
  transform: translateY(-2px);
}

/* -------------------------------------------------------
   HAMBURGER (injected by JS)
------------------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: background 0.3s;
}

.hamburger:hover { background: rgba(255,255,255,0.18); }

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s;
}

/* -------------------------------------------------------
   HERO TEXT SECTION
------------------------------------------------------- */
.hero-text {
  background: #1c1c1c;
  padding: 80px 40px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.hero-text-container {
  max-width: 1000px;
  margin: 0 auto;
}

.typewriter-text {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 2px;
  min-height: 120px;
  transition: opacity 1s ease-out;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #ffffff,
               0 0 20px #ffffff,
               0 0 30px #ffffff,
               0 0 40px #ffffff,
               0 0 50px #ffffff;
  animation: alienGlow 2s ease-in-out infinite alternate;
}

@keyframes alienGlow {
  0% {
    text-shadow: 0 0 10px #ffffff,
                 0 0 20px #ffffff,
                 0 0 30px #ffffff;
  }
  50% {
    text-shadow: 0 0 10px #ffffff,
                 0 0 20px #ffffff,
                 0 0 30px #ffffff,
                 0 0 40px #ffffff,
                 0 0 50px #ffffff,
                 0 0 60px #ffffff;
  }
  100% {
    text-shadow: 0 0 10px #ffffff,
                 0 0 20px #ffffff,
                 0 0 30px #ffffff;
  }
}

.typewriter-text.dissolve {
  opacity: 0;
}

/* -------------------------------------------------------
   HOME PAGE
------------------------------------------------------- */
.cta-split {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('../images/background.jpg') center center / cover no-repeat;
  position: relative;
}

.cta-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.cta-big-logo {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin: 0 auto;
  background: rgba(28, 28, 28, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
}

.cta-right h2 {
  font-size: 64px;
  font-weight: 700;
  color: white;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-right p {
  color: #aaa;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  background: #1c1c1c;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 36px;
  border-radius: 12px;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid white;
}

.cta-btn:hover {
  background: white;
  color: #1c1c1c;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* FEATURED SECTION */
.featured {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.featured h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 12px;
}

.tab {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  color: #888;
  transition: all 0.25s;
}

.tab.active, .tab:hover {
  background: #1c1c1c;
  color: white;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* WHITE SECTION */
.white-section {
  background: white;
  padding: 80px 40px;
}

.white-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.white-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.white-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.white-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.white-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.white-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.white-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

.white-card button {
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s;
}

.white-card button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* VIDEO REEL SECTION */
.video-reel {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.video-reel h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.video-grid {
  width: 100%;
}

.video-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.video-card video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #1c1c1c;
}

.video-info {
  padding: 16px;
}

.video-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1c1c1c;
}

.video-info p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* -------------------------------------------------------
   SHOP PAGE
------------------------------------------------------- */
.shop-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

.shop-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

.shop-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #1c1c1c;
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  background: #f5f5f5;
}

.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.3;
}

.product-card .price, .product-card p.price {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
}

.product-card select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  background: #f9f9f9;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.product-card select:focus { border-color: #1c1c1c; }

.product-card button {
  width: 100%;
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  margin-top: auto;
}

.product-card button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* -------------------------------------------------------
   CHECKOUT PAGE
------------------------------------------------------- */
.checkout-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cart-section, .form-section {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.cart-section h2, .form-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}

.cart-items { display: flex; flex-direction: column; gap: 16px; }

.item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 12px;
  align-items: center;
}

.cart-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.item-info { flex: 1; }
.item-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.item-info p { font-size: 12px; color: #666; margin-bottom: 2px; }

.remove-btn {
  background: #fee2e2;
  color: #e53935;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  flex-shrink: 0;
}

.remove-btn:hover { background: #e53935; color: white; }

.summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.summary p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.summary h3 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.empty-cart {
  text-align: center;
  padding: 40px 0;
  color: #aaa;
}

.form-section input,
.form-section select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.form-section input:focus,
.form-section select:focus {
  border-color: #1c1c1c;
  background: white;
}

.form-section button {
  width: 100%;
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: all 0.25s;
}

.form-section button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.success-order {
  margin-top: 20px;
  padding: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  text-align: center;
}

.success-order h3 {
  color: #16a34a;
  font-size: 18px;
  margin-bottom: 10px;
}

.success-order p {
  color: #555;
  font-size: 13px;
  margin-bottom: 4px;
}

/* -------------------------------------------------------
   TRACK ORDER PAGE
------------------------------------------------------- */
.track-layout {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  min-height: 70vh;
}

.orders-panel {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.panel-title { margin-bottom: 20px; }
.panel-title h2 { font-size: 22px; font-weight: 700; }
.panel-title p { color: #888; font-size: 13px; margin-top: 4px; }

.orders-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 4px;
}

.orders-scroll::-webkit-scrollbar { width: 4px; }
.orders-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 4px; }
.orders-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.order-card {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.order-card:hover {
  border-color: #1c1c1c;
  background: white;
}

.order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.order-top h3 { font-size: 13px; font-weight: 700; }

.order-status {
  background: #fef9c3;
  color: #854d0e;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.products-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.product {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-details h3 { font-size: 12px; font-weight: 600; }
.product-details p { font-size: 11px; color: #888; }

.order-total {
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
  font-size: 12px;
  color: #555;
}

.order-total h2 {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
  margin-top: 4px;
}

.cancel-btn {
  width: 100%;
  margin-top: 12px;
  background: #fee2e2;
  color: #e53935;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}

.cancel-btn:hover { background: #e53935; color: white; }

.empty-orders {
  text-align: center;
  padding: 60px 0;
  color: #aaa;
}

/* TRACKING PANEL */
.tracking-panel {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tracking-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tracking-top h3 { font-size: 22px; font-weight: 700; }
.tracking-top p { color: #888; font-size: 13px; margin-top: 4px; }

.badge {
  background: #1c1c1c;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.delivery-date {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 20px 24px;
}

.delivery-date small {
  display: block;
  color: #888;
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.delivery-date h2 { font-size: 24px; font-weight: 700; }

/* STATUS PROGRESS */
.status-progress { display: flex; flex-direction: column; gap: 4px; }

.status-header { margin-bottom: 16px; }
.status-header h3 { font-size: 16px; font-weight: 700; }
.status-header p { color: #888; font-size: 13px; }

.status-steps { display: flex; flex-direction: column; gap: 12px; }

.status-step {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  background: #f9f9f9;
  border: 2px solid transparent;
  transition: all 0.3s;
  opacity: 0.5;
}

.status-step.active {
  border-color: #1c1c1c;
  background: white;
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.status-step.completed {
  opacity: 1;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #666;
}

.status-step.active .step-icon {
  background: #1c1c1c;
  color: white;
}

.status-step.completed .step-icon {
  background: #16a34a;
  color: white;
}

.step-info h4 { font-size: 14px; font-weight: 700; }
.step-info p { font-size: 12px; color: #888; }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  opacity: 0.4;
  position: relative;
}

.timeline-item.done { opacity: 1; }

.timeline-item .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
}

.timeline-item.done .circle { background: #1c1c1c; }

.timeline-item:not(:last-child) .circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 2px;
  height: 36px;
  background: #e0e0e0;
}

.timeline-item.done:not(:last-child) .circle::after { background: #1c1c1c; }

.timeline-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.timeline-item p { font-size: 12px; color: #888; }

/* -------------------------------------------------------
   CONTACT PAGE
------------------------------------------------------- */
.contact-hero {
  background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
  padding: 100px 40px 80px;
  text-align: center;
}

.contact-hero small {
  display: block;
  color: #888;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: white;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.contact-hero p {
  color: #aaa;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: #1c1c1c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1c1c1c;
  background: white;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
  margin-bottom: 18px;
}

.contact-form button {
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.contact-form button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

#message {
  margin-top: 14px;
  color: #16a34a;
  font-size: 13px;
  font-weight: 600;
}

/* -------------------------------------------------------
   POPUPS (Login / Signup / Search Product)
------------------------------------------------------- */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.popup-content {
  background: #1c1c1c;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-content .close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.popup-content .close:hover { color: white; }

.popup-content .logo {
  text-align: center;
  margin-bottom: 20px;
}

.popup-content .logo img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin: 0 auto;
  object-fit: cover;
}

.popup-content h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
  background: rgba(255,255,255,0.08);
}

.input-group:focus-within {
  border-color: white;
  background: rgba(255,255,255,0.12);
}

.input-group i { color: #aaa; font-size: 15px; width: 16px; text-align: center; }

.input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: none;
  color: white;
}

.submit-btn {
  width: 100%;
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 8px;
  transition: all 0.25s;
}

.submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.message {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  min-height: 20px;
}

/* SEARCH PRODUCT POPUP */
.search-product-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.search-popup-box {
  background: white;
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popIn 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.close-popup {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.close-popup:hover { color: #1c1c1c; }

.search-popup-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f5f5;
}

.search-popup-box h2 { font-size: 20px; font-weight: 700; }
.search-popup-box p { color: #888; font-size: 13px; }
.search-popup-box h3 { font-size: 22px; font-weight: 700; color: #1c1c1c; }

.search-popup-box label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
}

.search-popup-box select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  background: #fafafa;
  outline: none;
}

.search-popup-box select:focus { border-color: #1c1c1c; }

#searchPopupBtn {
  width: 100%;
  background: #1c1c1c;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  margin-top: 4px;
}

#searchPopupBtn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.footer {
  background: #1c1c1c;
  color: white;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-links h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-social h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.25s;
}

.social-icons a:hover {
  background: white;
  color: #1c1c1c;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p { color: #666; font-size: 13px; }

/* -------------------------------------------------------
   SCROLL TO TOP BUTTON
------------------------------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1c1c1c;
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.scroll-to-top:hover {
  background: #333;
  transform: translateY(-3px);
}

/* -------------------------------------------------------
   UTILITY
------------------------------------------------------- */
#confirmation { margin-top: 16px; }