
/*
Theme Name: Sika Festival
Theme URI: https://sxodstudios.com
Author: SXOD Studios
Description: Festival ticketing theme for Sika Ent.
Version: 1.0
*/






















* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-weight: 600;
  background-color: #050505;
}

/* WRAPS EVERYTHING */
.site-wrapper {
  background: #050505;
  color: #fff;
}


.wrapper-container {
    display: flex;
}

/* HEADER WRAPPER */
.header {
  width: 100%;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00000000;
  color: #fff;
  position: fixed;
  z-index: 20;
}

img.header-img{
    width: 100px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 20px;
}

/* HAMBURGER BUTTON */
.hamburger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 30; /* above overlay */
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* NAV BASE */
.nav {
  display: flex;
  gap: 1.5rem;
}

/* LINKS */
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* header right side buttons */
.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 30;
}

/* cart button */
.cart-btn{
  scale: 1.2 ;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, border-color 0.2s ease;
  left: 77px;
}

.cart-btn:hover{
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.cart-icon{
  width: 22px;
  height: 22px;
}

/* count badge */
.cart-count{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #E3C665; /* matches your gold bars */
  color: #000;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.06em;
  font-weight: 700;
  transform: scale(0);
  transform-origin: center;
}

/* show badge when count > 0 (JS toggles this) */
.cart-count.is-visible{
  transform: scale(1);
}



/* ===============================
   LOADING SCREEN
================================ */

.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-inner {
  width: min(520px, 88%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.loader-logo {
  width: 140px;
  opacity: 0.95;
}

.loader-text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.loader-bars {
  margin-top: 10px;
}

/* progress % */
.loader-progress {
  margin-top: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.75;
}

/* fade-out state */
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* optional: subtle “pulse” for logo */
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.03); opacity: 1; }
}

.loader-logo {
  animation: loaderPulse 1.4s ease-in-out infinite;
}


/* Story lines */
.loader-story {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.story-line {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0;           /* GSAP will animate in */
  transform: translateY(6px);
}

/* Start with bars hidden then “arrive” */
.loader-bars {
  opacity: 0;
  transform: translateY(10px);
}

/* Wipe panel that slides up at the end */
.loader-wipe {
  position: absolute;
  inset: 0;
  background: #050505;
  transform: translateY(100%); /* start off-screen */
  z-index: 2;
  pointer-events: none;
}

/* Make sure inner sits above wipe until wipe animates */
.loader-inner {
  position: relative;
  z-index: 3;
}

/* <=================>

Loader Alt



<=================> */


/* ===============================
   PAGE LOADER (ALL OTHER PAGES)
================================ */

.page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9998; /* slightly below home loader if both exist */
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  isolation: isolate;
  overflow: hidden;
}

.page-loader-inner {
  width: min(520px, 88%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.page-loader-logo {
  width: 110px;
  opacity: 0.95;
}

.page-loader-bars {
  opacity: 0; /* GSAP reveals */
  transform: translateY(10px);
}

/* wipe */
.page-loader-wipe {
  position: absolute;
  inset: 0;
  background: #050505;
  transform: translateY(100%);
  z-index: 2;
  pointer-events: none;
}







/* --------------------------------------------------------
   HERO BACKGROUND VIDEO + OVERLAY
-------------------------------------------------------- */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-img {
  width: 250px;
}

.hero-text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------
   EXTRA SCROLL SECTIONS + FOOTER (NEW)
-------------------------------------------------------- */

.content-section {
  min-height: 80vh;
  padding: 0px 20px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0px;
}

.content-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* alternate background for contrast */
.content-section.alt {
  background: #000000;
  display: flex;
  align-items: center;
}

.footer {
  padding: 30px 20px 50px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- MOBILE STYLES ---------- */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: 0;
    background: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;

    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 25;
  }

  .nav a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .wrapper-container {
    display: flex;
    flex-direction: column;
    }

  img.header-img {
    width: 70px;
    position: relative;
    z-index: 99;
  }

  img.hero-img {
    width: 200px;
  }

  /* Mobile hero spacing */
  .hero-section {
    height: 100vh;
  }

  .site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  /* mobile sections */
  .content-section {
    min-height: 70vh;
    padding: 40px 20px 60px;
  }

  .content-section h2 {
    font-size: 1.4rem;
  }

  section#lineup {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  img.ticket-img {
    width: 300px;
  }

  .bookNow-btn {
    padding: 20px;
    border: solid 2px white;
    border-radius: 20px;
    text-transform: uppercase;
  }

  p {
    text-align: center;
    margin-bottom: 20px;
    }


    video.section-video {
    width: 100%;
    }

    section#about {
    display: flex;
    text-align: center;
    width: 100%;
    }

    a.navTicketa {
    border: solid 1px white;
    border-radius: 10px;
    padding: 10px;
    }
}

/* ---------- DESKTOP STYLES ---------- */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    align-items: center;
  }
}

/* ---------- HAMBURGER ANIMATION ---------- */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}



/* ==========================================
   TICKER / MARQUEE STYLES
========================================== */

.ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-top: 40px;
  z-index: 3; /* above video */
}

.ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: tickerScroll 18s linear infinite;
}

.ticker span {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.9;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .ticker span {
    font-size: 1rem;
  }
}



/* Music beat animation hero */
@keyframes quiet {
  25%{
    transform: scaleY(.6);
  }
  50%{
    transform: scaleY(.4);
  }
  75%{
    transform: scaleY(.8);
  }
}

@keyframes normal {
  25%{
    transform: scaleY(1);
  }
  50%{
    transform: scaleY(.4);
  }
  75%{
    transform: scaleY(.6);
  }
}
@keyframes loud {
  25%{
    transform: scaleY(1);
  }
  50%{
    transform: scaleY(.4);
  }
  75%{
    transform: scaleY(1.2);
  }
}


.boxContainer{
  display: flex;
  justify-content: space-between;
  height: 64px;
  --boxSize: 8px;
  --gutter: 4px;
  width: calc((var(--boxSize) + var(--gutter)) * 5);
}

.box{
  transform: scaleY(.4);
  height: 100%;
  width: var(--boxSize);
  background: #E3C665;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  border-radius: 8px;
}

.box1{
  animation-name: quiet;
}

.box2{
  animation-name: normal;
}

.box3{
  animation-name: quiet;
}

.box4{
  animation-name: loud;
}

.box5{
  animation-name: quiet;
}


/* ===============================
   NEWS SIGNUP FORM
================================ */

.signup-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Checkbox */
.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #ffffff; /* modern browsers */
}

/* Button */
.signup-btn {
  margin-top: 8px;
  align-self: flex-start;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
}

.signup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  background: #000;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .signup-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}



/* Button */

/* BOOK NOW BUTTON */
.bookNow-btn {
  display: inline-block;
  padding: 12px 32px;
  margin-top: 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  border: 1px solid #ffffff;
  transition: 
      background 0.25s ease,
      color 0.25s ease,
      transform 0.15s ease,
      box-shadow 0.25s ease;
}

.bookNow-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.bookNow-btn:active {
  transform: translateY(0px);
  box-shadow: none;
}

/* Center button in sections */
.content-section .bookNow-btn {
  align-self: center;
}

/* Mobile full-width option (optional) */
@media (max-width: 768px) {
  .bookNow-btn {
    width: 80%;
    text-align: center;
  }
}



/* ===============================
   TICKET CARD LAYOUT
================================ */

.ticket-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ticket-img {
  width: 220px;
  margin-bottom: 15px;
}

/* Price text */
.ticket-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0 0;
}

.ticket-price span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.ticket-sub {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* Form container */
.ticket-form {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

/* Quantity selector */
.ticket-qty {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-qty label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.ticket-qty select {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.ticket-qty select:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* SELECT BUTTON */
.select-btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  transition: 
    background 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.25s ease;
}

.select-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.select-btn:active {
  transform: translateY(0px);
  box-shadow: none;
}

/* Mobile layout */
@media (max-width: 768px) {
  .ticket-form {
    flex-direction: column;
    width: 100%;
  }

  .select-btn {
    width: 80%;
  }

  .ticket-qty select {
    width: 100%;
  }

  .space {
    height: 70px;
  }
}



/* ===============================
   SIKA CART PAGE
================================ */

.sika-cart-page {
  max-width: 1100px;
  margin: 100px auto 60px; /* header is fixed, so push down */
  padding: 0 20px 40px;
  color: #fff;
}

.sika-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.sika-cart-header h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.sika-cart-back {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.sika-cart-back:hover {
  opacity: 1;
  border-color: #e3c665;
}

/* Empty cart */
.sika-cart-empty {
  margin-top: 40px;
  text-align: center;
}

.sika-cart-empty p {
  margin-bottom: 18px;
}

/* Grid layout: items + summary */
.sika-cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 24px;
}

/* Cart items */
.sika-cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sika-cart-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sika-cart-item-main {
  display: flex;
  gap: 14px;
}

.sika-cart-item-thumb img,
.sika-cart-thumb-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: radial-gradient(circle at top, #333 0, #050505 60%);
}

.sika-cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sika-cart-item-title {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sika-cart-item-title a {
  color: #fff;
  text-decoration: none;
}

.sika-cart-item-title a:hover {
  color: #e3c665;
}

.sika-cart-item-meta {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* qty & price row */
.sika-cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

/* qty */
.sika-cart-qty label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.sika-cart-qty .qty {
  width: 70px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
}

/* price */
.sika-cart-item-price {
  font-size: 1rem;
  font-weight: 700;
}

/* footer row (remove link) */
.sika-cart-item-footer {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.sika-cart-remove {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}

.sika-cart-remove:hover {
  color: #ff6b6b;
}

/* Summary box */
.sika-cart-summary {
  background: radial-gradient(circle at top, #222 0, #050505 65%);
  border-radius: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sika-cart-summary h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

/* Let Woo's totals render inside but style container */
.sika-cart-totals-wrapper .cart_totals {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
}

.sika-cart-totals-wrapper table th,
.sika-cart-totals-wrapper table td {
  border: none;
  padding: 6px 0;
  color: #fff;
}

.sika-cart-totals-wrapper .order-total strong {
  font-size: 1.1rem;
}

/* Buttons in summary */
.sika-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.sika-cart-update {
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.sika-cart-update:hover {
  border-color: #ffffff;
}

/* Use Woo's proceed-to-checkout button but ensure it looks right */
.sika-cart-summary .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 999px;
  padding: 12px 20px;
  background: #ffffff;
  color: #000;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.sika-cart-summary .wc-proceed-to-checkout a.checkout-button:hover {
  background: #000;
  color: #fff;
}

/* Woo notices on dark background */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .sika-cart-page {
    margin-top: 140px;
  }

  .sika-cart-header {
    flex-direction: column;
    align-items: center;
  }

  .sika-cart-grid {
    grid-template-columns: 1fr;
  }

  .sika-cart-summary {
    margin-top: 10px;
  }

  .sika-cart-item-main {
    align-items: flex-start;
  }
}
/* ===============================
   SIKA CHECKOUT PAGE
================================ */

.sika-checkout-page {
  max-width: 1100px;
  margin: 100px auto 60px; /* clear fixed header */
  padding: 0 20px 40px;
  color: #fff;
}

.sika-checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.sika-checkout-header h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.sika-checkout-back {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.sika-checkout-back:hover {
  opacity: 1;
  border-color: #e3c665;
}

/* Grid layout for checkout */
.sika-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 24px;
}

/* Left side: details */
.sika-checkout-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sika-checkout-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 18px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sika-checkout-section h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 6px;
}

.sika-checkout-subtext {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0 0 12px;
}

/* Woo form rows inside our left panel */
.sika-checkout-customer .form-row {
  margin: 0 0 12px;
}

.sika-checkout-customer label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.sika-checkout-customer input.input-text,
.sika-checkout-customer select,
.sika-checkout-customer textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.sika-checkout-customer textarea {
  border-radius: 18px;
  min-height: 80px;
  resize: vertical;
}

.sika-checkout-customer input::placeholder,
.sika-checkout-customer textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sika-checkout-customer input:focus,
.sika-checkout-customer select:focus,
.sika-checkout-customer textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Right side: summary & pay */
.sika-checkout-right {
  background: radial-gradient(circle at top, #222 0, #050505 65%);
  border-radius: 20px;
  padding: 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sika-checkout-right h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

/* Woo order review / totals inside */
.sika-checkout-summary .shop_table {
  border: none;
}

.sika-checkout-summary .shop_table th,
.sika-checkout-summary .shop_table td {
  border: none;
  padding: 6px 0;
  color: #fff;
}

.sika-checkout-summary .shop_table .product-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sika-checkout-summary .shop_table .product-total {
  text-align: right;
}

.sika-checkout-summary .shop_table tfoot th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sika-checkout-summary .shop_table tfoot .order-total strong {
  font-size: 1.1rem;
}

/* Payment methods */
.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 14px 14px;
  margin-top: 14px;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  margin: 0 0 10px;
}

.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none;
  margin-bottom: 8px;
}

.woocommerce-checkout #payment ul.payment_methods label {
  font-size: 0.8rem;
}

.woocommerce-checkout #payment div.payment_box {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

/* Place order button */
.woocommerce-checkout #payment #place_order,
.woocommerce-checkout #payment button[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.25s ease;
}

.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #payment button[type="submit"]:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

/* Notices on dark bg */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .sika-checkout-page {
    margin-top: 90px;
  }

  .sika-checkout-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sika-checkout-grid {
    grid-template-columns: 1fr;
  }

  .sika-checkout-right {
    margin-top: 12px;
  }
}


.wc-block-components-sidebar-layout.wc-block-checkout {
    margin-top: 80px;
}


/* ===============================
   SIKA THANK YOU / ORDER RECEIVED
================================ */

.sika-thankyou-page {
  max-width: 1100px;
  margin: 100px auto 60px;
  padding: 0 20px 40px;
  color: #fff;
}

.sika-thankyou-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 24px;
}

.sika-thankyou-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sika-thankyou-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 20px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sika-thankyou-card--failed {
  border-color: rgba(255, 80, 80, 0.8);
}

.sika-thankyou-icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.sika-thankyou-icon--success {
  background: #e3c665;
  color: #000;
}

.sika-thankyou-icon--failed {
  background: #ff5a5a;
  color: #000;
}

.sika-thankyou-lead {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
}

.sika-thankyou-text {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0 0 14px;
}

/* Meta list */
.sika-thankyou-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sika-thankyou-meta .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.sika-thankyou-meta .value {
  font-size: 0.9rem;
}

/* Actions */
.sika-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sika-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: #fff;
}

.sika-link-pill:hover {
  border-color: #ffffff;
}

/* Summary panel */
.sika-thankyou-summary {
  background: radial-gradient(circle at top, #222 0, #050505 65%);
  border-radius: 20px;
  padding: 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sika-thankyou-summary h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

.sika-thankyou-summary-inner .woocommerce-order-details {
  margin: 0;
}

.sika-thankyou-summary-inner .woocommerce-table--order-details {
  border: none;
}

.sika-thankyou-summary-inner .woocommerce-table--order-details th,
.sika-thankyou-summary-inner .woocommerce-table--order-details td {
  border: none;
  padding: 6px 0;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .sika-thankyou-page {
    margin-top: 90px;
  }

  .sika-thankyou-layout {
    grid-template-columns: 1fr;
  }

  .sika-thankyou-summary {
    margin-top: 14px;
  }
}
