/* ==========================================================================
   NK THEME — SHOP STYLES (WooCommerce)

   Styling for all WooCommerce pages matching the Naukowa Karuzela brand.
   Colors, fonts, and design patterns match the existing theme.

   SPIS TREŚCI:
   1. SHOP NAVIGATION BAR
   2. SEARCH ANIMATION
   3. CATEGORIES DROPDOWN
   4. PRODUCT ARCHIVE / GRID
   5. PRODUCT CARD
   6. SHOP FILTERS
   7. SINGLE PRODUCT PAGE
   8. SLIDE-OUT CART
   9. WISHLIST PANEL
   10. CHECKOUT PAGE
   11. CART PAGE
   12. NOTICES & MESSAGES
   13. PAGINATION
   14. RESPONSIVE
   ========================================================================== */


/* ==========================================================================
   1. SHOP NAVIGATION BAR
   ========================================================================== */

.nk-shop-nav {
  width: 100%;
  background: var(--color-blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 9998; /* just below main header (9999) */
}

/* WP Admin Bar is visible (logged in) — desktop: 32px, mobile: 46px */
.admin-bar .nk-shop-nav {
  top: 112px; /* 80px header + 32px admin bar */
}
@media screen and (max-width: 782px) {
  .admin-bar .nk-shop-nav {
    top: 126px; /* 80px header + 46px admin bar */
  }
}

.nk-shop-nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 5px;
  padding: 0 15px;
}

.nk-shop-nav-spacer {
  flex: 1;
}

.nk-shop-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nk-shop-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-orange);
}

.nk-shop-nav-btn i {
  font-size: 1.1em;
}

.nk-chevron {
  font-size: 0.7em !important;
  transition: transform 0.3s ease;
}

.nk-shop-nav-btn.active .nk-chevron {
  transform: rotate(180deg);
}

/* Cart & Wishlist count badges */
.nk-cart-count,
.nk-wishlist-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-magenta);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -2px;
  transition: transform 0.3s ease;
}

.nk-cart-count.bump,
.nk-wishlist-count.bump {
  animation: nk-badge-bump 0.4s ease;
}

@keyframes nk-badge-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Cart shake animation (when clicking empty cart) */
.nk-cart-shake {
  animation: nk-cart-shake 0.5s ease;
}

@keyframes nk-cart-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}
/* Mniejszy submit w shop nav search */
.nk-shop-nav button[type='submit'] {
    padding: 0px 20px;
    height: 30px;
    border-radius: 30px;
    margin: 0;
}

/* ==========================================================================
   2. SEARCH ANIMATION
   ========================================================================== */

.nk-shop-search {
  position: relative;
}

.nk-search-form-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.nk-search-form-wrapper.active {
  width: 320px;
  opacity: 1;
  pointer-events: auto;
}

.nk-search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  overflow: hidden;
  height: 40px;
}

.nk-search-input {
  flex: 1;
  background: none !important;
  border: none !important;
  color: var(--color-white) !important;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  padding: 0 15px !important;
  outline: none;
  height: 100%;
}

.nk-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.nk-search-submit,
.nk-search-close {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nk-search-submit:hover {
  color: var(--color-orange);
}

.nk-search-close:hover {
  color: var(--color-red);
}


/* ==========================================================================
   3. CATEGORIES DROPDOWN
   ========================================================================== */

.nk-shop-categories-dropdown {
  position: relative;
}

.nk-categories-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  background: var(--color-blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nk-categories-dropdown-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nk-cat-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nk-cat-link:hover,
.nk-cat-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-orange);
}

.nk-cat-link i {
  width: 20px;
  text-align: center;
  opacity: 0.7;
}

.nk-cat-count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.nk-cat-all {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 4px;
}


/* ==========================================================================
   0. FORCE HEADER BLUE ON SHOP PAGES (no hero, no devider)
   ========================================================================== */

/*
 * On WooCommerce pages there is no fixed hero section.
 * The main header must immediately show its "scrolled" (blue) state,
 * and the content needs top padding to compensate for the fixed header.
 */

/* Force scrolled look on header for WooCommerce pages */
.woocommerce header#masthead::before,
.woocommerce-page header#masthead::before {
  background: rgba(var(--color-blue-rgb), 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.woocommerce header#masthead,
.woocommerce-page header#masthead {
  border-bottom: 1px dashed var(--color-white);
  border-image: repeating-linear-gradient(
      to right,
      rgba(190, 190, 190, 1) 0,
      rgba(190, 190, 190, 1) 5px,
      transparent 5px,
      transparent 10px
    )
    30;
}

/* Force compact header (scrolled size) */
.woocommerce #masthead .page-content,
.woocommerce-page #masthead .page-content {
  height: 80px !important;
}

.woocommerce .page-logo,
.woocommerce-page .page-logo {
  width: 70px !important;
  height: 70px !important;
  top: 5px !important;
}

.woocommerce .page-logo::after,
.woocommerce-page .page-logo::after {
  border: 1px dashed rgba(255, 255, 255, 0) !important;
}

.woocommerce .page-logo::before,
.woocommerce-page .page-logo::before {
  background: rgba(10, 26, 54, 0) !important;
}

.woocommerce .page-logo a,
.woocommerce .page-logo a img,
.woocommerce-page .page-logo a,
.woocommerce-page .page-logo a img {
  width: 60px !important;
  height: 60px !important;
}

/* Push content below fixed header (80px) + fixed shop nav (56px) = 136px */
.nk-shop-content {
  padding-top: 136px;
}

/* When admin bar visible: 32px extra on desktop, 46px on mobile */
.admin-bar .nk-shop-content {
  padding-top: 168px; /* 32px admin bar + 80px header + 56px shop nav */
}

@media screen and (max-width: 782px) {
  .admin-bar .nk-shop-content {
    padding-top: 182px; /* 46px admin bar + 80px header + 56px shop nav */
  }
}

@media screen and (max-width: 768px) {
  /* On mobile header is always 80px (scrolled state) */
  .nk-shop-nav {
    top: 80px;
  }
  .nk-shop-content {
    padding-top: 136px;
  }
}


/* ==========================================================================
   4. PRODUCT ARCHIVE / GRID
   ========================================================================== */

.nk-shop-content {
  background-color: rgb(var(--color-sand-rgb));
}

.nk-shop-main {
  margin: 0 !important;
}

.nk-shop-main .products,
ul.products {
      display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none !important;
  padding: 0 0 100px !important;
  margin: 0 !important;
}
.product .related {
      display: block!important
}

.product .related > ul.products  {
  padding: 20px 0 100px!important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none !important;
  padding: 0 0 100px !important;
  margin: 0 !important;
}
.nk-shop-main .products li.product,
ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}

/* ---- Shop breadcrumbs on light background ---- */
/* Last element + » arrows stay orange (inherited from style.css).
   Only link elements become grey-dark. */
.nk-shop-content .breadcrumbs a {
  color: var(--color-grey-dark);
  opacity: 0.6;
}

.nk-shop-content .breadcrumbs a:hover {
  color: var(--color-orange);
  opacity: 1;
}

/* Hide default WooCommerce products header (replaced by nk-shop-header-row) */
.woocommerce-products-header,
.woocommerce-products-header__title {
  display: none !important;
}

/* Shop header row: H1 + sorting in one line */
.nk-shop-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.nk-shop-header-row .nk-shop-title {
  font-family: 'Francois One', sans-serif;
  font-size: 2rem;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
  margin: 0;
  flex-shrink: 0;
}
.nk-shop-header-row .nk-shop-filters {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Legacy selectors (single pages, other contexts) */
.nk-shop-content h1,
.nk-shop-content h2.page-title {
  font-family: 'Francois One', sans-serif;
  font-size: 2rem;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
  margin: 0 0 10px;
}

/* No products found */
.nk-no-products {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.nk-no-products i {
  font-size: 4rem;
  color: var(--color-grey);
  margin-bottom: 20px;
  display: block;
}

.nk-no-products p {
  font-size: 1.1rem;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
}



/* ==========================================================================
   5. PRODUCT CARD
   ========================================================================== */

.nk-product-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.nk-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nk-product-link {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nk-product-link:hover {
  text-decoration: none !important;
  color: inherit;
}

/* Product Image */
.nk-product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.nk-product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nk-product-card:hover .nk-product-image-wrapper img {
  transform: scale(1.08);
}

/* Product Overlay */
.nk-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-blue-dark-rgb), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nk-product-card:hover .nk-product-overlay {
  opacity: 1;
}

.nk-quick-view {
  background: var(--color-white);
  color: var(--color-blue-dark);
  padding: 10px 20px;
  border-radius: 25px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.nk-product-card:hover .nk-quick-view {
  transform: translateY(0);
}

/* Product Badges */
.nk-product-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nk-badge-sale {
  left: 12px;
  background: var(--color-red);
  color: var(--color-white);
}

.nk-badge-digital {
  right: 12px;
  background: var(--color-mint);
  color: var(--color-white);
}

/* Product Info */
.nk-product-info {
  padding: 18px 20px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nk-product-category {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.nk-product-title {
  font-family: 'Francois One', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-blue-dark);
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin: 0 0 8px;
  flex: 1;
}

.nk-product-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-blue);
}

.nk-product-price del {
  color: var(--color-grey);
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 8px;
}

.nk-product-price ins {
  text-decoration: none;
  color: var(--color-red);
}

/* Product Actions */
.nk-product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 18px;
  border-top: 1px solid rgba(var(--color-grey-rgb), 0.3);
  margin-top: auto;
}

.nk-add-to-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  background: var(--color-magenta);
  color: var(--color-white);
  border: none;
  border-radius: 21px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nk-add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  border-radius: 21px;
  z-index: -1;
  transform: translateY(105%);
  transition: transform 0.4s ease-out;
}

.nk-add-to-cart:hover::before {
  transform: translateY(0);
}

.nk-add-to-cart:hover {
  color: var(--color-white);
}

.nk-add-to-cart.added,
.nk-add-to-cart.nk-btn-in-cart {
  background: var(--color-blue);
}

/* Ukryj oddzielny link "Zobacz koszyk" — info jest już w przycisku */
.added_to_cart {
  display: none !important;
}

.nk-add-to-cart.adding {
  pointer-events: none;
  opacity: 0.7;
}

.nk-wishlist-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--color-grey);
  border-radius: 50%;
  color: var(--color-grey);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nk-wishlist-toggle:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.nk-wishlist-toggle.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.nk-wishlist-toggle.active i {
  font-weight: 900; /* solid heart */
}
.wp-post-image {width:100%;}

/* ==========================================================================
   6. SHOP FILTERS
   ========================================================================== */
  h1.page-title {
    margin-bottom:30px;
  }

.nk-shop-filters.controls-wrapper {
margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

/* Reuse existing NK dropdown styles from filmy */
.nk-shop-filters .control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nk-shop-filters .control-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
}

.nk-shop-filters .custom-dropdown {
  position: relative;
  min-width: 180px;
}

.nk-shop-filters .dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--color-white);
  border: 2px solid var(--color-grey);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 10px;
}

.nk-shop-filters .dropdown-header:hover {
  border-color: var(--color-blue);
}

.nk-shop-filters .selected-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
}

.nk-shop-filters .dropdown-arrow {
  color: var(--color-orange);
  transition: transform 0.3s ease;
}

.nk-shop-filters .dropdown-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  min-width: 200px;
  background: var(--color-white);
  border: 2px solid var(--color-grey);
  border-radius: 12px;
  padding: 8px;
  list-style: none !important;
  margin: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nk-shop-filters .custom-dropdown.open .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nk-shop-filters .custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nk-shop-filters .dropdown-item {
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  transition: all 0.15s ease;
}

.nk-shop-filters .dropdown-item:hover {
  background: rgba(var(--color-orange-rgb), 0.1);
  color: var(--color-orange);
}

.nk-shop-filters .dropdown-item.selected {
  background: rgba(var(--color-orange-rgb), 0.15);
  color: var(--color-orange);
  font-weight: 700;
}

.nk-shop-filters .cat-count {
  opacity: 0.5;
  font-size: 0.85em;
}

/* Hide default WooCommerce result count & ordering */
.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}

/* Search result count — styled */
.nk-search-result-count {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--color-blue-dark);
  margin-bottom: 25px;
  padding: 12px 20px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
  display: inline-block;
}
.nk-search-result-count strong {
  color: var(--color-orange);
  font-weight: 700;
}


/* ==========================================================================
   7. SINGLE PRODUCT PAGE
   ========================================================================== */

.single-product div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Gallery */
.single-product .woocommerce-product-gallery {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
}

/* Disable click-to-open on gallery images (no lightbox) */
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a {
  pointer-events: none;
  cursor: default;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs li .flex-active {
  border-color: var(--color-orange);
}

/* Product Summary */
.single-product .summary.entry-summary {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}

.nk-single-product-cat {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.nk-single-product-cat a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nk-single-product-cat a:hover {
  color: var(--color-magenta);
}

.nk-single-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.nk-single-badges .nk-product-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-product .product_title {
  font-family: 'Francois One', sans-serif;
  font-size: 2.2rem;
  color: var(--color-blue-dark);
  line-height: 1.2;
  margin: 0 0 15px;
  letter-spacing: 1px;
}

.single-product .price {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 6px;
  display: block;
}

.single-product .price del {
  font-size: 1.2rem;
  color: var(--color-grey);
  font-weight: 500;
}

.single-product .price ins {
  text-decoration: none;
  color: var(--color-red);
}

/* Stock availability */
.single-product .stock {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.single-product .stock.in-stock {
  color: var(--color-green);
}
.single-product .stock.in-stock::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  display: inline-block;
}
.single-product .stock.out-of-stock {
  color: var(--color-red);
}
.single-product .stock.out-of-stock::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
  display: inline-block;
}

.single-product .woocommerce-product-details__short-description {
  color: var(--color-blue-dark);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* Add to Cart Form */
.single-product .cart {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

/* Custom +/- quantity widget on single product page */
.single-product .nk-qty-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-grey);
  border-radius: 25px;
  overflow: hidden;
  height: 50px;
  flex-shrink: 0;
  background: var(--color-white);
}

.single-product .nk-qty-btn {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-blue-dark);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.single-product .nk-qty-btn:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.single-product .nk-qty-input-single {
  width: 44px;
  text-align: center;
  border: none !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-blue-dark);
  background: transparent;
  -moz-appearance: textfield;
  padding: 0 !important;
  outline: none;
}

.single-product .nk-qty-input-single::-webkit-outer-spin-button,
.single-product .nk-qty-input-single::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.single-product .single_add_to_cart_button {
  flex: 1;
  height: 50px;
  background: var(--color-magenta);
  color: var(--color-white);
  border: none;
  border-radius: 25px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  padding: 0 30px;
  margin-top:0px;
}

.single-product .single_add_to_cart_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  z-index: -1;
  transform: translateY(105%);
  transition: transform 0.4s ease-out;
  border-radius: 25px;
}

.single-product .single_add_to_cart_button:hover::before {
  transform: translateY(0);
}

.single-product .single_add_to_cart_button:hover {
  color: var(--color-white);
}

/* Product meta (category, SKU etc.) */
.single-product .product_meta {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  color: var(--color-grey-dark);
  padding-top: 20px;
  border-top: 1px solid var(--color-grey);
  margin-top: 5px;
  line-height: 1.8;
}
.single-product .product_meta > span {
  display: block;
}
.single-product .product_meta a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.single-product .product_meta a:hover {
  color: var(--color-orange);
}

/* Wishlist Button (Single Product) — sits next to add-to-cart */
.nk-wishlist-single {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--color-grey);
  border-radius: 25px;
  padding: 0 22px;
  height: 50px;
  color: var(--color-blue-dark);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  width:200px;
  margin-top:20px;
}

.nk-wishlist-single i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.nk-wishlist-single:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.nk-wishlist-single:hover i {
  transform: scale(1.15);
}

.nk-wishlist-single.active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

/* Actions row below cart form (wishlist) */
.nk-single-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

/* Variations */
.single-product .variations {
  width: 100%;
  margin-bottom: 20px;
  border: none;
}

.single-product .variations td,
.single-product .variations th {
  padding: 8px 0;
  border: none;
  vertical-align: middle;
}

.single-product .variations .label label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-product .variations select {
  width: 100%;
  padding: 10px 16px;
  border: 2px solid var(--color-grey);
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--color-blue-dark);
  background: var(--color-white);
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.single-product .variations select:focus {
  border-color: var(--color-blue);
  outline: none;
}

.single-product .reset_variations {
  color: var(--color-red) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* Product Tabs */
.single-product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.single-product .woocommerce-tabs ul.tabs {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 30px !important;
  display: flex;
  gap: 5px;
  border-bottom: 2px solid var(--color-grey);
}

.single-product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 24px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-blue-dark);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--color-orange);
}

.single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.single-product .woocommerce-tabs .panel {
  padding: 10px 0;
  color: var(--color-blue-dark);
  line-height: 1.7;
}

.single-product .woocommerce-tabs .panel h2 {
  font-family: 'Francois One', sans-serif;
  font-size: 1.5rem;
  color: var(--color-blue-dark);
  margin-bottom: 15px;
}

/* Related Products */
.single-product .related.products {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px dashed var(--color-grey);
}

.single-product .related.products > h2 {
  font-family: 'Francois One', sans-serif;
  font-size: 1.8rem;
  color: var(--color-blue-dark);
  margin-bottom: 25px;
}


/* ==========================================================================
   8. SLIDE-OUT CART
   ========================================================================== */

.nk-slide-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nk-slide-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nk-slide-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-sand);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.nk-slide-cart.active {
  transform: translateX(0);
}

.nk-slide-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: var(--color-blue-dark);
  color: var(--color-white);
  flex-shrink: 0;
}

.nk-slide-cart-header h3 {
  margin: 0;
  font-family: 'Francois One', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nk-slide-cart-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s ease;
}

.nk-slide-cart-close:hover {
  color: var(--color-orange);
}

.nk-slide-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Cart Item */
.nk-cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.nk-cart-item:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.nk-cart-item-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.nk-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nk-cart-item-details {
  flex: 1;
  min-width: 0;
}

.nk-cart-item-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nk-cart-item-name:hover {
  color: var(--color-orange);
}

.nk-cart-item-variation {
  font-size: 0.8rem;
  color: var(--color-blue-dark);
  opacity: 0.6;
  margin-bottom: 4px;
}

.nk-cart-item-variation span {
  display: inline-block;
  margin-right: 8px;
}

.nk-cart-item-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-blue);
  margin-bottom: 8px;
}

/* Quantity Controls */
.nk-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  overflow: hidden;
  width: fit-content;
  height: 32px;
}

.nk-qty-btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-blue-dark);
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.2s ease;
  padding: 0;
}

.nk-qty-btn:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.nk-qty-value {
  width: 30px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
}

/* Remove Button */
.nk-cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--color-grey);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 5px;
  transition: color 0.2s ease;
}

.nk-cart-item-remove:hover {
  color: var(--color-red);
}

/* Cart Empty State */
.nk-cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.nk-cart-empty i {
  font-size: 3rem;
  color: var(--color-grey);
  margin-bottom: 15px;
  display: block;
}

.nk-cart-empty p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
}

.nk-cart-empty-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-magenta);
  color: var(--color-white);
  border-radius: 25px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nk-cart-empty-btn:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

/* Cart Footer */
.nk-slide-cart-footer {
  padding: 20px 25px;
  border-top: 2px solid var(--color-grey);
  background: var(--color-white);
  flex-shrink: 0;
}

.nk-slide-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-blue-dark);
}

.nk-cart-total-amount {
  color: var(--color-blue);
  font-size: 1.3rem;
}

.nk-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  background: var(--color-magenta);
  color: var(--color-white);
  border: none;
  border-radius: 25px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.nk-checkout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  z-index: -1;
  transform: translateY(105%);
  transition: transform 0.4s ease-out;
  border-radius: 25px;
}

.nk-checkout-btn:hover::before {
  transform: translateY(0);
}

.nk-checkout-btn:hover {
  color: var(--color-white);
}

.nk-view-cart-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  text-decoration: underline;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nk-view-cart-link:hover {
  opacity: 1;
  color: var(--color-blue);
}


/* ==========================================================================
   9. WISHLIST PANEL
   ========================================================================== */

.nk-wishlist-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-sand);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.nk-wishlist-panel.active {
  transform: translateX(0);
}

.nk-wishlist-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: var(--color-blue-dark);
  color: var(--color-white);
  flex-shrink: 0;
}

.nk-wishlist-panel-header h3 {
  margin: 0;
  font-family: 'Francois One', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
}

.nk-wishlist-panel-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s ease;
}

.nk-wishlist-panel-close:hover {
  color: var(--color-orange);
}

.nk-wishlist-panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.nk-wishlist-empty {
  text-align: center;
  padding: 60px 20px;
}

.nk-wishlist-empty i {
  font-size: 3rem;
  color: var(--color-grey);
  margin-bottom: 15px;
  display: block;
}

.nk-wishlist-empty p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--color-blue-dark);
}

/* Wishlist Item */
.nk-wishlist-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 12px;
  align-items: center;
  transition: all 0.3s ease;
}

.nk-wishlist-item:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.nk-wishlist-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.nk-wishlist-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nk-wishlist-item-info {
  flex: 1;
  min-width: 0;
}

.nk-wishlist-item-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nk-wishlist-item-title:hover {
  color: var(--color-orange);
}

.nk-wishlist-item-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-blue);
  margin-top: 4px;
}

.nk-wishlist-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nk-wishlist-item-actions button,
.nk-wishlist-item-actions a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  text-decoration: none;
}

.nk-wishlist-add-to-cart,
.nk-wishlist-item-actions a.nk-add-to-cart {
  background: var(--color-magenta);
  color: var(--color-white);
  flex: none;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 50%;
}

.nk-wishlist-add-to-cart:hover,
.nk-wishlist-item-actions a.nk-add-to-cart:hover {
  background: var(--color-orange);
}

.nk-wishlist-remove {
  background: transparent;
  color: var(--color-grey);
}

.nk-wishlist-remove:hover {
  background: rgba(var(--color-red-rgb), 0.1);
  color: var(--color-red);
}


/* ==========================================================================
   10. CHECKOUT PAGE
   ========================================================================== */
#wc-guest-checkout-notice {display:none!important}

/* WC Blocks checkout — overall container */
.wp-block-woocommerce-checkout .wc-block-checkout__main {
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
  background: var(--color-white);
  padding:30px;
  border-radius:30px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2)
}

/* WC Blocks checkout — form sections (contact, shipping, billing, payment) */
.wc-block-checkout .wc-block-components-checkout-step {
  border-color: var(--color-grey) !important;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

/* WC Blocks checkout — section content containers */
.wc-block-checkout .wp-block-woocommerce-checkout-shipping-address-block,
.wc-block-checkout .wp-block-woocommerce-checkout-billing-address-block,
.wc-block-checkout .wp-block-woocommerce-checkout-contact-information-block {
  font-family: 'Quicksand', sans-serif;
}

/* WC Blocks checkout — address card (saved address display) */
.wc-block-checkout .wc-block-components-address-card {
  background: var(--color-white) !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 18px 20px !important;
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
}
.wc-block-checkout .wc-block-components-address-card__edit {
  color: var(--color-blue) !important;
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  transition: color 0.2s ease !important;
}
.wc-block-checkout .wc-block-components-address-card__edit:hover {
  color: var(--color-orange) !important;
}

/* WC Blocks checkout — checkbox styling */
.wc-block-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
  accent-color: var(--color-magenta) !important;
}

/* WC Blocks checkout — shipping options header */
.wc-block-checkout .wc-block-components-shipping-rates-control__package .wc-block-components-title {
  font-family: 'Francois One', sans-serif !important;
  color: var(--color-blue-dark) !important;
  letter-spacing: 1px !important;
}

/* WC Blocks checkout – "wybierz punkt odbioru" button */
.wc-block-checkout .wc-block-components-button:not(.wc-block-components-checkout-place-order-button) {
  background: var(--color-magenta) !important;
  border: none !important;
  border-radius: 28px !important;
  font-family: 'Francois One', sans-serif !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--color-white) !important;
  transition: background 0.3s ease !important;
  height: 50px !important;
}
.wc-block-checkout .wc-block-components-button:not(.wc-block-components-checkout-place-order-button):hover {
  background: var(--color-orange) !important;
}

/* WC Blocks checkout — payment methods wrapper */
.wc-block-checkout .wc-block-components-payment-method-icons {
  filter: grayscale(0.3);
}

/* WC Blocks checkout — terms & conditions */
.wc-block-checkout .wc-block-checkout__terms {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.85rem !important;
  color: var(--color-grey-dark) !important;
}
.wc-block-checkout .wc-block-checkout__terms a {
  color: var(--color-blue) !important;
}

/* WC Blocks checkout — express payment */
.wc-block-checkout .wc-block-components-express-payment {
  border-color: var(--color-grey) !important;
}
.wc-block-checkout .wc-block-components-express-payment__title {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-grey-dark) !important;
}

/* WC Blocks checkout — error/validation messages */
.wc-block-checkout .wc-block-components-validation-error {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-red) !important;
  font-size: 0.8rem !important;
}

/* WC Blocks checkout — general text */
.wc-block-checkout p,
.wc-block-checkout span,
.wc-block-checkout label {
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
}

/* WC Blocks — store notices */
.wc-block-components-notice-banner {
  background: var(--color-white) !important;
  border-radius: 12px !important;
  border: none !important;
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
  padding: 15px 20px !important;
  margin-bottom: 20px !important;
}
.wc-block-components-notice-banner.is-success {
  border-left: 4px solid var(--color-green) !important;
}
.wc-block-components-notice-banner.is-info {
  border-left: 4px solid var(--color-blue) !important;
}
.wc-block-components-notice-banner.is-error {
  border-left: 4px solid var(--color-red) !important;
}

/* WC Blocks checkout — restyle inputs to match theme */
.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 2px solid var(--color-grey) !important;
  border-radius: 16px !important;
  box-sizing: border-box;
  color: var(--color-blue-dark) !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.95rem !important;
  height: 52px !important;
  line-height: 25px;
  margin: 0;
  min-height: 0;
  padding: 16px 18px !important;
  width: 100%;
  transition: border-color 0.2s ease !important;
}
.wc-block-components-form .wc-block-components-text-input input:focus,
.wc-block-components-text-input input:focus {
  border-color: var(--color-blue-dark) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* WC Blocks floating label */
.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
  color: var(--color-blue-dark) !important;
  cursor: text;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  left: 18px !important;
  letter-spacing: inherit;
  line-height: 22px;
  margin: 0;
  max-width: calc(100% - 36px);
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 26px;
  transform: translateY(-50%);
  transform-origin: top left;
  transition: all 0.2s ease;
}

/* WC Blocks checkout step headings */
.wc-block-components-checkout-step__heading {
  font-family: 'Francois One', sans-serif !important;
  color: var(--color-blue-dark) !important;
  letter-spacing: 1px !important;
  font-size: 1.2rem !important;
}
.wc-block-components-checkout-step__heading-step-number {
  background: var(--color-orange) !important;
  border-color: var(--color-orange) !important;
  color: var(--color-white) !important;
}

/* WC Blocks – order summary sidebar */
.wp-block-woocommerce-checkout-order-summary-block {
  background: var(--color-white) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2) !important;
  overflow: hidden !important;
  padding: 25px !important;
}
.wc-block-components-order-summary__button-text {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-blue-dark) !important;
}
.wc-block-components-order-summary__button {
  border-bottom-color: var(--color-grey) !important;
}

/* WC Blocks – totals rows */
.wc-block-components-totals-item {
  border-color: var(--color-grey) !important;
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
}
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
  color: var(--color-blue-dark) !important;
  font-family: 'Quicksand', sans-serif !important;
}
.wc-block-components-totals-footer-item {
  font-family: 'Francois One', sans-serif !important;
  font-size: 1.15rem !important;
  border-top: 0px solid var(--color-grey) !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--color-blue) !important;
}

/* WC Blocks – place order button */
.wc-block-components-checkout-place-order-button {
  background: var(--color-magenta) !important;
  border: none !important;
  border-radius: 28px !important;
  font-family: 'Francois One', sans-serif !important;
  font-size: 1rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  transition: background 0.3s ease !important;
  height: 56px !important;
  width: 100% !important;
}
.wc-block-components-checkout-place-order-button:hover {
  background: var(--color-orange) !important;
}

/* WC Blocks – radio options (shipping & payment)
   Reset all default WC outlines/borders, keep only one clean border */
.wc-block-components-radio-control__option {
  border: 2px solid var(--color-grey) !important;
  border-radius: 16px !important;
  padding: 14px 18px 14px 46px !important;  /* extra left padding for absolute-positioned radio input */
  margin-bottom: 10px !important;
  transition: border-color 0.2s ease !important;
  outline: none !important;
  box-shadow: none !important;
  background: var(--color-white) !important;
}
.wc-block-components-radio-control__option::after,
.wc-block-components-radio-control__option::before {
  display: none !important;
}
.wc-block-components-radio-control__option:hover {
  border-color: var(--color-magenta) !important;
}
.wc-block-components-radio-control__option-checked,
.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked {
  border-color: var(--color-blue-dark) !important;
  background: var(--color-sand) !important;
  outline: none !important;
  box-shadow: none !important;
}
.wc-block-components-radio-control__input {
  accent-color: var(--color-magenta) !important;
}
.wc-block-components-radio-control__input:checked {
  accent-color: var(--color-magenta) !important;
}
/* Remove any wrapper-level outlines/borders from WC Blocks */
.wc-block-components-radio-control,
.wc-block-components-radio-control__option-layout,
.wc-block-components-shipping-rates-control,
.wc-block-components-shipping-rates-control__package,
.wc-block-components-shipping-rates-control__package__description,
.wc-block-checkout__shipping-option,
.wc-block-checkout__payment-method,
.wp-block-woocommerce-checkout-shipping-methods-block,
.wp-block-woocommerce-checkout-payment-block {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* Kill the highlight-checked ::after pseudo that draws extra border around all options */
.wc-block-components-radio-control--highlight-checked::after {
  display: none !important;
}
/* Payment method accordion wrappers — kill inset box-shadow border */
.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
/* Payment method list — no extra borders on wrapper */
.wc-block-components-payment-method-label,
.wc-block-components-payment-method-label__container {
  border: none !important;
  outline: none !important;
}

/* WC Blocks – country/state combobox */
.wc-block-components-country-input,
.wc-block-components-state-input,
.wc-block-components-combobox {
  border-radius: 16px !important;
  overflow: hidden !important;
}
.wc-block-components-country-input .wc-block-components-combobox input,
.wc-block-components-state-input .wc-block-components-combobox input,
.wc-block-components-combobox input {
  border: 2px solid var(--color-grey) !important;
  border-radius: 16px !important;
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
  padding: 14px 18px !important;
}
.wc-block-components-country-input .wc-block-components-combobox input:focus,
.wc-block-components-state-input .wc-block-components-combobox input:focus {
  border-color: var(--color-blue-dark) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* WC Blocks – checkbox */
.wc-block-components-checkbox .wc-block-components-checkbox__input {
  accent-color: var(--color-magenta) !important;
}
.wc-block-components-checkbox__label {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
  font-size: 0.9rem !important;
}

/* WC Blocks – coupon button */
.wc-block-components-totals-coupon__button {
  background: var(--color-blue) !important;
  border-radius: 20px !important;
  font-family: 'Francois One', sans-serif !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: background 0.3s ease !important;
}
.wc-block-components-totals-coupon__button:hover {
  background: var(--color-orange) !important;
}
.wc-block-components-totals-coupon__form input {
  border: 2px solid var(--color-grey) !important;
  border-radius: 16px !important;
  font-family: 'Quicksand', sans-serif !important;
  padding: 10px 16px !important;
}

/* WC Blocks – privacy notice */
.wc-block-checkout__privacy-policy {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.85rem !important;
  color: var(--color-grey-dark) !important;
}
.wc-block-checkout__privacy-policy a {
  color: var(--color-blue) !important;
}

/* Classic checkout – col2-set two-column layout */
@media (min-width: 769px) {
  .woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    margin-bottom: 0;
  }
}

/* Classic checkout – collapsible login & coupon notices */
.woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-form-coupon-toggle .woocommerce-info {
  cursor: pointer;
}
.woocommerce-form-login,
.woocommerce-form-coupon {
  background: var(--color-white);
  border-radius: 30px;
  padding: 25px 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}
.woocommerce-form-login p,
.woocommerce-form-coupon p {
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
  margin-bottom: 15px;
}
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-coupon input[type="text"] {
  width: 100%;
  padding: 10px 18px;
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--color-blue-dark);
  background: transparent;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.woocommerce-form-login input:focus,
.woocommerce-form-coupon input:focus {
  border-color: var(--color-blue-dark);
  outline: none;
}

/* Select2 (classic checkout country/state dropdowns) */
.select2-container--default .select2-selection--single {
  height: 50px !important;
  border: 2px solid var(--color-grey) !important;
  border-radius: 20px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  transition: border-color 0.2s ease !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px !important;
  padding-left: 18px !important;
  padding-right: 40px !important;
  color: var(--color-blue-dark) !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.95rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
  right: 15px !important;
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--color-blue-dark) !important;
}
.select2-dropdown {
  border: 1px solid rgba(var(--color-magenta-rgb), 0.3) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  font-family: 'Quicksand', sans-serif !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}
.select2-container--default .select2-results__option {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
  padding: 10px 18px !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: var(--color-magenta) !important;
  color: var(--color-white) !important;
}
.select2-search--dropdown .select2-search__field {
  border: 1px solid var(--color-grey) !important;
  border-radius: 10px !important;
  font-family: 'Quicksand', sans-serif !important;
  padding: 8px 12px !important;
  color: var(--color-blue-dark) !important;
}
.wc-block-components-totals-wrapper:empty, .wc-block-components-totals-wrapper:has(>:only-child:empty) {
    border-width: 0;
    padding: 0;
    display: none;
}
/* Szablon "Strona WooCommerce" */
.nk-woo-page {
  background: var(--color-sand);
  position: relative;
  width: 100%;
  z-index: 5;
  min-height: 60vh;
  /* Push content below fixed header (80px) + fixed shop nav (56px) = 136px */
  padding-top: 136px;
}

/* When admin bar visible: 32px extra on desktop, 46px on mobile */
.admin-bar .nk-woo-page {
  padding-top: 168px; /* 32px admin bar + 80px header + 56px shop nav */
}
@media screen and (max-width: 782px) {
  .admin-bar .nk-woo-page {
    padding-top: 182px; /* 46px admin bar + 80px header + 56px shop nav */
  }
}

.nk-woo-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 15px 80px;
}
.nk-woo-page__inner h1 {
  font-family: 'Francois One', sans-serif;
  color: var(--color-blue-dark);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
}

/* WooCommerce order received / thankyou page */
.nk-woo-page .woocommerce-order {
  color: var(--color-blue-dark);
}
.nk-woo-page .woocommerce-order h2 {
  font-family: 'Francois One', sans-serif;
  font-size: 1.4rem;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
  margin: 30px 0 15px;
}
.nk-woo-page .woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
}
.nk-woo-page .woocommerce-order ul.order_details {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  background: var(--color-white);
  border-radius: 30px;
  padding: 20px 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}
.nk-woo-page .woocommerce-order ul.order_details li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-grey);
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
}
.nk-woo-page .woocommerce-order ul.order_details li:last-child {
  border-bottom: none;
}
.nk-woo-page .woocommerce-order table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}
.nk-woo-page .woocommerce-order table.shop_table th,
.nk-woo-page .woocommerce-order table.shop_table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-grey);
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
  text-align: left;
}
.nk-woo-page .woocommerce-order table.shop_table th {
  font-weight: 700;
}
.nk-woo-page .woocommerce-order address {
  font-style: normal;
  line-height: 1.6;
  color: var(--color-blue-dark);
}

/* WooCommerce block checkout — constrain width */
.wp-block-woocommerce-checkout {
  max-width: 1100px;
  margin: 0 auto;
}

/* Legacy shortcode checkout */
form.woocommerce-checkout {
  max-width: 800px;
  margin: 0 auto;
}

.woocommerce-checkout h3 {
  font-family: 'Francois One', sans-serif;
  font-size: 1.5rem;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}

.woocommerce-checkout .form-row {
  margin-bottom: 15px;
}

.woocommerce-checkout .form-row label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-blue-dark);
  margin-bottom: 6px;
  display: block;
}

.woocommerce-checkout .form-row .required {
  color: var(--color-red);
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  width: 100%;
  padding: 10px 18px;
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  line-height: 30px;
  color: var(--color-blue-dark);
  background: rgba(255, 255, 255, 0);
  transition: var(--default-transition);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  border: 2px solid var(--color-blue-dark);
  outline: none;
}

.woocommerce-checkout .form-row input.input-text:not(:placeholder-shown),
.woocommerce-checkout .form-row textarea:not(:placeholder-shown) {
  border: 2px solid var(--color-blue-dark);
}

.woocommerce-checkout .form-row input.input-text::placeholder {
  color: var(--color-grey);
}

/* Order Review Table */
.woocommerce-checkout #order_review_heading {
  font-family: 'Francois One', sans-serif;
  font-size: 1.5rem;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-grey);
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
  font-weight: 700;
  text-align: left;
}

.woocommerce-checkout .order-total td {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-blue);
}

/* Payment Methods */
.woocommerce-checkout .wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-checkout .wc_payment_method {
  background: var(--color-white);
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 10px;
  transition: var(--default-transition);
}

.woocommerce-checkout .wc_payment_method:hover,
.woocommerce-checkout .wc_payment_method.active {
  border: 2px solid var(--color-blue-dark);
}

.woocommerce-checkout .wc_payment_method label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue-dark);
}

.woocommerce-checkout .payment_box {
  padding: 10px 0 0 30px;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  opacity: 0.7;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
  width: 100%;
  height: 56px;
  background: var(--color-magenta);
  color: var(--color-white);
  border: none;
  border-radius: 28px;
  font-family: 'Francois One', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.woocommerce-checkout #place_order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  z-index: -1;
  transform: translateY(105%);
  transition: transform 0.4s ease-out;
  border-radius: 28px;
}

.woocommerce-checkout #place_order:hover::before {
  transform: translateY(0);
}

.woocommerce-checkout #place_order:hover {
  color: var(--color-white);
}

.wc-block-components-quantity-selector {
  width:130px;
}
/* ==========================================================================
   11. CART PAGE
   ========================================================================== */

.woocommerce-cart .woocommerce-cart-form {
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}

.woocommerce-cart .shop_table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--color-grey);
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
  vertical-align: middle;
}

.woocommerce-cart .shop_table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.woocommerce-cart .product-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.woocommerce-cart .product-name a {
  color: var(--color-blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
  color: var(--color-orange);
}

.woocommerce-cart .product-remove a {
  color: var(--color-grey) !important;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.woocommerce-cart .product-remove a:hover {
  color: var(--color-red) !important;
}

.woocommerce-cart .cart-collaterals {
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}

.woocommerce-cart .cart_totals h2 {
  font-family: 'Francois One', sans-serif;
  font-size: 1.3rem;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  position: relative;
  background: none;
  background-color: var(--color-magenta);
  color: var(--color-white);
  border-radius: 30px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-orange);
  border-radius: 0 0 50% 50%;
  z-index: -1;
  transform: translateY(-105%);
  transition: all 0.4s ease-out;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover::before {
  transform: translateY(0);
  border-radius: 0 0 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  color: var(--color-white);
}

.woocommerce-cart .quantity input.qty {
  width: 50px;
  text-align: center;
  padding: 8px;
  border: 2px solid var(--color-grey);
  border-radius: 15px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  transition: var(--default-transition);
}
.woocommerce-cart .quantity input.qty:focus {
  border: 2px solid var(--color-blue-dark);
  outline: none;
}

.woocommerce-cart button[name="update_cart"] {
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  padding: 10px 24px !important;
  border-radius: 25px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.woocommerce-cart button[name="update_cart"]:hover {
  background: var(--color-orange);
}

/* Coupon field */
.woocommerce-cart .coupon {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.woocommerce-cart .coupon label {
  display: none;
}
.woocommerce-cart .coupon #coupon_code {
  flex: 1;
  max-width: 220px;
  padding: 10px 16px;
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  transition: var(--default-transition);
}
.woocommerce-cart .coupon #coupon_code:focus {
  border: 2px solid var(--color-blue-dark);
  outline: none;
}
.woocommerce-cart .coupon button {
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  padding: 10px 20px !important;
  border-radius: 25px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.woocommerce-cart .coupon button:hover {
  background: var(--color-orange);
}

/* Cart totals table */
.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-grey);
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
}
.woocommerce-cart .cart_totals table th {
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-cart .cart_totals .order-total td {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-blue);
}
.woocommerce-cart .cart_totals .order-total td .amount {
  color: var(--color-blue);
}

/* Shipping calculator */
.woocommerce-cart .shipping-calculator-button {
  display: inline-block;
  color: var(--color-blue);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.2s ease;
}
.woocommerce-cart .shipping-calculator-button:hover {
  color: var(--color-orange);
}
.woocommerce-cart .shipping-calculator-button::after {
  content: ' ›';
}
.woocommerce-cart .shipping-calculator-form {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--color-grey);
}
.woocommerce-cart .shipping-calculator-form p {
  margin-bottom: 10px;
}
.woocommerce-cart .shipping-calculator-form select,
.woocommerce-cart .shipping-calculator-form input[type="text"],
.woocommerce-cart .shipping-calculator-form input[type="number"] {
  width: 100%;
  padding: 10px 18px;
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  background: transparent;
  box-sizing: border-box;
  appearance: auto;
}
.woocommerce-cart .shipping-calculator-form select:focus,
.woocommerce-cart .shipping-calculator-form input:focus {
  border-color: var(--color-blue-dark);
  outline: none;
}

/* Shipping methods list in cart totals */
.woocommerce-cart .woocommerce-shipping-methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 10px !important;
}
.woocommerce-cart .woocommerce-shipping-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
  font-size: 0.9rem;
}
.woocommerce-cart .woocommerce-shipping-methods input[type="radio"] {
  accent-color: var(--color-magenta);
  width: auto;
}

/* Cross-sells section */
.woocommerce-cart .cross-sells {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px dashed var(--color-grey);
}
.woocommerce-cart .cross-sells > h2 {
  font-family: 'Francois One', sans-serif;
  color: var(--color-blue-dark);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Actions row alignment */
.woocommerce-cart .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
}

/* Generic WooCommerce buttons inside nk-woo-page — uses boxed-link style */
.nk-woo-page .button,
.nk-woo-page a.button,
.nk-woo-page button.button,
.nk-woo-page input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 25px;
  position: relative;
  font-size: 0.9em;
  letter-spacing: 2px;
  height: 60px;
  font-family: 'Francois One', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 20px;
  cursor: pointer;
  border: 0;
  background: none;
  background-color: var(--color-magenta)!important;
  color: var(--color-white) !important;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
      max-width: max-content;
    box-shadow: none !important;
}
.nk-woo-page .button::before,
.nk-woo-page a.button::before,
.nk-woo-page button.button::before,
.nk-woo-page input.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-orange);
  border-radius: 0 0 50% 50%;
  z-index: -1;
  transform: translateY(-105%);
  transition: all 0.4s ease-out;
}
.nk-woo-page .button:hover::before,
.nk-woo-page a.button:hover::before,
.nk-woo-page button.button:hover::before,
.nk-woo-page input.button:hover::before {
  transform: translateY(0);
  border-radius: 0 0 0 0;
}
.nk-woo-page .button:hover,
.nk-woo-page a.button:hover,
.nk-woo-page button.button:hover,
.nk-woo-page input.button:hover {
  color: var(--color-white) !important;
  cursor: pointer;
}

/* WooCommerce tables in nk-woo-page (cart, order, account) */
.nk-woo-page table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}
.nk-woo-page table.shop_table th,
.nk-woo-page table.shop_table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--color-grey);
  font-family: 'Quicksand', sans-serif;
  color: var(--color-blue-dark);
  vertical-align: middle;
}
.nk-woo-page table.shop_table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* WooCommerce form fields in nk-woo-page — matching contact page style */
.nk-woo-page input[type="text"],
.nk-woo-page input[type="email"],
.nk-woo-page input[type="tel"],
.nk-woo-page input[type="number"],
.nk-woo-page input[type="password"],
.nk-woo-page textarea,
.nk-woo-page select {
  width: 100%;
  padding: 10px 18px;
  border: 2px solid var(--color-grey);
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  line-height: 30px;
  color: var(--color-blue-dark);
  background: rgba(255, 255, 255, 0);
  transition: var(--default-transition);
  box-sizing: border-box;
}
.nk-woo-page input:focus,
.nk-woo-page textarea:focus,
.nk-woo-page select:focus {
  border: 2px solid var(--color-blue-dark);
  outline: none;
}
.nk-woo-page input:not(:placeholder-shown),
.nk-woo-page textarea:not(:placeholder-shown),
.nk-woo-page select:not([value=""]) {
  border: 2px solid var(--color-blue-dark);
  border-radius:16px;
}

/* WooCommerce sections inside nk-woo-page */
.nk-woo-page .woocommerce-billing-fields,
.nk-woo-page .woocommerce-shipping-fields,
.nk-woo-page .woocommerce-checkout-review-order,
.nk-woo-page .woocommerce-cart-form,
.nk-woo-page .cart-collaterals {
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}

/* Headings in nk-woo-page */
.nk-woo-page h2,
.nk-woo-page h3 {
  font-family: 'Francois One', sans-serif;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
}

/* Links inside nk-woo-page */
.nk-woo-page a {
  color: var(--color-blue);
  transition: color 0.2s ease;
}
.nk-woo-page a:hover {
  color: var(--color-orange);
}

/* Addresses (thank you page, my account) */
.nk-woo-page address {
  font-style: normal;
  line-height: 1.6;
  color: var(--color-blue-dark);
  background: var(--color-white);
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}



/* ==========================================================================
   11b. CART PAGE — WC BLOCKS
   ========================================================================== */
   .wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label, .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input input:-webkit-autofill+label, .wc-block-components-text-input.is-active label {
    top: 3px;
    transform: scale(.7)!important;
}

/* Block cart – outer wrapper constrain */
.wp-block-woocommerce-cart {
  max-width: 1100px;
  margin: 0 auto;
}

/* Block cart – main table area */
.wc-block-cart .wc-block-cart-items {
  background: var(--color-white)!important;
  border-radius: 30px;
  padding: 25px 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2);
}

/* Block cart – table header */
.wc-block-cart .wc-block-cart-items__header {
  font-family: 'Francois One', sans-serif;
  color: var(--color-blue-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 12px;
}
.wc-block-cart .wc-block-cart-items__header span {
  font-family: 'Francois One', sans-serif !important;
  color: var(--color-blue-dark) !important;
}

/* Block cart – item rows */
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row {
  border-bottom: 1px solid var(--color-grey);
  padding: 20px 0;
}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row:last-child {
  border-bottom: none;
}

/* Block cart – product image */
.wc-block-cart .wc-block-cart-item__image img {
  border-radius: 12px !important;
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
}

/* Block cart – product name */
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-name {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-blue-dark) !important;
  text-decoration: none !important;
  font-size: 1rem !important;
}
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-name:hover {
  color: var(--color-orange) !important;
}

/* Block cart – product price */
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-price,
.wc-block-cart .wc-block-components-product-price {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  color: var(--color-blue) !important;
}

/* Block cart – product metadata */
.wc-block-cart .wc-block-components-product-metadata {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-grey-dark) !important;
  font-size: 0.85rem !important;
}

/* Block cart – quantity selector (matches single-product .nk-qty-wrapper) */
.wc-block-cart .wc-block-components-quantity-selector {
  border: 2px solid var(--color-grey) !important;
  border-radius: 25px !important;
  overflow: hidden !important;
  background: var(--color-white) !important;
  height: 50px !important;
  width: 132px !important;
  box-shadow: none !important;
}
.wc-block-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--color-blue-dark) !important;
  background: transparent !important;
  border: none !important;
  width: 44px !important;
  text-align: center !important;
  padding: 0 !important;
  -moz-appearance: textfield !important;
}
.wc-block-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input::-webkit-outer-spin-button,
.wc-block-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.wc-block-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  width: 44px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--color-blue-dark) !important;
  background: none !important;
  border: none !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}
.wc-block-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
}

/* Block cart – remove item button */
.wc-block-cart .wc-block-cart-item__remove-link {
  color: var(--color-grey-dark) !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.wc-block-cart .wc-block-cart-item__remove-link:hover {
  color: var(--color-red) !important;
}

/* Block cart – totals sidebar */
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart .wc-block-cart__totals-title {
  font-family: 'Francois One', sans-serif !important;
  color: var(--color-blue-dark) !important;
  font-size: 1rem !important;
}

.wc-block-cart .wc-block-components-totals-wrapper {
  border-color: var(--color-grey) !important;
}

.wc-block-cart .wc-block-components-totals-item {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
}
.wc-block-cart .wc-block-components-totals-item__label,
.wc-block-cart .wc-block-components-totals-item__value {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
}

.wc-block-cart .wc-block-components-totals-footer-item {
  font-family: 'Francois One', sans-serif !important;
  font-size: 1.15rem !important;
  border-top: none !important;
}
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--color-blue) !important;
  font-family: 'Francois One', sans-serif !important;
}

/* Block cart – totals sidebar container */
.wc-block-cart .wp-block-woocommerce-cart-totals-block {
  background: var(--color-white) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(var(--color-orange-rgb), 0.2) !important;
  padding: 25px !important;
  overflow: hidden !important;
}

/* Block cart – shipping section */
.wc-block-cart .wc-block-components-shipping-rates-control__package {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
}
/* Cart shipping radio — inherits global radio styles above, no extra borders */
.wc-block-cart .wc-block-components-radio-control__label,
.wc-block-cart .wc-block-components-radio-control__description,
.wc-block-cart .wc-block-components-radio-control__secondary-label,
.wc-block-cart .wc-block-components-radio-control__secondary-description {
  font-family: 'Quicksand', sans-serif !important;
  color: var(--color-blue-dark) !important;
}

/* Block cart – coupon / discount */
.wc-block-cart .wc-block-components-totals-coupon__button {
  background: var(--color-blue) !important;
  border-radius: 20px !important;
  font-family: 'Francois One', sans-serif !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: background 0.3s ease !important;
  color: var(--color-white) !important;
}
.wc-block-cart .wc-block-components-totals-coupon__button:hover {
  background: var(--color-orange) !important;
}
.wc-block-cart .wc-block-components-totals-coupon__form input {
  border: 2px solid var(--color-grey) !important;
  border-radius: 16px !important;
  font-family: 'Quicksand', sans-serif !important;
  padding: 10px 16px !important;
  color: var(--color-blue-dark) !important;
}
.wc-block-cart .wc-block-components-totals-coupon__form input:focus {
  border-color: var(--color-blue-dark) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Block cart – proceed to checkout button */
.wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button,
.wc-block-cart .wc-block-components-checkout-place-order-button,
.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 60px !important;
  background: var(--color-magenta) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 30px !important;
  font-family: 'Francois One', sans-serif !important;
  font-size: 0.9em !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
  text-decoration: none !important;
}
.wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button:hover,
.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button:hover {
  background: var(--color-orange) !important;
}

/* Block cart – empty cart */
.wc-block-cart .wc-block-cart__empty-cart__title {
  font-family: 'Francois One', sans-serif !important;
  color: var(--color-blue-dark) !important;
  letter-spacing: 1px !important;
}

/* Block cart – general links */
.wc-block-cart a {
  color: var(--color-blue) !important;
  transition: color 0.2s ease !important;
}
.wc-block-cart a:hover {
  color: var(--color-orange) !important;
}

/* Block cart – total amount in sidebar */
.wc-block-cart .wc-block-cart__totals-title {
  font-size: 1.3rem !important;
  margin-bottom: 10px !important;
}
.wc-block-components-totals-wrapper {
padding:10px 0!important;
}
/* ==========================================================================
   12. NOTICES & MESSAGES
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--color-white);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  list-style: none;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-message {
  border-left: 4px solid var(--color-green);
  color: var(--color-blue-dark);
}

.woocommerce-info {
  border-left: 4px solid var(--color-blue);
  color: var(--color-blue-dark);
}

.woocommerce-error {
  border-left: 4px solid var(--color-red);
  color: var(--color-blue-dark);
}

.woocommerce-error li {
  list-style: none;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  background: var(--color-magenta);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Francois One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover {
  background: var(--color-orange);
}

/* Toast notification */
.nk-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-blue-dark);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 99999;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.nk-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nk-toast.success {
  background: var(--color-green);
}

.nk-toast.error {
  background: var(--color-red);
}


/* ==========================================================================
   13. PAGINATION
   ========================================================================== */

.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

.woocommerce-pagination .page-numbers li {
  margin: 0;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--color-white);
}

.woocommerce-pagination .page-numbers li a:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.woocommerce-pagination .page-numbers li span.current {
  background: var(--color-magenta);
  color: var(--color-white);
}


/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .nk-shop-main .products,
  ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .single-product div.product {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  /* Shop header row stacks on mobile */
  .nk-shop-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .nk-shop-header-row .nk-shop-title {
    font-size: 1.5rem;
  }

  .nk-shop-nav {
    top: 81px;
  }

  .nk-shop-nav-inner {
    height: 50px;
    gap: 2px;
  }

  .nk-shop-nav-btn span {
    display: none;
  }

  .nk-shop-nav-btn {
    padding: 8px 10px;
  }

  .nk-search-form-wrapper.active {
    width: 250px;
  }

  .nk-categories-dropdown-panel {
    left: -10px;
    right: auto;
    min-width: 250px;
  }

  .nk-shop-main .products,
  ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .nk-product-info {
    padding: 12px 14px 8px;
  }

  .nk-product-title {
    font-size: 1rem;
  }

  .nk-product-actions {
    padding: 8px 14px 14px;
  }

  .nk-add-to-cart {
    font-size: 0.75rem;
    height: 38px;
    letter-spacing: 0.5px;
  }

  .nk-wishlist-toggle {
    width: 38px;
    height: 38px;
  }

  /* Single product */
  .single-product div.product {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-product .product_title {
    font-size: 1.6rem;
  }

  .single-product .price {
    font-size: 1.4rem;
  }

  /* Cart form stacks on mobile */
  .single-product .cart {
    flex-wrap: wrap;
  }
  .single-product .single_add_to_cart_button {
    flex: 1 1 100%;
    min-width: 0;
  }
  .single-product .nk-qty-wrapper {
    flex: 0 0 auto;
  }

  /* Wishlist button — icon only on small screens */
  .nk-wishlist-single span {
    display: none;
  }
  .nk-wishlist-single {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .nk-wishlist-single i {
    font-size: 1.1rem;
  }

  /* Slide-out cart */
  .nk-slide-cart {
    width: 100%;
    max-width: 100vw;
  }

  .nk-wishlist-panel {
    width: 100%;
    max-width: 100vw;
  }

  /* Shop filters */
  .nk-shop-filters.controls-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .nk-shop-filters .control-group {
    flex-direction: column;
    align-items: stretch;
  }

  .nk-shop-filters .custom-dropdown {
    min-width: 100%;
  }

  /* WooCommerce page template */
  .nk-woo-page__inner {
    padding: 30px 15px 40px;
  }
  .nk-woo-page__inner h1 {
    font-size: 1.5rem;
  }
  .nk-woo-page .woocommerce-billing-fields,
  .nk-woo-page .woocommerce-shipping-fields,
  .nk-woo-page .woocommerce-checkout-review-order,
  .nk-woo-page .woocommerce-cart-form,
  .nk-woo-page .cart-collaterals {
    padding: 20px;
  }
  .nk-woo-page .coupon {
    flex-direction: column;
    align-items: stretch;
  }
  .nk-woo-page .coupon #coupon_code {
    max-width: 100%;
  }
  .nk-woo-page .actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Checkout */
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-checkout-review-order {
    padding: 20px;
  }

  /* Cart page */
  .woocommerce-cart .shop_table thead {
    display: none;
  }

  .woocommerce-cart .shop_table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-grey);
    align-items: center;
    gap: 10px;
  }

  .woocommerce-cart .shop_table td {
    border: none;
    padding: 5px;
  }

  .woocommerce-cart .product-thumbnail {
    flex: 0 0 60px;
  }

  .woocommerce-cart .product-name {
    flex: 1;
  }

  /* Cart actions + coupon on mobile */
  .woocommerce-cart .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
  }
  .woocommerce-cart .coupon #coupon_code {
    max-width: 100%;
  }

  /* WC Blocks checkout mobile */
  .woocommerce-form-login,
  .woocommerce-form-coupon {
    padding: 20px;
  }

  /* WC Blocks cart mobile */
  .wc-block-cart .wc-block-cart-items {
    padding: 15px 18px;
    border-radius: 20px;
  }
  .wc-block-cart .wc-block-cart-item__image img {
    width: 60px !important;
    height: 60px !important;
  }
  .wc-block-cart .wp-block-woocommerce-cart-totals-block {
    padding: 20px !important;
    border-radius: 20px !important;
  }
  .wc-block-cart .wc-block-cart__submit-container .wc-block-cart__submit-button,
  .wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button {
    height: 54px !important;
    border-radius: 27px !important;
  }

  /* WC Blocks checkout mobile */
  .wp-block-woocommerce-checkout-order-summary-block {
    padding: 20px !important;
    border-radius: 20px !important;
  }
  .wc-block-components-checkout-place-order-button {
    height: 50px !important;
    border-radius: 25px !important;
  }

}

@media (max-width: 480px) {
  .nk-shop-main .products,
  ul.products {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nk-product-image-wrapper {
    padding-top: 75%; /* Wider aspect ratio on mobile */
  }

  .nk-woo-page__inner {
    padding: 20px 12px 60px;
  }

}
.wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text {
    align-items: center;
    display: flex;
    color: var(--color-white);
}