/** Shopify CDN: Minification failed

Line 107:0 Unexpected "}"

**/
/* BUTTON BASE */
.gokwik-btn {
  width: 100%;
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  border: none;
  padding: 14px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER EFFECT (PREMIUM FEEL) */
.gokwik-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* MAIN CONTAINER (VERTICAL STACK) */
.gokwik-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* TOP ROW (BUY NOW + ICONS) */
.gokwik-row-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* BUY NOW TEXT */
.gokwik-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* BIGGER ICON */
.gokwik-icon {
  height: 22px;
  transform: scale(1.1);
}

/* ARROW */
.gokwik-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ARROW ANIMATION */
.gokwik-btn:hover .gokwik-arrow {
  transform: translateX(4px);
}

/* SUBTEXT (BOTTOM LINE) */
.gokwik-row-bottom {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
  text-align: center;
}

/* GRADIENT HIGHLIGHT ONLY ON 10% */
.highlight {
  font-weight: 700;

  background: linear-gradient(90deg, #ff6a00, #ff3c83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* OPTIONAL: FULL TEXT SLIGHT DIM */
.gokwik-row-bottom {
  color: #ccc;
}

/* LOADER FIX */
.addloadr {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .gokwik-title {
    font-size: 14px;
  }

  .gokwik-row-bottom {
    font-size: 11px;
  }

  .gokwik-icon {
    height: 20px;
  }
}
}

/* 🔥 Glow hover */
#gokwik-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ===== LEFT CONTENT ===== */
.gokwik-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Main text */
.gokwik-title {
  font-size: 13px;
  color: #ffffff !important;
}

/* Sub text */
.gokwik-sub {
  font-size: 11px;
  color: #22c55e !important; /* green for conversion */
  margin-top: 2px;
}

/* ===== RIGHT CONTENT ===== */
.gokwik-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icons */
.gokwik-icons img {
  height: 24px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}

/* 👉 Animated Arrow */
.gokwik-arrow {
  font-size: 16px;
  animation: arrowMove 1s infinite;
}

@keyframes arrowMove {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* 🔥 URGENCY BADGE */
.gokwik-badge {
  position: absolute;
  top: -6px;
  right: -6px;

  background: #ef4444;
  color: #fff;
  font-size: 9px;
  padding: 4px 6px;
  border-radius: 4px;

  animation: pulse 1.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* 🔥 Shine effect */
#gokwik-buy-now::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Disabled */
#gokwik-buy-now.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* MOBILE LEFT ALIGN EVERYTHING */
@media screen and (max-width: 768px) {

  .product-single__title,
  .product__price,
  .product-block--price,
  .product-form__input,
  .product-form,
  .shopify-product-reviews-badge,
  .jdgm-widget {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .product-block {
    text-align: left !important;
  }

  /* 🔥 CENTER ONLY QUANTITY SELECTOR */
  .product__quantity {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 15px 0;
  }

  .product__quantity label {
    text-align: center !important;
    width: 100%;
  }

  .product__quantity .js-qty,
  .product__quantity input,
  .product__quantity button {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
  /* ================================
   PRODUCT PAGE – COMPACT SPACING
   ================================ */

/* Reduce spacing between blocks */
.product-block {
  margin-bottom: 10px !important;
}

/* Reduce gap inside product meta section */
.product-single__meta > * {
  margin-bottom: 8px !important;
}

/* Title spacing */
.product-single__title {
  margin-bottom: 6px !important;
}

/* Price spacing */
.product-block--price {
  margin-bottom: 6px !important;
}

/* Variant selector spacing */
.product-form__input {
  margin-bottom: 8px !important;
}

/* Quantity + buttons spacing */
.product__quantity {
  margin-bottom: 8px !important;
}

/* Buy button spacing */
.product-form {
  margin-top: 8px !important;
}

/* Trust badges / custom sections */
.trust-badges1 {
  margin-top: 8px !important;
  gap: 10px !important;
}

/* Welcome offer spacing */
.welcome-offer-bar {
  margin: 8px 0 !important;
}

/* Tabs / description */
.product-block--tab {
  margin-top: 8px !important;
}

/* Mobile tighter spacing */
@media screen and (max-width: 768px) {

  .product-block {
    margin-bottom: 8px !important;
  }

  .product-single__meta > * {
    margin-bottom: 6px !important;
  }

  .product-single__title {
    margin-bottom: 4px !important;
  }

  .product-form__input {
    margin-bottom: 6px !important;
  }

  .product__quantity {
    margin-bottom: 6px !important;
  }

}
/* =========================
   📉 FAQ SECTION SPACING FIX
   ========================= */

.shopify-section.faq,
.faq-section,
.product-faq {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Remove big inner spacing */
.faq-section .page-width,
.shopify-section.faq .page-width {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================
   📉 "YOU MAY ALSO LIKE" FIX
   ========================= */

.shopify-section.featured-collection,
.product-recommendations {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* =========================
   📉 REVIEWS SECTION FIX
   ========================= */

.shopify-section.reviews,
.jdgm-widget,
#shopify-product-reviews {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
/* CARD STYLE */
.premium-cart {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* IMAGE */
.cart__image img {
  border-radius: 10px;
}

/* TITLE */
.cart__item-name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* VARIANT */
.cart__item--variants {
  font-size: 11px;
  color: #777;
  margin-top: 3px;
}

/* BOTTOM ROW */
.cart-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* QTY BOX */
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.qty-box input {
  width: 35px;
  text-align: center;
  border: none;
  font-size: 13px;
}

.qty-btn {
  background: #f5f5f5;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

/* PRICE */
.cart-price {
  text-align: right;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 11px;
  display: block;
}

.new-price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

/* REMOVE */
.cart__remove a {
  font-size: 11px;
  color: #ff4d4d;
}
}