:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.1450 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.1450 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.1450 0 0);
  --primary: oklch(0.2050 0 0);
  --primary-foreground: oklch(0.9850 0 0);
  --secondary: oklch(0.9700 0 0);
  --secondary-foreground: oklch(0.2050 0 0);
  --muted: oklch(0.9700 0 0);
  --muted-foreground: oklch(0.5560 0 0);
  --accent: oklch(0.9700 0 0);
  --accent-foreground: oklch(0.2050 0 0);
  --destructive: oklch(0.5770 0.2450 27.3250);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.9220 0 0);
  --input: oklch(0.9220 0 0);
  --ring: oklch(0.7080 0 0);
  --chart-1: oklch(0.8100 0.1000 252);
  --chart-2: oklch(0.6200 0.1900 260);
  --chart-3: oklch(0.5500 0.2200 263);
  --chart-4: oklch(0.4900 0.2200 264);
  --chart-5: oklch(0.4200 0.1800 266);
  --sidebar: oklch(0.9850 0 0);
  --sidebar-foreground: oklch(0.1450 0 0);
  --sidebar-primary: oklch(0.2050 0 0);
  --sidebar-primary-foreground: oklch(0.9850 0 0);
  --sidebar-accent: oklch(0.9700 0 0);
  --sidebar-accent-foreground: oklch(0.2050 0 0);
  --sidebar-border: oklch(0.9220 0 0);
  --sidebar-ring: oklch(0.7080 0 0);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-serif: "Abhaya Libre", ui-serif, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --radius: 0.625rem;
  --shadow-xs: 0 1px 3px 0px hsl(0 0% 0% / 0.05);
  --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
}

.dark {
  --background: oklch(0.1450 0 0);
  --foreground: oklch(0.9850 0 0);
  --card: oklch(0.2050 0 0);
  --card-foreground: oklch(0.9850 0 0);
  --popover: oklch(0.2690 0 0);
  --popover-foreground: oklch(0.9850 0 0);
  --primary: oklch(0.9220 0 0);
  --primary-foreground: oklch(0.2050 0 0);
  --secondary: oklch(0.2690 0 0);
  --secondary-foreground: oklch(0.9850 0 0);
  --muted: oklch(0.2690 0 0);
  --muted-foreground: oklch(0.7080 0 0);
  --accent: oklch(0.3710 0 0);
  --accent-foreground: oklch(0.9850 0 0);
  --destructive: oklch(0.7040 0.1910 22.2160);
  --destructive-foreground: oklch(0.9850 0 0);
  --border: oklch(0.2750 0 0);
  --input: oklch(0.3250 0 0);
  --ring: oklch(0.5560 0 0);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  letter-spacing: 0.075em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid color-mix(in oklab, var(--foreground) 14%, transparent);
  background: var(--background);
  box-shadow: 0 1px 0 0 color-mix(in oklab, var(--background) 55%, transparent) inset;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

@media (max-width: 480px) {
  .brand-logo {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .brand-logo {
    width: 80px;
    height: 80px;
  }
}

.dark .brand-logo {
  filter: drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.85)) brightness(1.1);
}

.brand-name {
  display: none;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.site-nav a:hover {
  background: var(--secondary);
}

.cart-link {
  position: relative;
}

.cart-link:hover .badge {
  transform: scale(1.1);
}

#themeToggle {
  display: none;
}

.badge {
  background: var(--foreground);
  color: var(--background);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.cart-count-pop {
  animation: cartPop 0.5s ease;
}

@keyframes cartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
    color: #4ade80;
  }

  100% {
    transform: scale(1);
  }
}

@keyframes highlight {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  }

  25%,
  75% {
    transform: scale(1.02);
    box-shadow: 0 8px 32px 0 rgba(74, 222, 128, 0.4);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 40px 0 rgba(74, 222, 128, 0.5);
  }
}

/* Hero Video Section */
.hero-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
}

.hero-video {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.products-video-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 768px) {
  .hero-video {
    max-width: 150px;
  }

  .products-video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-video-wrapper {
    justify-content: center;
  }
}

.hero {
  padding: 56px 20px 32px;
  display: grid;
  place-items: center;
}

.hero-content {
  max-width: 880px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.hero p {
  opacity: 0.7;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: none;
}

.btn-primary:hover {
  background: color-mix(in oklab, var(--primary) 95%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background: color-mix(in oklab, var(--secondary) 90%, transparent);
  transform: translateY(-1px);
}

.btn-add-clicked {
  animation: buttonClick 0.4s ease;
}

.btn-add-success {
  background: color-mix(in oklab, var(--primary) 95%, transparent) !important;
  color: var(--primary-foreground) !important;
  border-color: color-mix(in oklab, var(--primary) 80%, transparent) !important;
  box-shadow: 0 0 20px 5px rgba(74, 222, 128, 0.3) !important;
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(0.92);
  }

  60% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 5px rgba(74, 222, 128, 0.4);
  }

  100% {
    transform: scale(1);
  }
}

.btn-danger {
  background: var(--destructive);
  color: var(--destructive-foreground);
}

/* smaller utility */
.btn-sm {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 10px;
}

/* icon-only button (extra small) */
.btn-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 14px;
  border-radius: 8px;
  line-height: 1;
}

.section-head {
  padding: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
}

.section-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in oklab, var(--background) 70%, transparent);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.5;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  letter-spacing: 0.08em;
  position: relative;
}

.products {
  padding: 10px 20px 40px;
}

@media (max-width: 480px) {
  .products {
    padding: 8px 12px 28px;
  }
}

@media (min-width: 1024px) {
  .products {
    padding: 16px 24px 56px;
  }
}

.products-with-showcase {
  padding-top: 0;
  position: relative;
}

.products-with-showcase .section-head {
  margin-top: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card {
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--card) 85%, transparent);
  color: var(--card-foreground);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.15);
}

.card--compact {
  border-radius: 8px;
}

.product {
  display: flex;
  flex-direction: column;
}

.product .img {
  aspect-ratio: 4/5;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 0;
}

.card--compact .img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.product .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-top-left-radius: calc(var(--radius) - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  background: var(--card);
}

.card--compact .body {
  padding: 8px;
}

.product .body {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.product .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-direction: row;
}

.price {
  font-weight: 700;
}

.price-original {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.9em;
  font-weight: 400;
}

/* make size chart button extra small */
.product [data-size-chart].btn-icon {
  width: 26px;
  height: 26px;
  font-size: 14px;
}

/* Shakti Hoodie background */
.product[data-product-id="hoodie-shakti"] {
  position: relative;
  overflow: hidden;
}

.product[data-product-id="hoodie-shakti"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./assets/tees/asssskkokok.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.product[data-product-id="hoodie-shakti"]>* {
  position: relative;
  z-index: 1;
}

.about {
  padding: 10px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.85;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}

.footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-subscribe {
  display: grid;
  gap: 8px;
}

.footer-subscribe input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in oklab, var(--input) 60%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  color: var(--foreground);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.footer-subscribe input:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--foreground) 40%, transparent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring) 20%, transparent);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  opacity: .9;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-badges {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid color-mix(in oklab, var(--border) 50%, transparent);
  border-radius: 10px;
  background: color-mix(in oklab, var(--card) 75%, transparent);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
}

.checkout {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.grid-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.grid-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.grid-form input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid color-mix(in oklab, var(--input) 60%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  color: var(--foreground);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.grid-form input:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--foreground) 40%, transparent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring) 20%, transparent);
}

.grid-form .col-span-2 {
  grid-column: span 2;
}

.muted {
  color: var(--muted-foreground);
  font-size: 13px;
}

.address-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.address-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/tees/b.png") center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.6);
  pointer-events: none;
  z-index: -1;
}

.address-card>* {
  position: relative;
  z-index: 1;
}

.order-summary {
  padding: 16px;
  display: grid;
  gap: 10px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.summary-items {
  display: grid;
  gap: 10px;
}

.summary-item-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: var(--background);
}

.summary-item-row img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}

/* Modal (size chart) */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: hsl(0 0% 0% / 0.20);
}

.modal-dialog {
  position: relative;
  width: min(92vw, 420px);
  max-height: 80vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  overflow: hidden;
}

.modal-dialog.large {
  width: min(96vw, 900px);
  max-height: 90vh;
}

.modal[aria-hidden="false"] .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--background);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

/* Site notice banner */
.notice-banner {
  background: #fef3c7;
  color: #7c2d12;
  border: 1px solid #fde68a;
  padding: 8px 12px;
  margin: 8px 16px 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* Showcase Banner */
.showcase-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 40px 20px;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.showcase-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.7);
  /* Darken image for text contrast */
}

.showcase-title {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 6rem;
  /* Large font size */
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .showcase-title {
    font-size: 3rem;
  }
}



/* Collection page */
.collection-page {
  max-width: 1200px;
  margin: 0 auto;
}

.collection-header {
  margin-top: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.collection-controls {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.collection-controls label {
  display: grid;
  gap: 4px;
  font-size: 13px;
}

.collection-controls select {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in oklab, var(--input) 60%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  color: var(--foreground);
}

.collection-controls select:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--foreground) 40%, transparent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring) 20%, transparent);
}

@media (max-width: 720px) {
  .collection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .collection-controls {
    width: 100%;
    justify-content: flex-start;
  }
}