*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1a2b3b 0, #05070a 50%, #020308 100%);
  color: #f7f9fc;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Layout */

.kk-container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.kk-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.7), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.kk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.kk-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5f8ff;
}

.kk-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #4ade80, #16a34a 45%, #052e16 100%);
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.7);
  font-size: 0.95rem;
}

.kk-logo-text {
  font-size: 0.98rem;
}

.kk-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.kk-nav a {
  position: relative;
  padding-block: 0.3rem;
  color: #cbd5f5;
  transition: color 0.15s ease;
}

.kk-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #22d3ee);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.16s ease-out;
}

.kk-nav a:hover {
  color: #ffffff;
}

.kk-nav a.is-active {
  color: #e5f8ff;
  font-weight: 600;
}

.kk-nav a.is-active::after {
  transform: scaleX(1);
}

.kk-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.96));
  color: #e5f8ff;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.kk-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
  border-color: rgba(248, 250, 252, 0.8);
}

.kk-cart-icon {
  font-size: 0.85rem;
}

.kk-cart-label {
  font-size: 0.8rem;
}

.kk-cart-count {
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #22d3ee);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #020617;
}

/* Hero */

.kk-hero {
  padding: 3.5rem 0 3rem;
}

.kk-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 3rem;
}

.kk-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5f3fc;
  margin-bottom: 0.75rem;
}

.kk-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.kk-hero-subtitle {
  color: #cbd5f5;
  max-width: 34rem;
  font-size: 0.98rem;
}

.kk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block: 1.6rem 1.3rem;
}

.kk-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.kk-meta-value {
  display: block;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.kk-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.kk-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.kk-hero-card {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.95);
  transform: translateY(6px);
}

.kk-hero-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.kk-hero-badge {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.kk-hero-badge strong {
  font-size: 0.8rem;
}

.kk-hero-badge-top {
  top: 1.2rem;
}

.kk-hero-badge-bottom {
  bottom: 1.2rem;
}

/* Sections */

.kk-section {
  padding-block: 3rem;
}

.kk-section-alt {
  background: radial-gradient(circle at top center, rgba(34, 197, 94, 0.12), transparent 55%);
}

.kk-section-tight {
  padding-block: 2.4rem 3rem;
}

.kk-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.kk-section-header h2 {
  font-size: 1.5rem;
}

.kk-section-header p {
  color: #cbd5f5;
  font-size: 0.95rem;
}

.kk-subheading {
  font-size: 1.1rem;
  margin-block: 1.8rem 1rem;
}

/* Grid & cards */

.kk-grid {
  display: grid;
  gap: 1.4rem;
}

.kk-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kk-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kk-card {
  border-radius: 1.4rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
  position: relative;
}

.kk-card-category {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.kk-card-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.kk-card-body {
  padding: 0.9rem 1.1rem 1rem;
}

.kk-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.kk-card-body p {
  font-size: 0.86rem;
  color: #cbd5f5;
  margin-bottom: 0.9rem;
}

.kk-card-elevated {
  padding: 1.2rem 1.3rem 1.4rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}

.kk-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.kk-card-header h2 {
  font-size: 1.15rem;
}

/* Buttons & chips */

.kk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.1s ease,
    box-shadow 0.16s ease, border-color 0.16s ease;
}

.kk-btn-primary {
  background: linear-gradient(135deg, #22c55e, #22d3ee);
  color: #020617;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.4);
}

.kk-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(8, 47, 73, 0.9);
}

.kk-btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5f8ff;
}

.kk-btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.kk-btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.kk-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.kk-btn-pill {
  padding-inline: 1.6rem;
}

.kk-btn-small {
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
}

.kk-btn-full {
  width: 100%;
}

.kk-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.kk-chip:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.95);
}

.kk-chip-outline {
  background: rgba(15, 23, 42, 0.85);
}

.kk-chip.is-active {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(56, 189, 248, 0.16));
  border-color: rgba(34, 197, 94, 0.9);
  color: #bbf7d0;
}

.kk-link-btn {
  border: none;
  background: none;
  color: #93c5fd;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Product cards */

.kk-product-grid {
  margin-top: 0.4rem;
}

.kk-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.kk-product-media {
  position: relative;
}

.kk-product-media img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.kk-product-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.7rem;
}

.kk-product-body {
  padding: 0.9rem 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.kk-product-title {
  font-size: 0.95rem;
}

.kk-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
  color: #9ca3af;
}

.kk-product-price {
  font-weight: 600;
  color: #bbf7d0;
}

.kk-product-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.kk-product-desc {
  font-size: 0.78rem;
  color: #cbd5f5;
}

.kk-product-actions {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.kk-product-size {
  font-size: 0.75rem;
  color: #9ca3af;
}

.kk-product-add {
  font-size: 0.8rem;
  padding-block: 0.45rem;
}

.kk-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Strips */

.kk-strip {
  padding: 1.8rem 0 2.3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 1));
}

.kk-strip-soft {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.05), rgba(15, 23, 42, 0.96));
}

.kk-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.kk-strip-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.kk-strip-inner p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Page layouts */

.kk-page-alt {
  background: radial-gradient(circle at top center, #0b1120 0, #020617 55%, #020617 100%);
}

.kk-page-hero {
  padding-block: 2.4rem 1.4rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), transparent 55%);
}

.kk-page-hero-compact {
  padding-block: 2.2rem 1.2rem;
}

.kk-page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
}

.kk-page-hero h1 {
  font-size: 1.7rem;
  margin-bottom: 0.1rem;
}

.kk-page-hero p {
  font-size: 0.9rem;
  color: #e5e7eb;
  max-width: 30rem;
}

.kk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.kk-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.kk-checkout-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

.kk-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #9ca3af;
}

.kk-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.kk-contact-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.86rem;
}

.kk-contact-meta h3 {
  font-size: 0.86rem;
  margin-bottom: 0.1rem;
}

.kk-contact-meta p {
  color: #cbd5f5;
}

/* Forms */

.kk-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.kk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.9rem;
  row-gap: 0.75rem;
}

.kk-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.kk-field-full {
  grid-column: 1 / -1;
}

.kk-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.kk-field input,
.kk-field textarea,
.kk-field select {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.5rem 0.65rem;
  font-size: 0.86rem;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.kk-field input:focus,
.kk-field textarea:focus,
.kk-field select:focus {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
  background: rgba(15, 23, 42, 0.96);
}

.kk-form-subheading {
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.kk-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.kk-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
}

.kk-radio input {
  width: 0.85rem;
  height: 0.85rem;
}

.kk-form-helper {
  font-size: 0.75rem;
  color: #9ca3af;
}

.kk-form-success {
  font-size: 0.8rem;
  color: #bbf7d0;
}

.kk-order-summary {
  margin-block: 0.6rem 0.7rem;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.kk-order-summary > div {
  display: flex;
  justify-content: space-between;
}

.kk-order-summary-total {
  margin-top: 0.2rem;
  font-weight: 600;
}

/* Cart list */

.kk-cart-card {
  min-height: 260px;
}

.kk-empty-state {
  text-align: center;
  padding-block: 1.4rem 0.8rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.kk-empty-state p {
  margin-bottom: 0.6rem;
}

.kk-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.kk-cart-item {
  display: flex;
  gap: 0.6rem;
  padding: 0.35rem 0.4rem 0.4rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
}

.kk-cart-item img {
  width: 58px;
  height: 58px;
  border-radius: 0.7rem;
  object-fit: cover;
}

.kk-cart-item-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.kk-cart-item-title {
  font-size: 0.85rem;
}

.kk-cart-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.kk-cart-item-price {
  color: #bbf7d0;
  font-weight: 600;
}

.kk-cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.kk-qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.75rem;
  cursor: pointer;
}

.kk-qty-value {
  min-width: 1.1rem;
  text-align: center;
  font-size: 0.75rem;
}

.kk-remove-btn {
  margin-left: auto;
  border: none;
  background: none;
  color: #fca5a5;
  font-size: 0.7rem;
  cursor: pointer;
}

/* Contact map */

.kk-contact-card {
  min-height: 280px;
}

.kk-card-map {
  padding: 1rem 1.1rem 1.1rem;
}

.kk-map-placeholder {
  margin-top: 0.3rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background-image: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.25), transparent 55%);
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.kk-map-placeholder::before,
.kk-map-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.kk-map-placeholder::before {
  width: 130%;
  height: 90%;
  left: -20%;
  top: 10%;
}

.kk-map-placeholder::after {
  width: 110%;
  height: 70%;
  left: -5%;
  top: 20%;
}

.kk-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  padding-inline: 1.4rem;
  z-index: 1;
}

.kk-map-overlay h3 {
  font-size: 1rem;
}

.kk-map-overlay p {
  font-size: 0.82rem;
  color: #e5e7eb;
}

.kk-map-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.kk-map-caption {
  margin-top: 0.7rem;
  font-size: 0.76rem;
  color: #9ca3af;
}

/* Footer */

.kk-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-block: 1.2rem 1.4rem;
  background: radial-gradient(circle at top center, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 1));
}

.kk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.kk-footer-brand {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.kk-footer-links {
  display: flex;
  gap: 1rem;
}

.kk-footer-links a {
  text-decoration: none;
}

.kk-footer-copy {
  text-align: right;
}

/* Utilities */

.kk-hidden {
  display: none !important;
}

/* Responsive */

@media (max-width: 900px) {
  .kk-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .kk-hero-visual {
    justify-content: center;
  }

  .kk-hero-card {
    max-width: 320px;
  }

  .kk-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kk-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kk-checkout-layout,
  .kk-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .kk-page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .kk-checkout-summary-pill {
    align-self: flex-start;
  }

  .kk-contact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kk-footer-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .kk-header-inner {
    gap: 0.7rem;
  }

  .kk-nav {
    display: none;
  }

  .kk-hero {
    padding-top: 2.6rem;
  }

  .kk-section {
    padding-block: 2.4rem;
  }

  .kk-grid-4,
  .kk-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .kk-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .kk-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kk-contact-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

