@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

.font-special {
    font-family: "Special Elite", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


:root {
      --main-color: #131619;
      --accent-color: #9147ff;
      --accent-color-hover: #7d32ec;
      --bg-color: #0f0f11;
      --text-color: #e0e0e0;
      --secondary-color: #2e3239;
      --highlight-color: #00b8a9;
      --gradient-bg: linear-gradient(135deg, #242830 0%, #151619 100%);
      --card-bg: #1a1d18;
      --heading-font: 'Rajdhani', sans-serif;
      --body-font: 'Roboto', sans-serif;
      --glow: 0 0 10px rgba(145, 71, 255, 0.5);
      --radius: 8px;
    }


    * {
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    body {
      font-family: var(--body-font);
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: var(--text-color);
      line-height: 1.6;
      background-image: var(--gradient-bg);
      background-attachment: fixed;
    }

    header {
      background: rgba(19, 22, 25, 0.8);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    header img {
      height: 60px;
      max-width: 100%;
      filter: drop-shadow(0 0 8px rgba(145, 71, 255, 0.6));
    }

    header h1 {
      font-family: var(--heading-font);
      font-size: 2rem;
      margin: 0;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-shadow: 0 0 10px rgba(145, 71, 255, 0.7);
    }

    .content {
      max-width: 1100px;
      margin: auto;
      padding: 3rem 2rem;
    }

    section {
      margin-bottom: 4rem;
      background: var(--card-bg);
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    }

    h2 {
      font-family: var(--heading-font);
      color: white;
      margin-top: 0;
      font-size: 2.2rem;
      position: relative;
      display: inline-block;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--highlight-color);
    }

    p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-color);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .carousel-container {
      overflow-x: auto;
      display: flex;
      gap: 1.5rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 1rem 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: var(--accent-color) var(--secondary-color);
    }

    .carousel-container::-webkit-scrollbar {
      height: 6px;
    }

    .carousel-container::-webkit-scrollbar-track {
      background: var(--secondary-color);
      border-radius: 10px;
    }

    .carousel-container::-webkit-scrollbar-thumb {
      background-color: var(--accent-color);
      border-radius: 10px;
    }

    .product-card {
      flex: 0 0 260px;
      scroll-snap-align: start;
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(30, 35, 40, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(145, 71, 255, 0.3);
    }

    .product-card img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .product-info {
      padding: 1rem;
      text-align: center;
    }

    .product-name {
      font-family: var(--heading-font);
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: white;
    }

    .product-price {
      color: var(--highlight-color);
      font-weight: 500;
      margin: 0;
    }

    .product-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--accent-color);
      color: white;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: bold;
      text-transform: uppercase;
    }

    /* Glowing button */
    .btn {
      display: inline-block;
      background: var(--accent-color);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: var(--radius);
      text-decoration: none;
      font-weight: 500;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 15px rgba(145, 71, 255, 0.4);
      font-family: var(--heading-font);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 1rem;
    }

    .btn:hover {
      background: var(--accent-color-hover);
      box-shadow: 0 0 20px rgba(145, 71, 255, 0.7);
      transform: translateY(-2px);
    }

    .map-container {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      margin-bottom: 1.5rem;
    }

    .map {
      width: 100%;
      height: 400px;
      border: none;
      filter: grayscale(80%) invert(90%) hue-rotate(180deg);
    }

    .location-info {
      background: var(--secondary-color);
      padding: 1.5rem;
      border-radius: var(--radius);
      margin-top: 1.5rem;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex: 1;
      min-width: 200px;
    }

    .info-item i {
      font-size: 1.2rem;
      color: var(--highlight-color);
    }

    .info-text {
      margin: 0;
    }

    .info-text strong {
      display: block;
      color: white;
      font-family: var(--heading-font);
      margin-bottom: 3px;
    }

    .age-banner {
      background: var(--secondary-color);
      padding: 1rem;
      text-align: center;
      position: relative;
      margin-bottom: 3rem;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .age-banner p {
      margin: 0;
      font-weight: 400;
    }

    .smoke {
      position: absolute;
      top: 0;
      right: 0;
      width: 250px;
      height: 100%;
      background: radial-gradient(
        ellipse at center,
        rgba(145, 71, 255, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
      );
      opacity: 0.6;
      filter: blur(30px);
      pointer-events: none;
      animation: smoke 15s infinite alternate;
    }

    @keyframes smoke {
      0% {
        transform: translateY(10%) translateX(5%);
        opacity: 0.3;
      }
      50% {
        transform: translateY(-10%) translateX(-5%);
        opacity: 0.6;
      }
      100% {
        transform: translateY(8%) translateX(3%);
        opacity: 0.4;
      }
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.5rem;
      background: rgba(46, 50, 57, 0.5);
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .feature i {
      font-size: 2.5rem;
      color: var(--highlight-color);
      margin-bottom: 1rem;
    }

    .feature h3 {
      font-family: var(--heading-font);
      color: white;
      margin: 0 0 0.5rem;
    }

    footer {
      background: rgba(19, 22, 25, 0.95);
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.95rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    .footer-content {
      position: relative;
      z-index: 2;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--secondary-color);
      color: white;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--accent-color);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .footer-smoke {
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      height: 100px;
      background: linear-gradient(
        to top,
        rgba(145, 71, 255, 0.1) 0%,
        rgba(0, 0, 0, 0) 100%
      );
      filter: blur(20px);
    }

    .age-verify {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .age-verify-content {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      max-width: 500px;
      width: 90%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .age-verify h2 {
      margin-bottom: 1rem;
    }

    .age-verify .buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 1.5rem;
    }

    .age-verify .btn-secondary {
      background: var(--secondary-color);
    }

    @media (max-width: 768px) {
      header {
        padding: 1rem;
      }

      header h1 {
        font-size: 1.5rem;
      }

      .content {
        padding: 2rem 1rem;
      }

      section {
        padding: 1.5rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      .carousel-container {
        gap: 1rem;
      }

      .product-card {
        flex: 0 0 220px;
      }
    }

header .header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;  
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

header .header-col { display: flex; align-items: center; min-width: 0; }
header .header-col.left  { justify-content: flex-start; }
header .header-col.right { justify-content: flex-end; }

header .header-col.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  min-width: 0;
}

header .header-text {
  display: block;
  line-height: 1.1;
  font-size: clamp(1.6rem, 2.6vw + 1rem, 3.2rem);
}
header .subheader-text {
  display: block;
  letter-spacing: 0.05em;
  font-size: clamp(0.95rem, 0.7vw + 0.65rem, 1.1rem);
}
header .header-text,
header .subheader-text { overflow-wrap: anywhere; }
header .header-col.left .font-special { font-size: 0.95rem; line-height: 1.2; }

header .shop-button {
  --accent: var(--highlight-color, #00b8a9);
  --accent-ink: var(--main-color, #131619);
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .05s ease;
}
header .shop-button:hover,
header .shop-button:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  outline: none;
}
header .shop-button:active { transform: translateY(1px); }

@media (max-width: 768px) {
  header .header-container {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
  header .header-col.center {
    position: static;
    transform: none;
    order: -1;             
    flex: 0 0 100%;
    margin-bottom: 0.25rem;
    text-align: center;
  }
  header .header-col.left  { flex: 1 1 auto; }
  header .header-col.right { flex: 0 0 auto; }
  header .header-col.left .font-special { font-size: 0.9rem; }
  header .shop-button { padding: 0.6rem 0.95rem; font-size: 1rem; }
}
