* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f7f7f7;
    color: #111;
}

/* =========================
   NAVBAR (WHITE)
========================= */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
}

.logo img {
    height: 45px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 6px;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #666;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    background: #ffffff;
    list-style: none;
    min-width: 180px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 14px;
    color: #111;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: #111;
    height: 3px;
    width: 26px;
    margin: 4px 0;
    border-radius: 20px;
}

/* =========================
   HERO SECTION (HOME)
========================= */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("../images/hero.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.hero-content {
    color: #fff;
    animation: fadeSlide 1.4s ease forwards;
    opacity: 0;
    max-width: 520px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    margin-top: 12px;
    color: #eee;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   FEATURED BRANDS (HOME)
========================= */
.brands {
    padding: 80px 40px;
    background: #fafafa;
    text-align: center;
}

.brands h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: auto;
}

.brand-card {
    background: #fff;
    padding: 38px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.brand-card img {
    max-width: 100%;
    height: 62px;
    object-fit: contain;
}

.brand-card:hover {
    transform: translateY(-8px);
}

/* =========================
   SHOP PAGE (NIKE)
========================= */
.shop-page {
    padding: 60px 40px;
}

.shop-page h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 35px;
}

/* PRODUCT GRID */
.product-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #444;
    margin: 6px 0;
}

.price {
    font-weight: 800;
    color: #111;
    margin-top: 8px;
    font-size: 15px;
}

/* 4 IMAGE PLACEHOLDERS */
.product-images {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f1f1;
    border: 1px solid #eee;
}

/* COLOR OPTIONS (if you add later) */
.color-options {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e6e6e6;
    background: #fafafa;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.color-pill:hover {
    background: #f0f0f0;
}

/* ADD TO CART BUTTON (if you add in HTML) */
.add-to-cart {
    width: 100%;
    margin-top: 16px;
    padding: 12px 14px;
    border: none;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.add-to-cart:hover {
    background: #333;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 900px) {
    .navbar {
        padding: 14px 18px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        display: none;
        border-bottom: 1px solid #eaeaea;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        min-width: auto;
        border: none;
        box-shadow: none;
        margin-top: 8px;
    }

    .hero {
        padding: 22px;
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .shop-page {
        padding: 40px 18px;
    }
}
/* SIZE PICKER */
.pickers {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pickers label {
  font-size: 12px;
  font-weight: 800;
  color: #333;
}

.size-select {
  width: 100%;
  max-width: 180px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  font-weight: 700;
  outline: none;
}

.hint {
  margin-top: 10px;
  color: #666;
  font-size: 12px;
}
/* =========================
   LIMITED EDITIONS LOOK
========================= */
.limited-hero {
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 50%),
              radial-gradient(circle at 80% 0%, rgba(255,255,255,0.06), transparent 45%),
              linear-gradient(120deg, #0b0b0f, #111118);
  color: #fff;
  padding: 70px 18px 40px;
}

.limited-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.limited-chip {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.limited-hero h1 {
  margin-top: 14px;
  font-size: 54px;
  line-height: 1.05;
}

.limited-hero p {
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
}

.limited-controls {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.limited-search {
  flex: 1;
  min-width: 240px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.limited-search::placeholder {
  color: rgba(255,255,255,0.55);
}

.limited-filters {
  display: flex;
  gap: 10px;
}

.filter-btn {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.limited-page {
  background: #0f0f14;
}

.limited-page .product-grid {
  margin-top: 18px;
}

.limited-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.limited-card h2 {
  color: #fff;
}

.limited-card p {
  color: rgba(255,255,255,0.78);
}

.limited-card .price {
  color: #fff;
}

.limited-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 98, 0, 0.18);
  border: 1px solid rgba(255, 98, 0, 0.32);
}

.limited-card .product-images {
  grid-template-columns: 1fr; /* one big image for limited drop */
}

.limited-card .product-images img {
  height: 220px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.limited-card .product-images img:hover {
  transform: scale(1.03);
}

.limited-card .size-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.limited-card .size-select option {
  color: #111;
}

.limited-card .hint {
  color: rgba(255,255,255,0.62);
}

/* Mobile hero text sizing */
@media (max-width: 900px) {
  .limited-hero h1 { font-size: 40px; }
}
.dropdown-menu {
  top: 100%;        /* was 45px */
  left: 0;
  margin-top: 0;    /* important */
}
.dropdown {
  padding-bottom: 10px; /* creates invisible hover area */
}
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu.open {
  display: block;
}
/* =========================
   ITEM REQUEST PAGE
========================= */
.request-hero {
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.06), transparent 40%),
              linear-gradient(120deg, #ffffff, #f5f5f5);
  padding: 70px 18px 40px;
  border-bottom: 1px solid #eee;
}

.request-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.request-chip {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.request-hero h1 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.05;
}

.request-hero p {
  margin-top: 10px;
  color: #444;
  max-width: 620px;
}

.request-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.request-card {
  padding: 26px;
  border-radius: 18px;
}

.request-sub {
  margin-top: 8px;
  color: #666;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.request-grid .full {
  grid-column: 1 / -1;
}

.request-card label {
  display: block;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 8px;
  color: #222;
}

.request-card input,
.request-card select,
.request-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  outline: none;
  font-weight: 650;
}

.request-card textarea {
  resize: vertical;
}

.request-colors {
  margin-top: 16px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.color-pill {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  cursor: pointer;
  font-weight: 750;
  color: #111;
}

.color-pill input {
  width: 16px;
  height: 16px;
}

.other-color {
  margin-top: 12px;
}

.request-btn {
  margin-top: 16px;
}

.active-link {
  font-weight: 900;
}

/* Mobile */
@media (max-width: 900px) {
  .request-hero h1 { font-size: 38px; }
  .request-grid { grid-template-columns: 1fr; }
  .request-grid .full { grid-column: auto; }
}
/* =========================
   PAYMENTS PAGE
========================= */
.payments-hero {
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.06), transparent 40%),
              linear-gradient(120deg, #ffffff, #f5f5f5);
  padding: 70px 18px 40px;
  border-bottom: 1px solid #eee;
}

.payments-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.payments-chip {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.payments-hero h1 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.05;
}

.payments-hero p {
  margin-top: 10px;
  color: #444;
  max-width: 720px;
}

.payments-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.payments-card {
  padding: 26px;
  border-radius: 18px;
}

.payments-sub {
  margin-top: 8px;
  color: #666;
}

.payments-details {
  margin-top: 14px;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  background: #fafafa;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.pay-row:last-child {
  border-bottom: none;
}

.pay-label {
  font-weight: 900;
  font-size: 12px;
  color: #222;
}

.pay-value {
  font-weight: 800;
  color: #111;
}

.payments-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.copy-btn {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.copy-btn:hover {
  background: #f3f3f3;
}

.payments-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 900px) {
  .payments-hero h1 { font-size: 38px; }
  .payments-wrap { grid-template-columns: 1fr; }
}
/* =========================
   ABOUT PAGE
========================= */
.about-hero {
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.06), transparent 40%),
              linear-gradient(120deg, #ffffff, #f4f4f4);
  padding: 70px 18px 40px;
  border-bottom: 1px solid #eee;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-chip {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.6px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.about-hero h1 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.05;
}

.about-hero p {
  margin-top: 10px;
  color: #444;
  max-width: 700px;
}

.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.about-card {
  padding: 26px;
  border-radius: 18px;
}

.about-card p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

.about-list {
  margin-top: 12px;
  padding-left: 18px;
  color: #555;
}

.about-list li {
  margin-bottom: 8px;
  font-weight: 600;
}

.about-steps {
  margin-top: 12px;
  padding-left: 18px;
  color: #555;
}

.about-steps li {
  margin-bottom: 10px;
  font-weight: 600;
}

.about-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.about-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
}

.about-box h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.about-box p {
  font-size: 14px;
  color: #555;
}

/* Mobile */
@media (max-width: 900px) {
  .about-hero h1 { font-size: 38px; }
}
/* =========================
   CONTACT PAGE
========================= */
.contact-hero {
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.06), transparent 40%),
              linear-gradient(120deg, #ffffff, #f5f5f5);
  padding: 70px 18px 40px;
  border-bottom: 1px solid #eee;
}

.contact-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-chip {
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.6px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.contact-hero h1 {
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.05;
}

.contact-hero p {
  margin-top: 10px;
  color: #444;
  max-width: 720px;
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 26px;
  border-radius: 18px;
}

.contact-info {
  margin-top: 14px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
  overflow: hidden;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  font-weight: 900;
  font-size: 12px;
  color: #222;
}

.contact-value {
  font-weight: 800;
  color: #111;
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 12px;
  color: #555;
  font-size: 14px;
}

.contact-sub {
  margin-top: 8px;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.contact-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-hero h1 { font-size: 38px; }
  .contact-wrap { grid-template-columns: 1fr; }
}


