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

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  font-size: 14px;
  letter-spacing: 2px;
}

/* CART ICON */
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 18px;
}

.cart-icon span {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* HAMBURGER */
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: red;
  margin: 5px 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: right 0.3s ease;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.nav.open {
  right: 0;
}

/* CART */
.cart-drawer {
  position: fixed;
  top: 60px;
  right: -340px;
  width: 320px;
  height: calc(100vh - 60px);
  background: #111;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 999;
}

.cart-drawer.open {
  right: 0;
}

.cart-total {
  margin: 15px 0;
  font-weight: bold;
}

/* STORE */
.store {
  padding: 120px 20px 60px;
  text-align: center;
}

.store h1 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

.product-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.product-card img {
  width: 100%;
  max-width: 380px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-card p {
  margin: 10px 0;
  color: #aaa;
}

/* SIZES */
.sizes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}

.sizes button {
  background: transparent;
  border: 1px solid #444;
  color: #aaa;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
}

.sizes button.active {
  border-color: red;
  color: #fff;
}

/* ADD TO CART */
.add-btn {
  border: 1px solid red;
  background: transparent;
  color: #fff;
  padding: 10px 30px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
}

/* CHECKOUT */
.checkout-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: red;
  border: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
}

/* SOCIAL */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
}

.social-bar a {
  color: #888;
  font-size: 20px;
}

.social-bar a:hover {
  color: #fff;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}
