/* REMOVE MOBILE TAP / FOCUS HIGHLIGHT */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
button:focus,
button:active {
  outline: none;
  box-shadow: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* HEADER */
header {
  position: relative;
  text-align: center;
  padding: 40px 15px;
  //background: #000;
  background: url("images/vintage-bg.png") center/cover no-repeat;

  border-bottom: 3px solid #d4af37;
  overflow: hidden;
}
.logo {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
}

.logo img {
    width: 50px;
    height: auto;
    margin-bottom: 5px;
    margin-left: 20px;
	BORDER-RADIUS: 52PX;
	    #margin-top: -20px;

}
.tagline { color: #ffffff; }

.cart-btn {
  margin-top: 10px;
  padding: 8px 14px;
  background: #fffffe;
  border: none;
  font-weight: bold;
      border-radius: 30px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  gap:5px;
}

.tab {
  /* padding: 10px 20px; */
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tab.active {
 background: linear-gradient(135deg, #1e3c72, #2a5298);
    transform: scale(1.05);
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 15px;
  padding: 20px;
}

.hidden { display: none; }

.card {
  background: #1b1b1b;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

/* SLIDER */
.slider {
  position: relative;
  user-select: none;
}

.slider img {
  width: 100%;
  border-radius: 6px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: none;
  color: #d4af37;
  font-size: 20px;
  padding: 6px 10px;
  cursor: pointer;
}

.arrow.left { left: 5px; }
.arrow.right { right: 5px; }

.arrow:hover {
  background: #d4af37;
  color: #000;
}

/* CARD ACTIONS */
.card select,
.card button {
  margin-top: 6px;
  padding: 6px;
}

.card button {
  border: none;
  font-weight: bold;
}

/* CART */
.cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  padding: 20px;
}

.cart-item {
  display: none;
  justify-content: space-between;
  margin-bottom: 8px;
}

.remove {
  background: red;
  border: none;
  color: #fff;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 15px;
  background: #000;
  border-top: 3px solid #d4af37;
}
/* ===== CATCHY CART MODAL ===== */
.cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-box {
  background: linear-gradient(180deg, #1a1a1a, #0c0c0c);
  width: 90%;
  max-width: 420px;
  border-radius: 14px;
  padding: 22px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 30px rgba(212,175,55,0.25);
  animation: popIn 0.3s ease;
    position: relative; 
}

/* Animation */
@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cart-box h2 {
  text-align: center;
  margin-bottom: 4px;
  position: relative; /
}

.cart-subtitle {
  text-align: center;
  font-size: 13px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* Cart Items */
.cart-items {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.cart-item {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cart-item span {
  max-width: 75%;
}

.remove {
  background: transparent;
  border: 1px solid crimson;
  color: crimson;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
}

/* Form */
.cart-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  border: none;
  background: #111;
  color: #fff;
}

/* Buttons */
.checkout {
  width: 100%;
  background: linear-gradient(90deg, #25d366, #1ebe57);
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

.close {
  width: 100%;
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 10px;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
}

/* Mobile scroll fix */
.cart-items::-webkit-scrollbar {
  width: 4px;
}
.cart-items::-webkit-scrollbar-thumb {
  background: #d4af37;
}
.required {
  color: crimson;
  font-weight: bold;
}
/* ===== IMAGE ZOOM MODAL ===== */
.image-zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.image-zoom-modal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

/* Close button */
.zoom-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
  font-weight: bold;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .image-zoom-modal img {
    max-width: 95%;
    max-height: 80%;
  }
   .logo {
    top: 8px;
    left: 8px;
  }
}
/* CLOSE (X) BUTTON */
.cart-close {
   position: absolute;
  top: 12px;
  right: 12px;          /* ✅ RIGHT SIDE */
  background: transparent;
  border: none;
  font-size: 22px;
  font-weight: bold;
  color: #d4af37;
  cursor: pointer;
  line-height: 1;
}

.cart-close:hover {
  color: crimson;
  transform: scale(1.15);
}
.free-delivery {
  margin-top: 10px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff9800, #ffcc00);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  animation: pulse 1.5s infinite;
}

.free-delivery span {
  color: #d80000;
}
.price-badge {
  #margin-left: 6px;
  #padding: 2px 6px;
  font-size: 10px;
  font-weight: 800;
  background: #e60000;
  color: #fff;
  border-radius: 12px;
  
   display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  #padding: 3px 8px;
  border-radius: 12px;
  margin-top: 6px;
  font-weight: bold;

  /* STRIKE EFFECT */
  text-decoration: line-through;
  opacity: 0.7;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cart-icon {
  font-size: 22px;
}
.jersey-strip {
  text-align: center;
  margin: 15px 0;
  font-size: 18px;
  letter-spacing: 5px;
  opacity: 0.8;
}


.footer {
  background: #0e0e0e;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  margin-top: 40px;
}

.footer h3 {
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer p {
  margin: 4px 0;
  font-size: 14px;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

/* SOCIAL BUTTONS */
.footer-social {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* COLORS */
.social-btn.whatsapp {
  background: #25D366;
  color: #000;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.footer-note {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.8;
}

/* MODAL BACKGROUND */
.info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* MODAL BOX */
.info-box {
  background: linear-gradient(180deg, #111, #1b1b1b);
  color: #fff;
  width: 90%;
  max-width: 380px;
  padding: 22px 18px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.info-box h2 {
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* FREE DELIVERY */
.info-highlight {
  background: linear-gradient(90deg, #ff9800, #ffcc00);
  color: #000;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.info-highlight span {
  color: #d60000;
}

/* POINTS */
.info-points {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.info-points li {
  margin: 6px 0;
  font-size: 14px;
}

/* NOTE */
.info-note {
  font-size: 13px;
  opacity: 0.9;
  margin: 12px 0;
}

/* BUTTON */
.info-btn {
  background: #25D366;
  color: #000;
  border: none;
  padding: 12px 20px;
  font-weight: 800;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
}

/* CLOSE BUTTON */
.info-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.info-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.info-logo img {
  height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  BORDER-RADIUS: 52PX;
}
.size-btn {
  background: #111;
  color: #ffcc00;
  border: 1px solid #ffcc00;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  margin: 8px;
}

/* MODAL BACKGROUND */
.size-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* MODAL BOX */
.size-box {
  background: #fff;
  max-width: 90%;
  max-height: 90%;
  padding: 10px;
  border-radius: 12px;
  position: relative;
  overflow: auto;
}

.size-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* CLOSE */
.size-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.size-title {
  text-align: center;
  margin: 5px 0 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffcc00;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff9800, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.size-note {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 204, 0, 0.15);
  color: #000;
}

.size-note strong {
  color: #d60000;
}

.size-note span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #333;
}
/* ===== FIXED CART BUTTON ===== */
.fixed-cart {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;

  background: #ffffff;
  color: #000;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  border: none;

  box-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / Tap Effect */
.fixed-cart:hover {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(212, 175, 55, 1);
}

/* Mobile friendly */
@media (max-width: 600px) {
  .fixed-cart {
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 13px;
  }
   .free-delivery {
    top: 58px;
    right: 10px;
    font-size: 11px;
    padding: 5px 12px;
  }
}
.search-bar {
  margin: 15px auto;
  text-align: center;
}

.search-bar input {
  width: 90%;
  max-width: 450px;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.search-bar input:focus {
  border-color: #000;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.pagination button {
  padding: 8px 14px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}

.pagination button.active {
  background: #000;
  color: #fff;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.badge.offer {
  display: inline-block;
  background: #ff3b3b;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
  font-weight: bold;
}
.info-offer {
  background: linear-gradient(90deg, #ff9800, #ff5722);
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 8px;
  margin: 12px 0;
  text-align: center;
  animation: pulse 1.5s infinite;
}

.info-offer span {
  font-size: 1.1rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.buy-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #ff9800, #ffcc00);
  color: #000;
  font-weight: 800;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
  transition: transform 0.2s ease;
}

.buy-btn:hover {
  transform: scale(1.08);
}
.category-note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin: 10px 0 5px 0;
  padding: 6px;
}