/** Shopify CDN: Minification failed

Line 109:0 Unexpected "}"
Line 704:0 Unexpected "}"
Line 825: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;
}
/* ========================================
   PREMIUM CART PAGE - CLEAN STABLE VERSION
======================================== */

/* PAGE */

html,
body{
  overflow-x:hidden;
  max-width:100%;
}

.premium-cart-page{
  overflow-x:hidden;
}

/* LAYOUT */

.cart__page{
  display:flex;
  gap:40px;
  align-items:flex-start;
}

.cart__page-col:first-child{
  flex:2;
}

.cart__page-col:last-child{
  flex:1;
  position:sticky;
  top:20px;
}

/* TITLE */

.premium-cart-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
}

.continue-shopping a{
  color:#666;
  text-decoration:none;
}

/* PRODUCT CARD */

.premium-cart-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:22px;
  padding:24px;
  margin-bottom:22px;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.premium-cart-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

/* CART ITEM */

.cart__item{
  display:flex;
  align-items:flex-start;
  gap:22px;
}

/* IMAGE */

.cart__image{
  width:130px;
  min-width:130px;
}

.cart__image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
}

/* CONTENT */

.cart__item-details,
.cart__item-info{
  flex:1;
  min-width:0;
}

/* TITLE */

.cart__item-title{
  font-size:24px;
  font-weight:600;
  line-height:1.4;
  margin-bottom:10px;
  color:#111;
}

/* META */

.cart__meta{
  font-size:15px;
  color:#777;
  margin-bottom:14px;
}

/* PRICE */

.cart__price{
  font-size:26px;
  font-weight:700;
  color:#000;
  margin-top:12px;
}

/* REMOVE */

.cart__remove{
  display:inline-block;
  margin-top:12px;
  font-size:14px;
  color:#ff5a5a;
  text-decoration:none;
}

.cart__remove:hover{
  color:#000;
}

/* ========================================
   SAFE SHOPIFY QUANTITY STYLING
======================================== */

.cart__qty{
  margin-top:10px;
}

/* ONLY VISUAL STYLING */

.js-qty,
.cart__qty-input{
  border:1px solid #e8e8e8 !important;
  border-radius:14px !important;
  overflow:hidden;
  background:#fff;
}

/* BUTTONS */

.js-qty__adjust,
.qty__adjust{
  background:#fafafa !important;
  color:#111 !important;
  transition:.2s ease;
}

.js-qty__adjust:hover,
.qty__adjust:hover{
  background:#f2f2f2 !important;
}

/* INPUT */

.js-qty__num{
  background:#fff !important;
  border:none !important;
  font-weight:600;
  color:#111 !important;
  text-align:center;
}

/* REMOVE FOCUS */

.js-qty__num:focus{
  outline:none;
  box-shadow:none;
}
}

/* SUMMARY */

.premium-cart-summary{
  background:#fff;
  border-radius:24px;
  padding:30px;
  border:1px solid #ececec;
  box-shadow:0 10px 28px rgba(0,0,0,0.06);
}

/* SUBTOTAL */

.premium-subtotal-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid #ececec;
}

.subtotal-label{
  font-size:17px;
  font-weight:600;
  color:#222;
}

.subtotal-price{
  font-size:34px;
  font-weight:700;
  color:#000;
  line-height:1;
}

/* TRUST */

/* ========================================
   PREMIUM TRUST LINE
======================================== */

/* CLEAN TRUST LINE */

.premium-trust-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 24px;
  padding:14px 16px;
  border-radius:14px;
  background:#fafafa;
  border:1px solid #ececec;
  font-size:14px;
  color:#444;
  line-height:1.4;
}

.premium-trust-line span{
  white-space:nowrap;
}
}

/* CHECKOUT BUTTON */

.premium-checkout-wrapper button,
.premium-checkout-wrapper .btn,
#gokwik-checkout,
.gokwik-checkout{
  width:100% !important;
  height:62px !important;
  border:none !important;
  border-radius:16px !important;
  background:linear-gradient(135deg,#000,#1d1d1d) !important;
  color:#fff !important;
  font-size:18px !important;
  font-weight:700 !important;
  cursor:pointer;
  transition:0.3s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.premium-checkout-wrapper button:hover,
.gokwik-checkout:hover{
  transform:translateY(-2px);
}

/* PAYMENT */

.premium-checkout-info{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #ececec;
  text-align:center;
}

.premium-secure-line{
  font-size:14px;
  font-weight:600;
  color:#111;
  margin-bottom:16px;
}

.premium-payment-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.premium-payment-icons svg{
  width:42px;
  height:auto;
}

/* MOBILE */

@media(max-width:768px){

  .cart__page{
    flex-direction:column;
    gap:20px;
  }

  .cart__page-col:last-child{
    position:static;
    width:100%;
  }

  .premium-cart-title{
    font-size:32px;
  }

  .premium-cart-card{
    padding:16px;
    border-radius:18px;
  }

  .cart__item{
    display:grid;
    grid-template-columns:105px 1fr;
    gap:16px;
    align-items:start;
  }

  .cart__image{
    width:105px;
    min-width:105px;
  }

  .cart__item-title{
    font-size:18px;
    line-height:1.4;
    margin-bottom:8px;
  }

  .cart__meta{
    font-size:14px;
    margin-bottom:10px;
  }

  .cart__price{
    font-size:20px;
    margin-top:10px;
  }

  .cart__qty{
    transform:scale(.95);
    transform-origin:left center;
    margin-top:6px;
  }

  .subtotal-price{
    font-size:26px;
  }

  .premium-payment-icons svg{
    width:36px;
  }

}
}
}