* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: white;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* INDEX */

.lock-page {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #000;
}

.lock-bg-blur {
  position: fixed;
  inset: 0;
  background-image: url("your-artwork.png");
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.25);
  transform: scale(1.15);
  z-index: 0;
}

.lock-bg-main {
  position: fixed;
  inset: 0;
  background-image: url("your-artwork.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.55);
  z-index: 1;
}

.lock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.lock-screen {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lock-logo {
  height: 150px;
  margin-bottom: 30px;
  filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 25px rgba(184,134,11,0.35));
}

.spinning-logo {
  animation: spinLogo 12s linear infinite;
}

@keyframes spinLogo {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.small-title,
.drop-label {
  color: #b8860b;
  letter-spacing: 5px;
  font-size: 12px;
  margin-bottom: 10px;
}

.lock-screen h1 {
  font-size: 60px;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.countdown {
  color: #b8860b;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

#password-form {
  display: flex;
  gap: 10px;
}

#password-form input {
  background: rgba(0,0,0,0.65);
  border: 1px solid #333;
  color: white;
  padding: 14px 18px;
  letter-spacing: 3px;
  outline: none;
}

#password-form button {
  background: transparent;
  border: 1px solid #b8860b;
  color: #b8860b;
  padding: 14px 28px;
  letter-spacing: 3px;
  cursor: pointer;
}

#password-form button:hover {
  background: #b8860b;
  color: black;
}

#password-message {
  margin-top: 15px;
  color: #888;
}

/* HEADER */

.shop-header {
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
}

.brand-logo img {
  height: 80px;
}

.shop-header nav a {
  color: #aaa;
  margin-left: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.shop-header nav a:hover,
#cart-count {
  color: #b8860b;
}

/* PRODUCT PAGE */

.drop-banner {
  text-align: center;
  padding: 18px;
  border-bottom: 1px solid #1f1f1f;
  color: #aaa;
  letter-spacing: 5px;
  font-size: 12px;
}

.premium-product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 70px 60px;
  align-items: center;
}

.main-product-image {
  border: 1px solid #1f1f1f;
  background: #030303;
  overflow: hidden;
}

.main-product-image img {
  width: 100%;
  height: 650px;
  object-fit: contain;
  padding: 30px;
  transition: 0.5s ease;
}

.main-product-image:hover img {
  transform: scale(1.04);
}

.premium-info h1 {
  font-size: 58px;
  letter-spacing: 7px;
  margin-bottom: 20px;
}

.price {
  color: #b8860b;
  font-size: 22px;
  margin-bottom: 25px;
}

.desc {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 30px;
}

.colour-label {
  display: block;
  color: #777;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.colour-select {
  width: 100%;
  max-width: 280px;
  padding: 14px;
  background: #050505;
  color: #b8860b;
  border: 1px solid #2a2a2a;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 30px;
}

.detail-list {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 25px 0;
  margin-bottom: 35px;
}

.detail-list div {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.detail-list span {
  color: #b8860b;
  font-size: 24px;
}

.detail-list p {
  color: #aaa;
  line-height: 1.5;
}

.detail-list strong {
  color: white;
  letter-spacing: 2px;
}

.cart-btn {
  padding: 14px 40px;
  border: 1px solid #b8860b;
  background: transparent;
  color: #b8860b;
  letter-spacing: 3px;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover,
.full-btn {
  background: #b8860b;
  color: black;
}

.full-btn {
  width: 100%;
  max-width: 460px;
  padding: 18px;
  font-weight: bold;
}

.secure-line {
  margin-top: 18px;
  color: #aaa;
  letter-spacing: 4px;
  font-size: 12px;
}

.trust-row {
  max-width: 1250px;
  margin: 0 auto 70px;
  padding: 30px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  gap: 30px;
}

.trust-row h3 {
  color: #b8860b;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 8px;
}

.trust-row p {
  color: #aaa;
}

/* CART */

.cart-section,
.checkout-section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 40px;
}

.cart-section h1,
.checkout-section h1 {
  font-size: 52px;
  letter-spacing: 7px;
  margin-bottom: 35px;
}

.cart-item {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.cart-item img {
  width: 90px;
}

.cart-item p {
  color: #b8860b;
}

.cart-item button {
  margin-left: auto;
  border: 1px solid #b8860b;
  background: none;
  color: #b8860b;
  padding: 8px 14px;
  cursor: pointer;
}

.continue-shopping,
.checkout-link {
  display: inline-block;
  margin-top: 30px;
  margin-right: 15px;
  border: 1px solid #b8860b;
  color: #b8860b;
  padding: 14px 30px;
  letter-spacing: 3px;
}

.checkout-link {
  background: #b8860b;
  color: black;
}

/* CHECKOUT */

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.checkout-form,
.order-summary {
  background: #080808;
  border: 1px solid #222;
  padding: 30px;
}

.checkout-form h2,
.order-summary h2 {
  color: #b8860b;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 18px;
}

.checkout-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  background: #050505;
  border: 1px solid #252525;
  color: white;
}

.checkout-item {
  border-bottom: 1px solid #222;
  padding: 14px 0;
  color: #aaa;
}

.checkout-item strong {
  color: white;
}

.total-line {
  color: #b8860b;
  font-size: 22px;
  margin-top: 25px;
  letter-spacing: 2px;
}

.payment-note,
.manual-note {
  margin-top: 18px;
  color: #666;
  font-size: 13px;
  letter-spacing: 2px;
}

/* SUCCESS */

.success-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 25px;
}

.success-section h1 {
  font-size: 52px;
  letter-spacing: 7px;
  margin-bottom: 18px;
}

.success-text {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 30px;
}

/* MOBILE */

@media (max-width: 850px) {
  .shop-header {
    padding: 18px 22px;
  }

  .brand-logo img {
    height: 60px;
  }

  .shop-header nav a {
    margin-left: 15px;
    font-size: 11px;
  }

  .lock-logo {
    height: 105px;
  }

  .lock-screen h1 {
    font-size: 38px;
  }

  #password-form {
    flex-direction: column;
  }

  .premium-product,
  .checkout-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .premium-product {
    padding: 40px 22px;
  }

  .main-product-image img {
    height: 460px;
  }

  .premium-info h1 {
    font-size: 38px;
  }

  .cart-section,
  .checkout-section {
    padding: 50px 22px;
  }

  .success-section h1 {
    font-size: 34px;
  }
}
