/** Shopify CDN: Minification failed

Line 1847:0 Unexpected "}"
Line 3081:0 Unexpected "<"
Line 3338:0 Unexpected "<"

**/
/* ==========================================================================
   GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ==========================================================================
   BOUTIQUE BRAND VARIABLES
   ========================================================================== */
:root {
  /* Brand Colors */
  --brand-gold: #C9A961;
  --brand-gold-light: #D4B76E;
  --brand-gold-dark: #B8954F;
  --brand-gray-light: #F5F5F5;
  --brand-gray-medium: #E5E5E5;
  --brand-gray-dark: #666666;
  --brand-white: #FFFFFF;
  --brand-black: #333333;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  
  /* Border Radius */
  --border-radius-sm: 3px;
  --border-radius-md: 5px;
  --border-radius-lg: 8px;
  
  /* Shadows */
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   CART DRAWER CONTAINER - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart.t4s-drawer {
  background: var(--brand-white);
  box-shadow: var(--shadow-heavy);
  border-left: 3px solid var(--brand-gold);
  font-family: var(--font-primary);
  color: var(--brand-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ==========================================================================
   CART HEADER - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart .t4s-drawer__header {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 50%, var(--brand-gold-dark) 100%);
  color: var(--brand-white);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-bottom: 3px solid var(--brand-gold-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 
    0 4px 12px rgba(201, 169, 97, 0.3),
    0 0 20px rgba(201, 169, 97, 0.4),
    0 0 40px rgba(201, 169, 97, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: headerGlow 3s ease-in-out infinite alternate;
}

@keyframes headerGlow {
  0% {
    box-shadow: 
      0 4px 12px rgba(201, 169, 97, 0.3),
      0 0 20px rgba(201, 169, 97, 0.4),
      0 0 40px rgba(201, 169, 97, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 
      0 6px 16px rgba(201, 169, 97, 0.4),
      0 0 30px rgba(201, 169, 97, 0.6),
      0 0 60px rgba(201, 169, 97, 0.3),
      0 0 80px rgba(201, 169, 97, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

#t4s-mini_cart .t4s-drawer__header::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--brand-gold-light), 
    var(--brand-gold), 
    var(--brand-gold-dark), 
    var(--brand-gold-light));
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.7;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

#t4s-mini_cart .t4s-drawer__header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  pointer-events: none;
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

#t4s-mini_cart .t4s-drawer__header span {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: var(--font-weight-black);
  letter-spacing: 2px;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2s ease-in-out infinite alternate, textWave 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes textWave {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-1px) rotate(0.5deg) scale(1.01);
  }
  50% {
    transform: translateY(0px) rotate(0deg) scale(1.02);
  }
  75% {
    transform: translateY(1px) rotate(-0.5deg) scale(1.01);
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 
      0 3px 6px rgba(0, 0, 0, 0.3),
      0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 
      0 3px 6px rgba(0, 0, 0, 0.4),
      0 0 15px rgba(255, 255, 255, 0.5),
      0 0 25px rgba(255, 255, 255, 0.2);
  }
}

#t4s-mini_cart .t4s-drawer__header span::before {
  content: '🛍️';
  margin-right: var(--spacing-sm);
  font-size: 20px;
  -webkit-text-fill-color: initial;
  background: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
  }
}

#t4s-mini_cart .t4s-drawer__close {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-lg);
  color: var(--brand-white);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 1;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(255, 255, 255, 0.2);
}

#t4s-mini_cart .t4s-drawer__close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.2),
    0 0 25px rgba(255, 255, 255, 0.4),
    0 0 35px rgba(255, 255, 255, 0.2);
}

#t4s-mini_cart .t4s-drawer__close svg {
  width: 18px;
  height: 18px;
  stroke-width: 3px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* ==========================================================================
   CART ITEMS - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart .t4s-mini_cart__item {
  background: var(--brand-white) !important;
  border-bottom: 1px solid var(--brand-gray-medium) !important;
  padding: var(--spacing-md) !important;
  transition: all var(--transition-medium) !important;
  position: relative !important;
  align-items: flex-start !important;
  gap: var(--spacing-md) !important;
}

#t4s-mini_cart .t4s-mini_cart__item:hover {
  background: var(--brand-gray-light) !important;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.1);
  border-left: 3px solid var(--brand-gold);
}

#t4s-mini_cart .t4s-mini_cart__item:last-child {
  border-bottom: none !important;
}

/* Product Image - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-mini_cart__img {
  border-radius: var(--border-radius-md) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-light) !important;
  transition: all var(--transition-medium) !important;
  border: 2px solid var(--brand-gray-medium) !important;
  width: 146px !important;
  height: 214px !important;
  flex-shrink: 0 !important;
}

#t4s-mini_cart .t4s-mini_cart__img:hover {
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.2) !important;
  border-color: var(--brand-gold) !important;
  transform: scale(1.03) !important;
}

#t4s-mini_cart .t4s-mini_cart__img img {
  transition: var(--transition-medium) !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#t4s-mini_cart .t4s-mini_cart__img:hover img {
  transform: scale(1.05) !important;
}

/* Product Info Container - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-mini_cart__info {
  flex: 1 !important;
  min-width: 0 !important;
}

/* Product Title - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-mini_cart__title {
  color: var(--brand-black) !important;
  font-family: var(--font-primary) !important;
  font-weight: var(--font-weight-semibold) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  transition: var(--transition-fast) !important;
  margin-bottom: var(--spacing-xs) !important;
  letter-spacing: -0.01em !important;
  display: block !important;
}

#t4s-mini_cart .t4s-mini_cart__title:hover {
  color: var(--brand-gold) !important;
  text-decoration: none !important;
  transform: translateX(3px) !important;
}

/* Product Meta - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-cart_meta_variant {
  color: var(--brand-gray-dark) !important;
  font-family: var(--font-primary) !important;
  font-size: 13px !important;
  margin-bottom: var(--spacing-xs) !important;
  font-weight: var(--font-weight-normal) !important;
  line-height: 1.4 !important;
  letter-spacing: -0.005em !important;
}

/* Price Styling - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-cart_price del {
  color: var(--brand-gray-dark) !important;
  font-family: var(--font-primary) !important;
  font-size: 14px !important;
  text-decoration: line-through !important;
  margin-right: var(--spacing-xs) !important;
  font-weight: var(--font-weight-normal) !important;
  letter-spacing: -0.01em !important;
  opacity: 0.7 !important;
  transition: var(--transition-fast) !important;
}

#t4s-mini_cart .t4s-cart_price ins {
  color: var(--brand-gold) !important;
  font-family: var(--font-primary) !important;
  font-weight: var(--font-weight-bold) !important;
  font-size: 18px !important;
  text-decoration: none !important;
  letter-spacing: -0.02em !important;
  transition: var(--transition-fast) !important;
}

#t4s-mini_cart .t4s-mini_cart__item:hover .t4s-cart_price ins {
  color: var(--brand-gold-light) !important;
  transform: scale(1.05) !important;
}

/* ==========================================================================
   ACTION BUTTONS - SCOPED TO MINI CART ONLY - NO QUANTITY CHANGES
   ========================================================================== */

/* Edit and Remove Buttons ONLY - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-mini_cart__edit,
#t4s-mini_cart .t4s-mini_cart__remove,
#t4s-mini_cart a[data-action-quickshop],
#t4s-mini_cart a[data-cart-remove] {
  background: var(--brand-gray-light) !important;
  border: 1px solid var(--brand-gray-medium) !important;
  border-radius: var(--border-radius-md) !important;
  color: var(--brand-gray-dark) !important;
  width: 40px !important;
  height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all var(--transition-fast) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#t4s-mini_cart .t4s-mini_cart__edit:hover,
#t4s-mini_cart a[data-action-quickshop]:hover {
  background: var(--brand-gold) !important;
  color: var(--brand-white) !important;
  border-color: var(--brand-gold) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3) !important;
}

#t4s-mini_cart .t4s-mini_cart__remove:hover,
#t4s-mini_cart a[data-cart-remove]:hover {
  background: #dc3545 !important;
  color: var(--brand-white) !important;
  border-color: #dc3545 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3) !important;
}

/* ==========================================================================
   RECOMMENDATIONS SECTION - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart .t4s-minicart-recommendations {
  margin: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--brand-gold);
  transition: var(--transition-medium);
}

#t4s-mini_cart .t4s-minicart-recommendations:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

#t4s-mini_cart .t4s-minicart-recommendations__title {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  padding: var(--spacing-md);
  text-transform: capitalize;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#t4s-mini_cart .t4s-minicart-recommendations__item {
  background: var(--brand-white);
  transition: all var(--transition-medium);
}

#t4s-mini_cart .t4s-minicart-recommendations__item:hover {
  background: var(--brand-gray-light);
  transform: scale(1.02);
}

#t4s-mini_cart .t4s-minicart-recommendations__item--title {
  color: var(--brand-black);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
}

#t4s-mini_cart .t4s-minicart-recommendations__item--title:hover {
  color: var(--brand-gold);
  transform: translateX(3px);
}

#t4s-mini_cart .t4s-minicart-recommendations__item--img img {
  border-radius: var(--border-radius-sm);
  transition: var(--transition-medium);
}

#t4s-mini_cart .t4s-minicart-recommendations__item:hover .t4s-minicart-recommendations__item--img img {
  transform: scale(1.05);
}

#t4s-mini_cart .t4s-minicart-recommendations__item--price del {
  color: var(--brand-gray-dark);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: var(--font-weight-normal);
  letter-spacing: -0.005em;
  transition: var(--transition-fast);
}

#t4s-mini_cart .t4s-minicart-recommendations__item--price ins {
  color: var(--brand-gold);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: 15px;
  margin-left: var(--spacing-xs);
  letter-spacing: -0.01em;
  transition: var(--transition-fast);
}

#t4s-mini_cart .t4s-minicart-recommendations__item:hover .t4s-minicart-recommendations__item--price ins {
  color: var(--brand-gold-light);
  transform: scale(1.05);
}

/* Carousel Controls - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .flickityt4s-prev-next-button {
  background: var(--brand-gray-light);
  border: 1px solid var(--brand-gray-medium);
  color: var(--brand-gray-dark);
  transition: all var(--transition-fast);
}

#t4s-mini_cart .flickityt4s-prev-next-button:hover {
  background: var(--brand-gold);
  color: var(--brand-white);
  border-color: var(--brand-gold);
  transform: scale(1.1);
}

#t4s-mini_cart .flickityt4s-page-dots .dot {
  background: var(--brand-gray-medium);
  border: 2px solid var(--brand-gray-dark);
  transition: var(--transition-fast);
}

#t4s-mini_cart .flickityt4s-page-dots .dot.is-selected,
#t4s-mini_cart .flickityt4s-page-dots .dot:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold-dark);
  transform: scale(1.2);
}

/* ==========================================================================
   CART TOTAL & CHECKOUT - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart .t4s-drawer__bottom {
  background: var(--brand-gray-light);
  border-top: 2px solid var(--brand-gold);
  padding: var(--spacing-lg);
}

#t4s-mini_cart .t4s-cart-total {
  background: var(--brand-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--brand-gray-medium);
  transition: var(--transition-medium);
}

#t4s-mini_cart .t4s-cart-total:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-1px);
}

#t4s-mini_cart .t4s-cart-total strong {
  color: var(--brand-black);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: 17px;
  letter-spacing: -0.01em;
}

#t4s-mini_cart .t4s-cart__totalPrice {
  color: var(--brand-gold);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-black);
  font-size: 20px;
  letter-spacing: -0.02em;
  transition: var(--transition-fast);
}

#t4s-mini_cart .t4s-cart-total:hover .t4s-cart__totalPrice {
  color: var(--brand-gold-light);
  transform: scale(1.05);
}

/* Buttons with Icons - SCOPED TO MINI CART ONLY */
#t4s-mini_cart .t4s-btn__cart,
#t4s-mini_cart .t4s-btn__checkout {
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: var(--spacing-md) var(--spacing-lg);
  transition: all var(--transition-medium);
  border: 2px solid transparent;
  margin-bottom: var(--spacing-sm);
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#t4s-mini_cart .t4s-btn__cart {
  background: var(--brand-white);
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

#t4s-mini_cart .t4s-btn__cart::after {
  content: ' 🛒';
  margin-left: var(--spacing-xs);
  font-size: 16px;
  transition: var(--transition-medium);
}

#t4s-mini_cart .t4s-btn__cart:hover {
  background: var(--brand-gold);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

#t4s-mini_cart .t4s-btn__cart:hover::after {
  transform: scale(1.2) rotate(10deg);
}

#t4s-mini_cart .t4s-btn__checkout {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
  color: var(--brand-white);
  border-color: var(--brand-gold-dark);
}

#t4s-mini_cart .t4s-btn__checkout::after {
  content: ' 🚚';
  margin-left: var(--spacing-xs);
  font-size: 16px;
  animation: carMove 2s ease-in-out infinite;
}

#t4s-mini_cart .t4s-btn__checkout:hover {
  background: linear-gradient(135deg, var(--brand-gold-dark) 0%, var(--brand-gold) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(201, 169, 97, 0.4);
}

#t4s-mini_cart .t4s-btn__checkout:hover::after {
  animation: carMoveFast 1s ease-in-out infinite;
}

@keyframes carMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes carMoveFast {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(5px) scale(1.1);
  }
  75% {
    transform: translateX(-2px) scale(1.1);
  }
}

/* ==========================================================================
   LOADING STATES - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart .t4s-cart-ld__bar {
  background: rgba(201, 169, 97, 0.1);
  border-radius: var(--border-radius-md);
}

#t4s-mini_cart .t4s-cart-spinner .t4s-path {
  stroke: var(--brand-gold);
}

#t4s-mini_cart .t4s-cart-check {
  color: var(--brand-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN - SCOPED TO MINI CART ONLY
   ========================================================================== */
@media (max-width: 768px) {
  #t4s-mini_cart .t4s-drawer__header {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  #t4s-mini_cart .t4s-drawer__header span {
    font-size: 19px;
    letter-spacing: 1.5px;
  }
  
  #t4s-mini_cart .t4s-drawer__header span::before {
    font-size: 18px;
  }
  
  #t4s-mini_cart .t4s-drawer__close {
    width: 42px;
    height: 42px;
  }
  
  #t4s-mini_cart .t4s-mini_cart__item {
    padding: var(--spacing-sm) !important;
  }
  
  #t4s-mini_cart .t4s-mini_cart__img {
    width: 140px !important;
    height: 180px !important;
  }
  
  #t4s-mini_cart .t4s-mini_cart__title {
    font-size: 17px !important;
  }
  
  #t4s-mini_cart .t4s-cart_meta_variant {
    font-size: 14px !important;
  }
  
  #t4s-mini_cart .t4s-cart_price del {
    font-size: 15px !important;
  }
  
  #t4s-mini_cart .t4s-cart_price ins {
    font-size: 20px !important;
  }
  
  #t4s-mini_cart .t4s-minicart-recommendations {
    margin: var(--spacing-md);
  }
  
  #t4s-mini_cart .t4s-drawer__bottom {
    padding: var(--spacing-md);
  }
  
  #t4s-mini_cart .t4s-btn__cart,
  #t4s-mini_cart .t4s-btn__checkout {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 16px;
  }
  
  #t4s-mini_cart .t4s-btn__cart::after,
  #t4s-mini_cart .t4s-btn__checkout::after {
    font-size: 16px;
  }
  
  #t4s-mini_cart .t4s-cart-total strong {
    font-size: 18px !important;
  }
  
  #t4s-mini_cart .t4s-cart__totalPrice {
    font-size: 22px !important;
  }
}

@media (max-width: 480px) {
  #t4s-mini_cart .t4s-mini_cart__img {
    width: 146px !important;
    height: 263px !important;
    align-self: flex-start !important;
  }
  
  #t4s-mini_cart .t4s-mini_cart__item {
    align-items: flex-start !important;
  }
  
  #t4s-mini_cart .t4s-mini_cart__title {
    font-size: 18px !important;
  }
  
  #t4s-mini_cart .t4s-cart_meta_variant {
    font-size: 15px !important;
  }
  
  #t4s-mini_cart .t4s-cart_price del {
    font-size: 16px !important;
  }
  
  #t4s-mini_cart .t4s-cart_price ins {
    font-size: 22px !important;
  }
  
  #t4s-mini_cart .t4s-mini_cart__edit,
  #t4s-mini_cart .t4s-mini_cart__remove,
  #t4s-mini_cart a[data-action-quickshop],
  #t4s-mini_cart a[data-cart-remove] {
    width: 50px !important;
    height: 50px !important;
  }
}

/* ==========================================================================
   ACCESSIBILITY IMPROVEMENTS - SCOPED TO MINI CART ONLY
   ========================================================================== */
#t4s-mini_cart .t4s-drawer__close:focus,
#t4s-mini_cart .t4s-mini_cart__edit:focus,
#t4s-mini_cart .t4s-mini_cart__remove:focus,
#t4s-mini_cart .t4s-btn__cart:focus,
#t4s-mini_cart .t4s-btn__checkout:focus {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

/* High contrast mode support - SCOPED TO MINI CART ONLY */
@media (prefers-contrast: high) {
  #t4s-mini_cart .t4s-cart_price ins {
    color: var(--brand-gold-dark);
    font-weight: var(--font-weight-bold);
  }
  
  #t4s-mini_cart .t4s-btn__checkout {
    background: var(--brand-gold-dark);
  }
}

/* Reduced motion support - SCOPED TO MINI CART ONLY */
@media (prefers-reduced-motion: reduce) {
  #t4s-mini_cart * {
    transition-duration: 0.01ms !important;
  }
  
  @keyframes carMove {
    0%, 100% { transform: translateX(0); }
  }
  
  @keyframes carMoveFast {
    0%, 100% { transform: translateX(0); }
  }
}
/* ==========================================================================
   BOUTIQUE PRODUCT PAGE STYLING - PRODUCT PAGES ONLY 
   ========================================================================== */

/* تطبيق التنسيقات فقط على صفحات المنتج */
.template-product,
.product-page,
[data-template="product"],
body[class*="product"],
body.template-product,
.page-product {

  /* Brand Variables */
  --brand-gold: #C9A961;
  --brand-gold-light: #D4B76E;
  --brand-gold-dark: #B8954F;
  --brand-rose-gold: #E8B4B8;
  --brand-champagne: #F7E7CE;
  --brand-gray-light: #F8F9FA;
  --brand-gray-medium: #E9ECEF;
  --brand-gray-dark: #6C757D;
  --brand-white: #FFFFFF;
  --brand-black: #212529;
  --brand-cream: #FDF8F0;
  
  /* Enhanced Typography */
  --font-luxury: 'Playfair Display', 'Times New Roman', serif;
  --font-modern: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Poppins', sans-serif;
  
  /* Spacing System */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Border Radius System */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Enhanced Shadows */
  --shadow-soft: 0 2px 15px rgba(201, 169, 97, 0.08);
  --shadow-medium: 0 4px 25px rgba(201, 169, 97, 0.15);
  --shadow-strong: 0 8px 40px rgba(201, 169, 97, 0.25);
  --shadow-glow: 0 0 30px rgba(201, 169, 97, 0.3);
  
  /* Animation System */
  --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 0.2s;
  --duration-medium: 0.4s;
  --duration-slow: 0.6s;
}

/* ==========================================================================
   PRODUCT TITLE - LUXURY STYLING
   ========================================================================== */
.template-product .t4s-product__title,
.template-product .product-title,
.product-page .product-title,
[data-template="product"] .product__title,
body[class*="product"] .product-title,
body.template-product .t4s-product__title,
body.template-product .product__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 600 !important;
  color: var(--brand-black) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: var(--space-2xl) !important;
  padding-bottom: var(--space-md) !important;
  position: relative !important;
  background: linear-gradient(135deg, var(--brand-black) 0%, var(--brand-gold-dark) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: all var(--duration-medium) var(--easing-smooth) !important;
}

.template-product .t4s-product__title::before,
.template-product .product-title::before,
.product-page .product-title::before,
body.template-product .t4s-product__title::before,
body.template-product .product__title::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, 
    var(--brand-champagne), 
    var(--brand-rose-gold), 
    var(--brand-gold-light),
    var(--brand-champagne)
  );
  background-size: 300% 300%;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  animation: gradientShift 4s ease-in-out infinite;
  transition: opacity var(--duration-medium);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.template-product .t4s-product__title:hover::before,
.template-product .product-title:hover::before,
.product-page .product-title:hover::before,
body.template-product .t4s-product__title:hover::before,
body.template-product .product__title:hover::before {
  opacity: 0.1;
}

.template-product .t4s-product__title::after,
.template-product .product-title::after,
.product-page .product-title::after,
body.template-product .t4s-product__title::after,
body.template-product .product__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-rose-gold));
  border-radius: 2px;
  transition: width var(--duration-slow) var(--easing-bounce);
}

.template-product .t4s-product__title:hover::after,
.template-product .product-title:hover::after,
.product-page .product-title:hover::after,
body.template-product .t4s-product__title:hover::after,
body.template-product .product__title:hover::after {
  width: 120px;
}

/* ==========================================================================
   PRODUCT PRICE - LARGER SIZE
   ========================================================================== */
.template-product .t4s-product-price,
.product-page .product-price,
[data-template="product"] .price {
  font-family: var(--font-modern) !important;
  font-weight: 700 !important;
  color: var(--brand-gold) !important;
  letter-spacing: -0.01em !important;
  position: relative !important;
  padding: var(--space-lg) var(--space-xl) !important;
  margin-bottom: var(--space-xl) !important;
  background: var(--brand-cream) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-soft) !important;
  transition: all var(--duration-medium) var(--easing-smooth) !important;
}

.template-product .t4s-product-price::before,
.product-page .product-price::before {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(201, 169, 97, 0.3));
}

@keyframes sparkle {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
}

.template-product .t4s-product-price:hover,
.product-page .product-price:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: var(--shadow-glow) !important;
  background: linear-gradient(135deg, var(--brand-cream), var(--brand-champagne)) !important;
}

/* ==========================================================================
   SIZE SELECTOR - ORIGINAL STYLE (UNCHANGED)
   ========================================================================== */
.template-product .t4s-swatch,
.product-page .product-variants {
  margin-bottom: var(--space-2xl) !important;
  padding: var(--space-xl) !important;
  background: linear-gradient(135deg, var(--brand-white), var(--brand-gray-light)) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid var(--brand-gray-medium) !important;
}

.template-product .t4s-swatch__title,
.product-page .variant-title {
  font-family: var(--font-accent) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--brand-black) !important;
  margin-bottom: var(--space-lg) !important;
  text-transform: capitalize !important;
  letter-spacing: 0.05em !important;
}

.template-product .t4s-swatch__list,
.product-page .variant-options {
  display: flex !important;
  gap: var(--space-md) !important;
  flex-wrap: wrap !important;
}

.template-product .t4s-swatch__item,
.product-page .variant-option {
  background: var(--brand-white) !important;
  border: 2px solid var(--brand-gray-medium) !important;
  border-radius: var(--radius-md) !important;
  padding: var(--space-md) var(--space-lg) !important;
  font-family: var(--font-modern) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--brand-black) !important;
  cursor: pointer !important;
  transition: all var(--duration-fast) var(--easing-smooth) !important;
  min-width: 65px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  text-transform: capitalize !important;
  letter-spacing: 0.02em !important;
}

.template-product .t4s-swatch__item::before,
.product-page .variant-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(201, 169, 97, 0.2), 
    transparent
  );
  transition: left var(--duration-medium);
}

.template-product .t4s-swatch__item:hover,
.product-page .variant-option:hover {
  border-color: var(--brand-gold) !important;
  color: var(--brand-gold) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: var(--shadow-medium) !important;
  background: var(--brand-cream) !important;
}

.template-product .t4s-swatch__item:hover::before,
.product-page .variant-option:hover::before {
  left: 100%;
}

.template-product .t4s-swatch__item.is--selected,
.product-page .variant-option.selected {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light)) !important;
  border-color: var(--brand-gold-dark) !important;
  color: var(--brand-white) !important;
  transform: scale(1.1) !important;
  box-shadow: var(--shadow-glow) !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   QUANTITY SELECTOR - BOUTIQUE ENHANCEMENT
   ========================================================================== */
.template-product .t4s-quantity-wrapper,
.template-product .quantity-wrapper,
.product-page .quantity-selector {
  display: flex !important;
  align-items: center !important;
  background: var(--brand-white) !important;
  border-radius: var(--radius-lg) !important;
  border: 2px solid var(--brand-gray-medium) !important;
  overflow: hidden !important;
  transition: all var(--duration-medium) var(--easing-smooth) !important;
  margin-right: var(--space-lg) !important;
  box-shadow: var(--shadow-soft) !important;
  position: relative !important;
  backdrop-filter: blur(10px) !important;
}

.template-product .t4s-quantity-wrapper:hover,
.product-page .quantity-selector:hover {
  border-color: var(--brand-gold) !important;
  box-shadow: var(--shadow-glow) !important;
  transform: translateY(-2px) !important;
}

.template-product .t4s-quantity-selector,
.template-product .quantity-btn,
.product-page .qty-btn {
  background: linear-gradient(135deg, var(--brand-gray-light), var(--brand-white)) !important;
  border: none !important;
  color: var(--brand-black) !important;
  width: 55px !important;
  height: 55px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all var(--duration-fast) var(--easing-bounce) !important;
  font-family: var(--font-modern) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  position: relative !important;
  overflow: hidden !important;
}

.template-product .t4s-quantity-selector::before,
.product-page .qty-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--brand-gold) !important;
  border-radius: 50%;
  transition: all var(--duration-medium) var(--easing-smooth);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.template-product .t4s-quantity-selector:hover,
.product-page .qty-btn:hover {
  color: var(--brand-white) !important;
  transform: scale(1.15) !important;
  box-shadow: var(--shadow-medium) !important;
}

.template-product .t4s-quantity-selector:hover::before,
.product-page .qty-btn:hover::before {
  width: 100%;
  height: 100%;
}

.template-product .t4s-quantity-input,
.template-product .quantity-input,
.product-page .qty-input {
  background: var(--brand-white) !important;
  border: none !important;
  color: var(--brand-black) !important;
  text-align: center !important;
  width: 90px !important;
  height: 55px !important;
  font-family: var(--font-modern) !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
  outline: none !important;
  transition: all var(--duration-fast) var(--easing-smooth) !important;
  font-feature-settings: 'lnum' 1, 'tnum' 1 !important;
  font-variant-numeric: lining-nums tabular-nums !important;
}

.template-product .t4s-quantity-input:focus,
.product-page .qty-input:focus {
  background: var(--brand-cream) !important;
  color: var(--brand-gold) !important;
  transform: scale(1.1) !important;
  box-shadow: inset 0 0 0 2px var(--brand-gold) !important;
  animation: numberGlow 0.4s var(--easing-bounce) !important;
}

@keyframes numberGlow {
  0% { text-shadow: none; }
  50% { text-shadow: 0 0 10px var(--brand-gold); }
  100% { text-shadow: none; }
}

/* Remove spinner arrows */
.template-product .t4s-quantity-input::-webkit-outer-spin-button,
.template-product .t4s-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.template-product .t4s-quantity-input[type=number] {
  -moz-appearance: textfield !important;
}

/* ==========================================================================
   BUTTONS - نفس تأثير المقاسات والـ Size Guide
   ========================================================================== */
/* ==========================================================================
   BUTTONS - نفس تأثير المقاسات والـ Size Guide - PRODUCT FORM ONLY
   ========================================================================== */
.template-product .t4s-product-form .t4s-product-form__submit,
.template-product .product-form .add-to-cart-btn,
.product-page .product-form .add-to-cart-btn,
body.template-product .product-form .t4s-product-form__submit,
body.template-product .product-form .add-to-cart-btn,
.template-product form[action*="/cart/add"] .t4s-product-form__submit,
.template-product form[action*="/cart/add"] .add-to-cart-btn,
.product-page form[action*="/cart/add"] .add-to-cart-btn {
  /* المواصفات الأساسية مثل Size Chart */
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-modern);
  font-size: 1.4rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  padding: var(--space-lg) var(--space-2xl);
  text-decoration: none;
  transition: all var(--duration-medium) var(--easing-smooth);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-soft);
  min-width: 250px;
  min-height: 60px;
  border-radius: 10px !important;
  width: 100%;
  
  /* Add to Cart - Outline Style */
  background: transparent !important;
  border: 2px solid var(--brand-gold) !important;
  border-radius: 10px !important;
  color: var(--brand-gold) !important;
}

/* نفس تأثير المقاسات - sweep effect - PRODUCT FORM ONLY */
.template-product .t4s-product-form .t4s-product-form__submit::before,
.template-product .product-form .add-to-cart-btn::before,
.product-page .product-form .add-to-cart-btn::before,
body.template-product .product-form .t4s-product-form__submit::before,
body.template-product .product-form .add-to-cart-btn::before,
.template-product form[action*="/cart/add"] .t4s-product-form__submit::before,
.template-product form[action*="/cart/add"] .add-to-cart-btn::before,
.product-page form[action*="/cart/add"] .add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(201, 169, 97, 0.2), 
    transparent
  );
  transition: left var(--duration-medium);
}

.template-product .t4s-product-form .t4s-product-form__submit:hover,
.template-product .product-form .add-to-cart-btn:hover,
.product-page .product-form .add-to-cart-btn:hover,
body.template-product .product-form .t4s-product-form__submit:hover,
body.template-product .product-form .add-to-cart-btn:hover,
.template-product form[action*="/cart/add"] .t4s-product-form__submit:hover,
.template-product form[action*="/cart/add"] .add-to-cart-btn:hover,
.product-page form[action*="/cart/add"] .add-to-cart-btn:hover {
  border-color: var(--brand-gold) !important;
  color: var(--brand-gold) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: var(--shadow-medium) !important;
  background: var(--brand-cream) !important;
}

.template-product .t4s-product-form .t4s-product-form__submit:hover::before,
.template-product .product-form .add-to-cart-btn:hover::before,
.product-page .product-form .add-to-cart-btn:hover::before,
body.template-product .product-form .t4s-product-form__submit:hover::before,
body.template-product .product-form .add-to-cart-btn:hover::before,
.template-product form[action*="/cart/add"] .t4s-product-form__submit:hover::before,
.template-product form[action*="/cart/add"] .add-to-cart-btn:hover::before,
.product-page form[action*="/cart/add"] .add-to-cart-btn:hover::before {
  left: 100%;
}

/* النص يبقى فوق التأثير - PRODUCT FORM ONLY */
.template-product .t4s-product-form .t4s-product-form__submit span,
.template-product .product-form .add-to-cart-btn span,
.product-page .product-form .add-to-cart-btn span,
body.template-product .product-form .t4s-product-form__submit span,
body.template-product .product-form .add-to-cart-btn span,
.template-product form[action*="/cart/add"] .t4s-product-form__submit span,
.template-product form[action*="/cart/add"] .add-to-cart-btn span,
.product-page form[action*="/cart/add"] .add-to-cart-btn span {
  position: relative;
  z-index: 2;
}

/* زرار الشراء الآن - نفس التأثير - PRODUCT FORM ONLY */
.template-product .t4s-product-form .shopify-payment-button__button,
.template-product .product-form .buy-now-btn,
.product-page .product-form .buy-now-btn,
body.template-product .product-form .shopify-payment-button__button,
body.template-product .product-form .buy-now-btn,
.template-product form[action*="/cart/add"] .shopify-payment-button__button,
.template-product .shopify-payment-button .shopify-payment-button__button,
.product-page .shopify-payment-button .shopify-payment-button__button {
  /* المواصفات الأساسية مثل Size Chart */
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-modern);
  font-size: 1.4rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  padding: var(--space-lg) var(--space-2xl);
  text-decoration: none;
  transition: all var(--duration-medium) var(--easing-smooth);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-soft);
  min-width: 250px;
  min-height: 60px;
  border-radius: var(--radius-lg);
  width: 100%;
  
  /* Buy Now - باللون الذهبي المطلوب */
  background: linear-gradient(135deg, #D2B46C 0%, #E5C878 100%) !important;
  border: 2px solid #D2B46C !important;
  border-radius: 10px !important;
  color: var(--brand-white) !important;
}

/* نفس تأثير المقاسات للزرار الثاني - PRODUCT FORM ONLY */
.template-product .t4s-product-form .shopify-payment-button__button::before,
.template-product .product-form .buy-now-btn::before,
.product-page .product-form .buy-now-btn::before,
body.template-product .product-form .shopify-payment-button__button::before,
body.template-product .product-form .buy-now-btn::before,
.template-product .shopify-payment-button .shopify-payment-button__button::before,
.product-page .shopify-payment-button .shopify-payment-button__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  transition: left var(--duration-medium);
}

.template-product .t4s-product-form .shopify-payment-button__button:hover,
.template-product .product-form .buy-now-btn:hover,
.product-page .product-form .buy-now-btn:hover,
body.template-product .product-form .shopify-payment-button__button:hover,
body.template-product .product-form .buy-now-btn:hover,
.template-product .shopify-payment-button .shopify-payment-button__button:hover,
.product-page .shopify-payment-button .shopify-payment-button__button:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: var(--shadow-glow) !important;
  background: linear-gradient(135deg, #E5C878 0%, #F0D285 100%) !important;
  border-color: var(--brand-gold-light) !important;
}

.template-product .t4s-product-form .shopify-payment-button__button:hover::before,
.template-product .product-form .buy-now-btn:hover::before,
.product-page .product-form .buy-now-btn:hover::before,
body.template-product .product-form .shopify-payment-button__button:hover::before,
body.template-product .product-form .buy-now-btn:hover::before,
.template-product .shopify-payment-button .shopify-payment-button__button:hover::before,
.product-page .shopify-payment-button .shopify-payment-button__button:hover::before {
  left: 100%;
}

/* أيقونة الشاحنة - PRODUCT FORM ONLY */
.template-product .t4s-product-form .shopify-payment-button__button::after,
.template-product .product-form .buy-now-btn::after,
.product-page .product-form .buy-now-btn::after,
body.template-product .product-form .shopify-payment-button__button::after,
body.template-product .product-form .buy-now-btn::after,
.template-product .shopify-payment-button .shopify-payment-button__button::after,
.product-page .shopify-payment-button .shopify-payment-button__button::after {
  content: ' 🚛';
  margin-left: var(--space-xs);
  font-size: 1.2rem;
  animation: truckMove 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* النص يبقى فوق التأثير - PRODUCT FORM ONLY */
.template-product .t4s-product-form .shopify-payment-button__button span,
.template-product .product-form .buy-now-btn span,
.product-page .product-form .buy-now-btn span,
body.template-product .product-form .shopify-payment-button__button span,
body.template-product .product-form .buy-now-btn span,
.template-product .shopify-payment-button .shopify-payment-button__button span,
.product-page .shopify-payment-button .shopify-payment-button__button span {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   SIZE GUIDE LINK - نفس التأثير الدائري
   ========================================================================== */
.template-product .t4s-extra-link a,
.template-product .size-guide-link a,
.template-product .t4s-size-guide a,
.product-page .size-guide a,
.size-chart-link a {
  /* المواصفات الأساسية مثل الأزرار */
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-modern);
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  padding: var(--space-md) var(--space-xl);
  text-decoration: none;
  transition: all var(--duration-medium) var(--easing-smooth);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-soft);
  min-width: 200px;
  min-height: 50px;
  border-radius: var(--radius-lg);
  
  /* outline style مثل Add to Cart */
  background: transparent;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
}

/* أيقونة جدول المقاس */
.template-product .t4s-extra-link a::before,
.template-product .size-guide-link a::before,
.template-product .t4s-size-guide a::before,
.product-page .size-guide a::before,
.size-chart-link a::before {
  content: '';
  margin-right: var(--space-sm);
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url('/cdn/shop/files/Heybike_UI_Design_R5_Screenshot_Feb_15.png?v=1754222979');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all var(--duration-medium) var(--easing-smooth);
  filter: drop-shadow(0 2px 4px rgba(201, 169, 97, 0.3));
  position: relative;
  z-index: 2;
}

/* التأثير الدائري للـ Size Guide - نفس Add to Cart */
.template-product .t4s-extra-link a::after,
.template-product .size-guide-link a::after,
.template-product .t4s-size-guide a::after,
.product-page .size-guide a::after,
.size-chart-link a::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: linear-gradient(135deg, 
    var(--brand-gold) 0%, 
    var(--brand-gold-light) 100%
  );
  border-radius: 50%;
  transform: translateY(-76%);
  transition: transform var(--duration-medium) var(--easing-smooth);
  z-index: 1;
}

.template-product .t4s-extra-link a:hover::after,
.template-product .size-guide-link a:hover::after,
.template-product .t4s-size-guide a:hover::after,
.product-page .size-guide a:hover::after,
.size-chart-link a:hover::after {
  transform: translateY(0%);
}

.template-product .t4s-extra-link a:hover,
.template-product .size-guide-link a:hover,
.template-product .t4s-size-guide a:hover,
.product-page .size-guide a:hover,
.size-chart-link a:hover {
  color: var(--brand-white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: var(--brand-gold-dark);
}

/* تغيير لون الأيقونة عند الـ hover */
.template-product .t4s-extra-link a:hover::before,
.template-product .size-guide-link a:hover::before,
.template-product .t4s-size-guide a:hover::before,
.product-page .size-guide a:hover::before,
.size-chart-link a:hover::before {
  background-image: url('/cdn/shop/files/Heybike_UI_Design_R5_Screenshot_Feb_15.png?v=1754222979');
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4)) brightness(1.2);
}

/* النص والأيقونة يبقوا فوق التأثير */
.template-product .t4s-extra-link a span,
.template-product .size-guide-link a span,
.template-product .t4s-size-guide a span,
.product-page .size-guide a span,
.size-chart-link a span {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   PRODUCT DESCRIPTION - ELEGANT STYLING
   ========================================================================== */
.template-product .t4s-product__description,
.product-page .product-description {
  margin-bottom: var(--space-2xl) !important;
  padding: var(--space-2xl) !important;
  background: linear-gradient(135deg, var(--brand-white), var(--brand-cream)) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--brand-gray-medium) !important;
  box-shadow: var(--shadow-soft) !important;
  transition: all var(--duration-medium) var(--easing-smooth) !important;
  position: relative !important;
}

.template-product .t4s-product__description::before,
.product-page .product-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-gold), var(--brand-rose-gold));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: width var(--duration-medium);
}

.template-product .t4s-product__description:hover,
.product-page .product-description:hover {
  transform: translateX(8px) !important;
  box-shadow: var(--shadow-medium) !important;
}

.template-product .t4s-product__description:hover::before,
.product-page .product-description:hover::before {
  width: 8px;
}

.template-product .t4s-product__description .t4s-rte p,
.product-page .product-description p {
  font-family: var(--font-modern) !important;
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: var(--brand-black) !important;
  margin: 0 !important;
  letter-spacing: 0.01em !important;
}

/* ==========================================================================
   ANIMATIONS FOR TRUCK ICON
   ========================================================================== */
@keyframes truckMove {
  0%, 100% { 
    transform: translateX(0px);
  }
  50% { 
    transform: translateX(3px);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - ENHANCED
   ========================================================================== */
@media (max-width: 768px) {
  .template-product .t4s-product__title,
  .product-page .product-title {
    font-size: 2rem !important;
    margin-bottom: var(--space-xl) !important;
  }
  
  .template-product .t4s-product-price,
  .product-page .product-price {
    font-size: 1.75rem !important;
    padding: var(--space-md) var(--space-lg) !important;
  }
  
  .template-product .t4s-extra-link a,
  .template-product .size-guide-link a,
  .template-product .t4s-size-guide a,
  .product-page .size-guide a,
  .size-chart-link a {
    font-size: 1.05rem !important;
    padding: var(--space-sm) var(--space-lg) !important;
    min-width: 180px !important;
    min-height: 45px !important;
  }
  
  .template-product .t4s-extra-link a::before,
  .template-product .size-guide-link a::before,
  .template-product .t4s-size-guide a::before,
  .product-page .size-guide a::before,
  .size-chart-link a::before {
    width: 18px !important;
    height: 18px !important;
  }
  
  .template-product .t4s-swatch,
  .product-page .product-variants {
    padding: var(--space-lg) !important;
    margin-bottom: var(--space-xl) !important;
  }
  
  .template-product .t4s-swatch__title,
  .product-page .variant-title {
    font-size: 1.1rem !important;
  }
  
  .template-product .t4s-swatch__item,
  .product-page .variant-option {
    font-size: 0.9rem !important;
    padding: var(--space-sm) var(--space-md) !important;
    min-width: 55px !important;
  }
  
  .template-product .t4s-quantity-selector,
  .product-page .qty-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.2rem !important;
  }
  
  .template-product .t4s-quantity-input,
  .product-page .qty-input {
    width: 70px !important;
    height: 45px !important;
    font-size: 1.2rem !important;
  }
  
  .template-product .t4s-product-form .t4s-product-form__submit,
  .template-product .t4s-product-form .shopify-payment-button__button,
  .template-product .product-form .add-to-cart-btn,
  .template-product .product-form .buy-now-btn,
  .product-page .product-form .add-to-cart-btn,
  .product-page .product-form .buy-now-btn,
  body.template-product .product-form .t4s-product-form__submit,
  body.template-product .product-form .shopify-payment-button__button,
  .template-product .shopify-payment-button .shopify-payment-button__button,
  .product-page .shopify-payment-button .shopify-payment-button__button {
    font-size: 1.6rem !important;
    padding: var(--space-md) var(--space-xl) !important;
    min-width: 220px !important;
    min-height: 50px !important;
  }
  #product-form-10011651014944template--25212747710752__main > div.t4s-product-form__buttons > div.t4s-d-flex.t4s-flex-wrap > button > span.t4s-btn-atc_text{

        font-size: 16px;

  }
  
  .template-product .shopify-payment-button__button::after,
  .product-page .buy-now-btn::after {
    font-size: 1rem !important;
  }
  
  .template-product .t4s-product__description,
  .product-page .product-description {
    padding: var(--space-lg) !important;
  }
  
  .template-product .t4s-product__description .t4s-rte p,
  .product-page .product-description p {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .template-product .t4s-product__title,
  .product-page .product-title {
    font-size: 1.75rem !important;
  }
  
  .template-product .t4s-product-price,
  .product-page .product-price {
    font-size: 1.2rem !important;
  }
  
  .template-product .t4s-extra-link a,
  .template-product .size-guide-link a,
  .template-product .t4s-size-guide a,
  .product-page .size-guide a,
  .size-chart-link a {
    font-size: 0.95rem !important;
    padding: var(--space-xs) var(--space-md) !important;
    min-width: 160px !important;
    min-height: 40px !important;
  }
  
  .template-product .t4s-extra-link a::before,
  .template-product .size-guide-link a::before,
  .template-product .t4s-size-guide a::before,
  .product-page .size-guide a::before,
  .size-chart-link a::before {
    width: 16px !important;
    height: 16px !important;
  }
  
  .template-product .t4s-quantity-wrapper,
  .product-page .quantity-selector {
    margin-right: 0 !important;
    width: fit-content !important;
    align-self: center !important;
  }
  
  .template-product .t4s-product-form .t4s-product-form__submit,
  .template-product .t4s-product-form .shopify-payment-button__button,
  .template-product .product-form .add-to-cart-btn,
  .template-product .product-form .buy-now-btn,
  .product-page .product-form .add-to-cart-btn,
  .product-page .product-form .buy-now-btn,
  body.template-product .product-form .t4s-product-form__submit,
  body.template-product .product-form .shopify-payment-button__button,
  .template-product .shopify-payment-button .shopify-payment-button__button,
  .product-page .shopify-payment-button .shopify-payment-button__button {
    font-size: 1.6rem !important;
    padding: var(--space-sm) var(--space-lg) !important;
    min-width: 200px !important;
    min-height: 45px !important;
    width: 100% !important;
  }
  
  .template-product .shopify-payment-button__button::after,
  .product-page .buy-now-btn::after {
    font-size: 0.9rem !important;
  }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS - فقط في صفحات المنتج
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .template-product *,
  .product-page *,
  body.template-product *,
  [data-template="product"] * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for better accessibility - فقط في صفحات المنتج */
.template-product .t4s-swatch__item:focus,
.template-product .t4s-quantity-selector:focus,
.template-product .t4s-product-form__submit:focus,
.template-product .shopify-payment-button__button:focus,
.product-page .variant-option:focus,
.product-page .qty-btn:focus,
.product-page .add-to-cart-btn:focus,
.product-page .buy-now-btn:focus,
body.template-product .t4s-swatch__item:focus,
body.template-product .t4s-quantity-selector:focus,
body.template-product .t4s-product-form__submit:focus,
body.template-product .shopify-payment-button__button:focus {
  outline: 3px solid var(--brand-gold) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.2) !important;
}

} /* End of product page scope */

/* Footer CSS آمن - لا يؤثر على باقي الموقع */

/* إعادة تعيين القسم الرئيسي للفوتر فقط */
#shopify-section-footer.t4s-section.t4s-section-footer {
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

/* الحاوي الداخلي للفوتر فقط */
#shopify-section-footer .t4s-section-inner.t4s_nt_se_footer {
    background: #000000 !important;
    position: relative;
    z-index: 2;
    padding: 60px 20px !important;
}

/* الأعمدة في الفوتر فقط */
#shopify-section-footer .t4s-custom-col {
    position: relative;
    transition: all 0.4s ease;
    padding: 35px 30px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 25px;
    z-index: 3;
}

#shopify-section-footer .t4s-custom-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

#shopify-section-footer .t4s-custom-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

#shopify-section-footer .t4s-custom-col:hover::before {
    opacity: 1;
}

/* العناوين في الفوتر فقط */
#shopify-section-footer .t4s-col-heading {
    color: #d4af37 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    position: relative;
    margin-bottom: 30px !important;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

#shopify-section-footer .t4s-col-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #e0b252);
    transition: width 0.4s ease;
    border-radius: 2px;
}

#shopify-section-footer .t4s-custom-col:hover .t4s-col-heading::after {
    width: 60px;
}

#shopify-section-footer .t4s-custom-col:hover .t4s-col-heading {
    color: #e0b252 !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* اللوجو المحسن في الفوتر فقط */
#shopify-section-footer .t4s-img-child {
    position: relative;
    margin-bottom: 45px !important;
    text-align: center;
    padding: 25px;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

#shopify-section-footer .t4s-img-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(224, 178, 82, 0.15) 50%, 
        rgba(184, 134, 11, 0.1) 100%);
    border-radius: 18px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

#shopify-section-footer .t4s-img-child img {
    max-width: 160px !important;
    width: 160px !important;
    height: auto;
    transition: all 0.5s ease;
    filter: 
        drop-shadow(0 8px 20px rgba(212, 175, 55, 0.3))
        brightness(1.1)
        contrast(1.08)
        saturate(1.1);
    border-radius: 12px;
    position: relative;
    z-index: 3;
}

#shopify-section-footer .t4s-img-child:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#shopify-section-footer .t4s-img-child:hover::before {
    opacity: 1;
}

#shopify-section-footer .t4s-img-child:hover img {
    transform: scale(1.08);
    filter: 
        drop-shadow(0 15px 40px rgba(212, 175, 55, 0.5))
        brightness(1.2)
        contrast(1.15)
        saturate(1.2);
}

/* أيقونات السوشال ميديا في الفوتر فقط */
#shopify-section-footer .t4s-socials-block {
    margin-bottom: 40px;
    text-align: center;
    padding: 25px 0;
    position: relative;
}

#shopify-section-footer .t4s-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

#shopify-section-footer .t4s-socials a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 15px;
    background: rgba(18, 18, 18, 0.9) !important;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#shopify-section-footer .t4s-socials a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(224, 178, 82, 0.15) 50%, 
        rgba(184, 134, 11, 0.1) 100%);
    border-radius: 13px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

#shopify-section-footer .t4s-socials a:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: #d4af37;
    background: rgba(25, 25, 25, 0.95) !important;
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#shopify-section-footer .t4s-socials a:hover::before {
    opacity: 1;
}

#shopify-section-footer .t4s-socials a svg {
    width: 22px;
    height: 22px;
    fill: #d4af37;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

#shopify-section-footer .t4s-socials a:hover svg {
    fill: #ffffff;
    transform: scale(1.15);
    filter: 
        drop-shadow(0 0 8px rgba(255,255,255,0.6))
        drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

/* تأثيرات مخصصة لكل منصة في الفوتر فقط */
#shopify-section-footer .t4s-socials a[href*="facebook"]:hover {
    border-color: #1877f2;
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.3);
}

#shopify-section-footer .t4s-socials a[href*="instagram"]:hover {
    border-color: #e4405f;
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.3);
}

#shopify-section-footer .t4s-socials a[href*="tiktok"]:hover {
    border-color: #ff0050;
    box-shadow: 0 15px 35px rgba(255, 0, 80, 0.3);
}

#shopify-section-footer .t4s-socials a[href*="twitter"]:hover,
#shopify-section-footer .t4s-socials a[href*="x.com"]:hover {
    border-color: #1da1f2;
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.3);
}

#shopify-section-footer .t4s-socials a[href*="youtube"]:hover {
    border-color: #ff0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

#shopify-section-footer .t4s-socials a[href*="whatsapp"]:hover {
    border-color: #25d366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

#shopify-section-footer .t4s-socials a[href*="snapchat"]:hover {
    border-color: #fffc00;
    box-shadow: 0 15px 35px rgba(255, 252, 0, 0.3);
}

/* الروابط في الفوتر فقط */
#shopify-section-footer .t4s-footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#shopify-section-footer .t4s-footer-menu ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    transition: transform 0.3s ease;
}

#shopify-section-footer .t4s-footer-menu ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

#shopify-section-footer .t4s-footer-menu ul li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

#shopify-section-footer .t4s-footer-menu ul li:hover {
    transform: translateX(8px);
}

#shopify-section-footer .t4s-footer-menu ul li a {
    color: #cccccc !important;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

#shopify-section-footer .t4s-footer-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

#shopify-section-footer .t4s-footer-menu ul li a:hover {
    color: #d4af37 !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

#shopify-section-footer .t4s-footer-menu ul li a:hover::after {
    width: 100%;
}

/* النشرة الإخبارية في الفوتر فقط */
#shopify-section-footer .t4s-newsletter__inner {
    background: rgba(42, 42, 42, 0.8) !important;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

#shopify-section-footer .t4s-newsletter__inner:hover {
    border-color: #d4af37;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

#shopify-section-footer .t4s-newsletter__email {
    border: none !important;
    padding: 18px 25px;
    font-size: 15px;
    color: #ffffff !important;
    background: transparent !important;
    outline: none;
    width: 100%;
}

#shopify-section-footer .t4s-newsletter__email::placeholder {
    color: #aaa !important;
    font-style: italic;
}

#shopify-section-footer .t4s-newsletter__submit {
    background: linear-gradient(135deg, #d4af37, #b8860b) !important;
    color: #ffffff !important;
    border: none;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

#shopify-section-footer .t4s-newsletter__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

#shopify-section-footer .t4s-newsletter__submit:hover {
    background: linear-gradient(135deg, #e0b252, #d4af37) !important;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

#shopify-section-footer .t4s-newsletter__submit:hover::before {
    left: 100%;
}

/* النص الوصفي في الفوتر فقط */
#shopify-section-footer .t4s-text-bl {
    color: #cccccc !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
    text-align: center;
    font-style: italic;
}

/* أنيميشن الدخول للفوتر فقط */
#shopify-section-footer .t4s-col-inner {
    opacity: 0;
    transform: translateY(30px);
    animation: footer-fadeUp 0.6s ease forwards;
}

#shopify-section-footer .bl-footer-0 .t4s-col-inner { animation-delay: 0.1s; }
#shopify-section-footer .bl-footer-4 .t4s-col-inner { animation-delay: 0.2s; }
#shopify-section-footer .bl-footer-6 .t4s-col-inner { animation-delay: 0.3s; }
#shopify-section-footer .bl-footer-10 .t4s-col-inner { animation-delay: 0.4s; }

@keyframes footer-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تحسينات الموبايل للفوتر فقط مع Auto Open */
@media (max-width: 767px) {
    #shopify-section-footer .t4s-section-inner {
        padding: 40px 15px !important;
    }
    
    /* اللوجو في الموبايل للفوتر فقط */
    #shopify-section-footer .t4s-img-child {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 35px !important;
    }
    
    #shopify-section-footer .t4s-img-child img {
        max-width: 130px !important;
        width: 130px !important;
    }
    
    /* السوشال ميديا في الموبايل للفوتر فقط */
    #shopify-section-footer .t4s-socials {
        gap: 12px;
        margin-top: 0;
    }
    
    #shopify-section-footer .t4s-socials a {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    #shopify-section-footer .t4s-socials a svg {
        width: 18px;
        height: 18px;
    }
    
    #shopify-section-footer .t4s-socials a:hover {
        transform: translateY(-5px) scale(1.05);
    }
    
    #shopify-section-footer .t4s-custom-col {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    #shopify-section-footer .t4s-col-heading {
        font-size: 18px !important;
    }
    
    #shopify-section-footer .t4s-newsletter__inner {
        border-radius: 25px;
    }
    
    #shopify-section-footer .t4s-newsletter__email,
    #shopify-section-footer .t4s-newsletter__submit {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    /* محتوى قابل للطي مع Auto Open في الموبايل للفوتر فقط */
    #shopify-section-footer .t4s-footer-content {
        max-height: none !important; /* فتح تلقائي في الموبايل */
        overflow: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 20px 0 !important;
        transition: all 0.4s ease;
    }
    
    /* إزالة تأثير الطي في الموبايل للفوتر فقط */
    #shopify-section-footer .t4s-footer-heading-mobile {
        pointer-events: none; /* منع النقر في الموبايل */
        background: transparent !important; /* إزالة الخلفية */
    }
    
    #shopify-section-footer .t4s-footer-collapse-icon {
        display: none !important; /* إخفاء أيقونة الطي في الموبايل */
    }
    
    /* تأكيد عرض المحتوى في الموبايل للفوتر فقط */
    #shopify-section-footer .t4s-footer-content,
    #shopify-section-footer .is--footer_opened .t4s-footer-content {
        max-height: none !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        display: block !important;
        visibility: visible !important;
    }
}

/* تحسينات إضافية للفوتر فقط */
#shopify-section-footer .t4s-footer-wrap {
    position: relative;
    z-index: 3;
}

/* إزالة الفوكس الافتراضي للفوتر فقط */
#shopify-section-footer button:focus,
#shopify-section-footer input:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* ضمان عدم تأثير الكود على عناصر أخرى */
#shopify-section-footer * {
    box-sizing: border-box;
}
/* الطريقة الأولى: تحديد بصفحة معينة */
/* حط الكود دا فقط في صفحة المنتج */
.product-page .t4s-pr-addtocart,
.single-product .t4s-pr-addtocart,
.product-template .t4s-pr-addtocart {
    background: linear-gradient(45deg, #d4af37, #ffd700) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 900 !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.product-page .t4s-pr-addtocart:hover,
.single-product .t4s-pr-addtocart:hover,
.product-template .t4s-pr-addtocart:hover {
    background: linear-gradient(45deg, #ffd700, #d4af37) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
    color: #ffffff !important;
}

/* الطريقة التانية: تحديد بكونتينر معين */
.product-form .t4s-pr-addtocart,
.product-details .t4s-pr-addtocart,
.product-actions .t4s-pr-addtocart {
    background: linear-gradient(45deg, #d4af37, #ffd700) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 900 !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

/* الطريقة التالتة: تحديد بـ data attribute */
[data-section-type="product"] .t4s-pr-addtocart,
[data-template="product"] .t4s-pr-addtocart {
    background: linear-gradient(45deg, #d4af37, #ffd700) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 900 !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

/* الطريقة الرابعة: كلاس مخصوص */
.golden-buttons .t4s-pr-addtocart {
    background: linear-gradient(45deg, #d4af37, #ffd700) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 900 !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

.golden-buttons .t4s-pr-addtocart:hover {
    background: linear-gradient(45deg, #ffd700, #d4af37) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
    color: #ffffff !important;
}

/* تطبيق نفس المبدأ على باقي الأزرار */
.golden-buttons .t4s-pr-addtocart *,
.golden-buttons .t4s-pr-addtocart span,
.golden-buttons .t4s-pr-addtocart .t4s-text-pr {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 900 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 14px !important;
}

.golden-buttons .t4s-btn-filter {
    background: linear-gradient(45deg, #d4af37, #ffd700) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
    font-weight: 900 !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.golden-buttons .t4s-btn-filter:hover {
    background: linear-gradient(45deg, #ffd700, #d4af37) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
    color: #ffffff !important;
}

/* للموبايل - بنفس المبدأ */
@media (max-width: 767px) {
    .golden-buttons .t4s-pr-addtocart {
        padding: 15px 25px !important;
        font-size: 16px !important;
        border-radius: 30px !important;
        width: 100% !important;
        max-width: 180px !important;
        text-align: center !important;
        display: block !important;
        margin: 10px auto !important;
    }
}
/* تنسيق شريط الإعلانات المتحرك - بدون أنيميشن */

/* القائمة الرئيسية */
.t4s-navigation {
    position: relative;
    z-index: 2;
}

.t4s-nav__ul {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
}

/* عناصر القائمة */
.t4s-menu-item a {
    color: #b8860b !important;
    font-weight: 400 !important;
    font-size: 19px !important;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 12px 18px !important;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.t4s-menu-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.1) 0%, 
        rgba(212, 175, 55, 0.15) 50%, 
        rgba(184, 134, 11, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.t4s-menu-item a:hover {
    color: #8b6914 !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.t4s-menu-item a:hover::before {
    opacity: 1;
}/* تنسيق الهيدر - احترافي وأنيق بألوان اللوجو */

/* الهيدر الرئيسي */
.t4s-header {
    background: linear-gradient(135deg, 
        #f8f6f0 0%, 
        #f5f2eb 50%, 
        #f8f6f0 100%) !important;
    position: relative;
    border-bottom: 2px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 2px 20px rgba(184, 134, 11, 0.15);
    z-index: 9999 !important;
}

/* خلفية الهيدر */
.t4s-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 50%, rgba(184, 134, 11, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* خط ذهبي في الأسفل */
.t4s-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #b8860b 20%, 
        #d4af37 50%, 
        #b8860b 80%, 
        transparent 100%);
    opacity: 0.7;
    z-index: 10;
}

/* الصف الرئيسي */
.t4s-header .t4s-row {
    position: relative;
    z-index: 3;
    padding: 15px 0;
}

/* زر القائمة الجانبية للموبايل */
.t4s-push-menu-btn {
    background: rgba(184, 134, 11, 0.1) !important;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 10px 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.t4s-push-menu-btn:hover {
    background: rgba(184, 134, 11, 0.2) !important;
    border-color: #b8860b;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.t4s-push-menu-btn svg {
    color: #b8860b !important;
    transition: all 0.3s ease;
}

.t4s-push-menu-btn:hover svg {
    color: #8b6914 !important;
}

/* لوجو الهيدر - بدون إطار */
.t4s-header__logo {
    position: relative;
}

.t4s-header__logo img {
    filter: 
        drop-shadow(0 2px 8px rgba(184, 134, 11, 0.2))
        brightness(1.05);
}

/* القائمة الرئيسية */
.t4s-navigation {
    position: relative;
    z-index: 2;
}

.t4s-nav__ul {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
}

/* عناصر القائمة */
.t4s-menu-item a {
    color:#5c450a !important;
    font-weight: 400 !important;
    font-size: 19px !important;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 12px 18px !important;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.t4s-menu-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.1) 0%, 
        rgba(212, 175, 55, 0.15) 50%, 
        rgba(184, 134, 11, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.t4s-menu-item a:hover {
    color: #8b6914 !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.t4s-menu-item a:hover::before {
    opacity: 1;
}

/* القائمة المنسدلة */
.t4s-sub-menu {
    background: rgba(248, 246, 240, 0.95) !important;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2);
    padding: 15px !important;
    margin-top: 10px;
}

.t4s-sub-menu .t4s-menu-item a {
    color:rgb(0, 0, 0) !important;
    padding: 10px 15px !important;
    margin: 5px 0;
    border-radius: 10px;
}

.t4s-sub-menu .t4s-menu-item a:hover {
    background: rgba(184, 134, 11, 0.15);
    color: #8b6914 !important;
}

/* أيقونات الهيدر */
.t4s-site-nav__icons {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.15);
    gap: 15px;
}

.t4s-site-nav__icon {
    position: relative;
}

.t4s-site-nav__icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.t4s-site-nav__icon a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.1) 0%, 
        rgba(212, 175, 55, 0.15) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.t4s-site-nav__icon a:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #b8860b;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.t4s-site-nav__icon a:hover::before {
    opacity: 1;
}

.t4s-site-nav__icon svg {
    color: #b8860b !important;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.t4s-site-nav__icon a:hover svg {
    color: #8b6914 !important;
    transform: scale(1.1);
}

/* عداد السلة - محسن الوضوح */
.t4s-count-box {
    background: linear-gradient(135deg, #b8860b, #d4af37) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    text-align: center;
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    border: 2px solid #f8f6f0 !important;
    box-shadow: 0 3px 12px rgba(184, 134, 11, 0.5) !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

/* إجمالي السلة */
.t4s-h-cart-totals {
    color: #b8860b !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-left: 10px;
}

.t4s-h-cart__total {
    color: #8b6914 !important;
    font-weight: 700 !important;
}

/* تحسينات الموبايل - منع التمرير الأفقي */
@media (max-width: 1024px) {
    .t4s-header .t4s-row {
        padding: 12px 0;
        margin: 0 !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    
    .t4s-header .t4s-col-item {
        padding: 0 5px !important;
        flex-shrink: 1;
    }
    
    .t4s-header__logo {
        /* بدون padding أو styling إضافي */
    }
    
    .t4s-header__logo img {
        max-width: 100px !important;
        width: 100px !important;
        height: auto !important;
    }
    
    .t4s-site-nav__icons {
        padding: 6px 8px;
        border-radius: 15px;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .t4s-site-nav__icon a {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .t4s-site-nav__icon svg {
        width: 16px;
        height: 16px;
    }
    
    .t4s-count-box {
        width: 18px !important;
        height: 18px !important;
        line-height: 18px !important;
        font-size: 10px !important;
        top: -5px !important;
        right: -5px !important;
    }
    
    .t4s-push-menu-btn {
        padding: 6px 8px;
        border-radius: 10px;
        flex-shrink: 0;
        z-index: 10001 !important;
    }
    
    .t4s-push-menu-btn svg {
        width: 24px !important;
        height: 14px !important;
    }
}

@media (max-width: 767px) {
    .t4s-header .t4s-row {
        padding: 10px 0;
        margin: 0 !important;
    }
    
    .t4s-header .t4s-col-item {
        padding: 0 3px !important;
    }
    
    .t4s-header__logo {
        /* بدون styling إضافي */
    }
    
    .t4s-header__logo img {
        max-width: 90px !important;
        width: 90px !important;
        height: auto !important;
    }
    
    .t4s-site-nav__icons {
        padding: 5px 6px;
        gap: 6px;
    }
    
    .t4s-site-nav__icon a {
        width: 30px;
        height: 30px;
        border: 1px solid rgba(184, 134, 11, 0.15);
    }
    
    .t4s-site-nav__icon svg {
        width: 14px;
        height: 14px;
    }
    
    .t4s-push-menu-btn {
        padding: 5px 7px;
        z-index: 10002 !important;
    }
    
    .t4s-push-menu-btn svg {
        width: 22px !important;
        height: 12px !important;
    }
    
    .t4s-count-box {
        width: 16px !important;
        height: 16px !important;
        line-height: 16px !important;
        font-size: 9px !important;
        top: -4px !important;
        right: -4px !important;
    }
    
    /* النص في إجمالي السلة أصغر */
    .t4s-h-cart-totals {
        font-size: 12px !important;
        margin-left: 5px;
    }
}

/* منع التمرير الأفقي على كامل الهيدر */
.t4s-header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

.t4s-header .t4s-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
}

/* تأكيد عدم وجود margins سالبة */
.t4s-header .t4s-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.t4s-header [class*="t4s-col"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
    min-width: 0 !important;
    flex-basis: auto !important;
}

/* تأثيرات إضافية */
.t4s-header {
    backdrop-filter: blur(10px);
}

/* نقاط زخرفية في الخلفية */
.t4s-header {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 134, 11, 0.03) 1px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 1px, transparent 2px);
    background-size: 40px 40px;
}

/* تحسين الوضوح */
.t4s-menu-item a,
.t4s-h-cart-totals {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تأثير الهوفر على الهيدر كامل */
.t4s-header:hover {
    box-shadow: 0 4px 30px rgba(184, 134, 11, 0.2);
}

/* تحسين الأداء */
.t4s-header__logo,
.t4s-site-nav__icon a,
.t4s-menu-item a,
.t4s-push-menu-btn {
    will-change: transform;
}

/* الهيدر الثابت */
.t4s-header.t4s-header--sticky {
    background: rgba(248, 246, 240, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 25px rgba(184, 134, 11, 0.2);
    z-index: 9999 !important;
}

.t4s-header.t4s-header--sticky .t4s-nav__ul {
    background: rgba(255, 255, 255, 0.7);
}

.t4s-header.t4s-header--sticky .t4s-site-nav__icons {
    background: rgba(255, 255, 255, 0.8);
}

/* z-index إضافي للموبايل ميتو */
@media (max-width: 1024px) {
    /* القائمة الجانبية للموبايل */
    .t4s-menu-drawer,
    [data-drawer-options*="t4s-menu-drawer"] {
        z-index: 99999 !important;
    }
    
    /* الخلفية المظلمة للقائمة */
    .t4s-drawer-overlay,
    .t4s-overlay {
        z-index: 99998 !important;
    }
    
    /* محتوى القائمة */
    .t4s-drawer-content {
        z-index: 99999 !important;
    }
    
    /* زر إغلاق القائمة */
    .t4s-drawer-close {
        z-index: 100000 !important;
    }
}
/* استايل الأزرار فقط - النص أبيض واضح */
<style>
/* فورس override لكل العناصر */
div[id="header"][class="minimal-header"] {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #D4AF37 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    border: 1px solid rgba(184, 134, 11, 0.1) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    position: relative !important;
    max-width: 600px !important;
    margin: 20px auto !important;
}

/* تأثير الـ shimmer */
div[id="header"][class="minimal-header"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* قسم التقييم الرئيسي */
div[id="header"][class="minimal-header"] .summary {
    padding: 30px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important;
    background: none !important;
}

div[id="header"][class="minimal-header"] .summary-content {
    background: none !important;
    border: none !important;
    color: white !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    cursor: pointer !important;
    width: 100% !important;
}

/* إضافة رقم التقييم */
div[id="header"][class="minimal-header"] span[data-testid="rating-summary-avg"]::before {
    content: '5.0';
    font-size: 3rem !important;
    font-weight: bold !important;
    color: white !important;
    margin-right: 15px !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2) !important;
    display: inline-block !important;
}

/* النجوم الرئيسية */
div[id="header"][class="minimal-header"] span[data-testid="rating-summary-avg"] {
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-size: 2.5rem !important;
    font-weight: bold !important;
}

div[id="header"][class="minimal-header"] span[data-testid="rating-summary-avg"] ul {
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

div[id="header"][class="minimal-header"] svg[class*="loox-icon star text-large"] {
    color: #FFD700 !important;
    font-size: 28px !important;
    width: 28px !important;
    height: 28px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
    animation: starFloat 3s ease-in-out infinite !important;
}

/* عداد المراجعات */
div[id="header"][class="minimal-header"] div[data-testid="rating-summary-count"] {
    font-size: 1.2rem !important;
    color: white !important;
    opacity: 0.9 !important;
    font-weight: 300 !important;
}

div[id="header"][class="minimal-header"] div[data-testid="rating-summary-count"] span {
    color: white !important;
}

/* السهم */
div[id="header"][class="minimal-header"] .header-chevron svg {
    fill: white !important;
}

div[id="header"][class="minimal-header"] .header-chevron svg path {
    fill: white !important;
}

/* المنطقة المنسدلة */
div[id="header"][class="minimal-header"] .loox-dropdown.reviews-dist {
    background: white !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(184, 134, 11, 0.1) !important;
    border-top: none !important;
}

div[id="header"][class="minimal-header"] .review-dist-content {
    padding: 30px !important;
}

/* التقييم الكبير */
div[id="header"][class="minimal-header"] .review-dist-content > span {
    color: #B8860B !important;
    font-weight: bold !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
}

div[id="header"][class="minimal-header"] svg[class*="loox-star"] {
    color: #DAA520 !important;
    margin-right: 12px !important;
}

/* صفوف التقييم */
div[id="header"][class="minimal-header"] tr[class*="rating-dist-row"] {
    transition: all 0.3s ease !important;
}

div[id="header"][class="minimal-header"] tr[class*="rating-dist-row"]:hover {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(218, 165, 32, 0.12)) !important;
    transform: translateX(5px) !important;
}

div[id="header"][class="minimal-header"] tr[class*="rating-dist-row"] td {
    padding: 12px 16px !important;
    border-radius: 12px !important;
}

/* النجوم في الصفوف */
div[id="header"][class="minimal-header"] tr svg[class*="loox-icon star"]:not([class*="text-large"]) {
    color: #DAA520 !important;
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
}

div[id="header"][class="minimal-header"] tr svg[data-lx-fill="empty"] {
    color: #E0E0E0 !important;
}

/* شرائح التقدم */
div[id="header"][class="minimal-header"] .loox-progress {
    height: 8px !important;
    background: #F0F0F0 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

div[id="header"][class="minimal-header"] .loox-progress-value {
    height: 100% !important;
    background: linear-gradient(90deg, #B8860B, #DAA520, #D4AF37) !important;
    border-radius: 4px !important;
    transition: width 1s ease-out !important;
}

/* أرقام المراجعات */
div[id="header"][class="minimal-header"] .reviews-num {
    font-weight: 600 !important;
    color: #666 !important;
}

/* قسم الترتيب */
div[id="header"][class="minimal-header"] nav[class="menu"] {
    border-top: 1px solid #E8E8E8 !important;
    padding: 20px 30px !important;
    background: #FAFAFA !important;
    border-radius: 0 0 16px 16px !important;
}

div[id="header"][class="minimal-header"] button[id="menu-btn"] {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 12px 16px !important;
    background: white !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    color: #2C3E50 !important;
}

div[id="header"][class="minimal-header"] button[id="menu-btn"]:hover {
    border-color: #DAA520 !important;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2) !important;
}

div[id="header"][class="minimal-header"] span[id="menu-icon-svg"] {
    color: #DAA520 !important;
    transition: transform 0.3s ease !important;
}

div[id="header"][class="minimal-header"] button[id="menu-btn"]:hover span[id="menu-icon-svg"] {
    transform: rotate(90deg) !important;
}

/* إخفاء الستايلات الأصلية */
div[id="header"][class="minimal-header"] style {
    display: none !important;
}

/* الأنيميشنز */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes starFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* موبايل */
@media (max-width: 768px) {
    div[id="header"][class="minimal-header"] {
        margin: 10px !important;
        border-radius: 12px !important;
    }
    
    div[id="header"][class="minimal-header"] .summary {
        padding: 25px 20px !important;
    }
    
    div[id="header"][class="minimal-header"] span[data-testid="rating-summary-avg"]::before {
        font-size: 2.5rem !important;
    }
    
    div[id="header"][class="minimal-header"] svg[class*="loox-icon star text-large"] {
        font-size: 24px !important;
        width: 24px !important;
        height: 24px !important;
    }
}
</style>

.t4s_des_title_3 .t4s-section-title.t4s-title { font-size: 3rem !important; font-weight: 700 !important; color: #2C3E50 !important; margin-bottom: 25px !important; position: relative !important; display: inline-block !important; letter-spacing: -0.5px !important; } .t4s_des_title_3 .t4s-section-title.t4s-title span { color: #2C3E50 !important; position: relative !important; } .t4s_des_title_3 .t4s-section-title.t4s-title::after { content: '' !important; position: absolute !important; bottom: -12px !important; left: 50% !important; transform: translateX(-50%) !important; width: 120px !important; height: 20px !important; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath d='M0,10 Q30,2 60,10 T120,10' stroke='%23FF8C00' stroke-width='3' fill='none' stroke-linecap='round' stroke-dasharray='120' stroke-dashoffset='120'%3E%3Canimate attributeName='stroke-dashoffset' values='120;0' dur='1.5s' begin='0.5s' fill='freeze'/%3E%3C/path%3E%3C/svg%3E") no-repeat center !important; background-size: contain !important; display: block !important; } .t4s-top-heading.t4s_des_title_3 .t4s-section-title.t4s-title::after { content: '' !important; position: absolute !important; bottom: -12px !important; left: 50% !important; transform: translateX(-50%) !important; width: 120px !important; height: 20px !important; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath d='M0,10 Q30,2 60,10 T120,10' stroke='%23FF8C00' stroke-width='3' fill='none' stroke-linecap='round' stroke-dasharray='120' stroke-dashoffset='120'%3E%3Canimate attributeName='stroke-dashoffset' values='120;0' dur='1.5s' begin='0.5s' fill='freeze'/%3E%3C/path%3E%3C/svg%3E") no-repeat center !important; background-size: contain !important; display: block !important; } @media (max-width: 1024px) { .t4s_des_title_3 .t4s-section-title.t4s-title { font-size: 2.5rem !important; } .t4s_des_title_3 .t4s-section-title.t4s-title::after, .t4s-top-heading.t4s_des_title_3 .t4s-section-title.t4s-title::after { width: 100px !important; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q25,2 50,10 T100,10' stroke='%23FF8C00' stroke-width='3' fill='none' stroke-linecap='round' stroke-dasharray='100' stroke-dashoffset='100'%3E%3Canimate attributeName='stroke-dashoffset' values='100;0' dur='1.5s' begin='0.5s' fill='freeze'/%3E%3C/path%3E%3C/svg%3E") no-repeat center !important; } } @media (max-width: 768px) { .t4s_des_title_3 .t4s-section-title.t4s-title { font-size: 2.2rem !important; } .t4s_des_title_3 .t4s-section-title.t4s-title::after, .t4s-top-heading.t4s_des_title_3 .t4s-section-title.t4s-title::after { width: 80px !important; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 20'%3E%3Cpath d='M0,10 Q20,2 40,10 T80,10' stroke='%23FF8C00' stroke-width='3' fill='none' stroke-linecap='round' stroke-dasharray='80' stroke-dashoffset='80'%3E%3Canimate attributeName='stroke-dashoffset' values='80;0' dur='1.5s' begin='0.5s' fill='freeze'/%3E%3C/path%3E%3C/svg%3E") no-repeat center !important; } } @media (max-width: 480px) { .t4s_des_title_3 .t4s-section-title.t4s-title { font-size: 2rem !important; } .t4s_des_title_3 .t4s-section-title.t4s-title::after, .t4s-top-heading.t4s_des_title_3 .t4s-section-title.t4s-title::after { width: 60px !important; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0,10 Q15,2 30,10 T60,10' stroke='%23FF8C00' stroke-width='3' fill='none' stroke-linecap='round' stroke-dasharray='60' stroke-dashoffset='60'%3E%3Canimate attributeName='stroke-dashoffset' values='60;0' dur='1.5s' begin='0.5s' fill='freeze'/%3E%3C/path%3E%3C/svg%3E") no-repeat center !important; } }

div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"].t4s-section-inner { background: linear-gradient(135deg, rgba(184, 134, 11, 0.02) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, rgba(218, 165, 32, 0.02) 100%) !important; border-radius: 24px !important; box-shadow: 0 20px 60px rgba(184, 134, 11, 0.08), 0 8px 30px rgba(0, 0, 0, 0.04) !important; position: relative !important; overflow: hidden !important; margin: 60px auto !important; padding: 50px 30px !important; border: 1px solid rgba(184, 134, 11, 0.08) !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"].t4s-section-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent 0%, #B8860B 25%, #DAA520 50%, #D4AF37 75%, transparent 100%); z-index: 1; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-top-heading.t4s_des_title_1 { position: relative !important; z-index: 3 !important; margin-bottom: 50px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title { font-size: 3.5rem !important; font-weight: 800 !important; color: #1a1a1a !important; margin-bottom: 25px !important; text-shadow: none !important; position: relative !important; display: inline-block !important; letter-spacing: -0.5px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title span { background: linear-gradient(135deg, #B8860B 0%, #DAA520 30%, #D4AF37 60%, #F4D03F 100%) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; position: relative !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 100px; height: 5px; background: linear-gradient(90deg, transparent 0%, #B8860B 20%, #DAA520 50%, #D4AF37 80%, transparent 100%); border-radius: 3px; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title::before { content: '✦'; position: absolute; top: -8px; left: -15px; color: #DAA520; font-size: 1rem; opacity: 0.6; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-row.t4s-align-items-center { position: relative !important; z-index: 2 !important; gap: 25px !important; display: flex !important; flex-wrap: nowrap !important; justify-content: center !important; align-items: stretch !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-item.t4s-col-item { margin-bottom: 0 !important; flex: 1 !important; min-width: 280px !important; max-width: 380px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-item__wrapper { height: 100% !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner { background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%) !important; border-radius: 24px !important; padding: 35px 30px !important; height: 100% !important; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 4px 20px rgba(184, 134, 11, 0.04) !important; border: 1px solid rgba(0, 0, 0, 0.04) !important; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; position: relative !important; overflow: hidden !important; display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #D4AF37 100%); opacity: 0; transition: all 0.4s ease; z-index: -1; border-radius: 24px; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner::after { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: linear-gradient(135deg, #B8860B, #DAA520, #D4AF37); opacity: 0; transition: opacity 0.4s ease; z-index: -2; border-radius: 26px; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover { transform: translateY(-8px) scale(1.02) !important; box-shadow: 0 25px 60px rgba(184, 134, 11, 0.15), 0 12px 40px rgba(0, 0, 0, 0.08) !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover::before { opacity: 1; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover::after { opacity: 1; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover .t4s-iconbox-head, div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover .t4s-iconbox-des, div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover .t4s-iconbox-heading, div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover .t4s-iconbox-des p { color: white !important; z-index: 3 !important; position: relative !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover .t4s-iconbox-icon { background: rgba(255, 255, 255, 0.2) !important; backdrop-filter: blur(10px) !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner:hover .t4s-iconbox-icon i { color: white !important; transform: scale(1.1) !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-head { margin-bottom: 25px !important; position: relative !important; z-index: 2 !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-icon { width: 85px !important; height: 85px !important; border-radius: 50% !important; background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(218, 165, 32, 0.12) 50%, rgba(212, 175, 55, 0.08) 100%) !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 20px !important; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; box-shadow: 0 8px 30px rgba(184, 134, 11, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important; position: relative !important; border: 1px solid rgba(184, 134, 11, 0.1) !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-icon i { color: #B8860B !important; font-size: 50px !important; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; position: relative !important; z-index: 2 !important; font-weight: 600 !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-heading { font-size: 1.6rem !important; font-weight: 700 !important; color: #1a1a1a !important; margin-bottom: 15px !important; transition: all 0.3s ease !important; line-height: 1.2 !important; text-align: center !important; letter-spacing: -0.3px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-des { position: relative !important; z-index: 2 !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-des p { color: #4a4a4a !important; font-size: 1.3rem !important; line-height: 1.6 !important; margin: 0 !important; transition: all 0.3s ease !important; text-align: center !important; font-weight: 400 !important; } @media (max-width: 1200px) { div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-item.t4s-col-item { min-width: 250px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner { padding: 30px 25px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-icon { width: 75px !important; height: 75px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-icon i { font-size: 42px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-heading { font-size: 1.4rem !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-des p { font-size: 1.2rem !important; } } @media (max-width: 1024px) { div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-row.t4s-align-items-center { flex-wrap: wrap !important; gap: 30px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-item.t4s-col-item { min-width: 300px !important; margin-bottom: 25px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title { font-size: 3rem !important; } } @media (max-width: 768px) { div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"].t4s-section-inner { margin: 40px 15px !important; padding: 40px 25px !important; border-radius: 20px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title { font-size: 2.8rem !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-item.t4s-col-item { min-width: 100% !important; margin-bottom: 25px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner { padding: 30px 25px !important; border-radius: 20px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-heading { font-size: 1.6rem !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-des p { font-size: 1.4rem !important; } } @media (max-width: 480px) { div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"].t4s-section-inner { margin: 30px 10px !important; padding: 35px 20px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-section-title.t4s-title { font-size: 2.4rem !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-inner { padding: 25px 20px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-icon { width: 70px !important; height: 70px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-icon i { font-size: 38px !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-heading { font-size: 1.5rem !important; } div[class*="t4s_nt_se_template--25212747252000__iconbox_2_mUdXfC"] .t4s-iconbox-des p { font-size: 1.3rem !important; } }