@import "https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;700&display=swap";
/* ========================================
   MODERN CAR ACCESSORIES STORE DESIGN
   Primary Blue: #0066CC | Gray: #6B7280
   ======================================== */

:root {
  --primary-blue: #0066CC;
  --blue-hover: #0057a7;
  --gray-bg: #F4F5F7;
  --gray-text: #6B7280;
  --gray-dark: #1F2937;
  --card-bg: #FFFFFF;
  --shadow-base: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,102,204,0.15);
  --border-radius: 16px;
  --transition-fast: 0.2s cubic-bezier(.77,0,.18,1);
  --transition-smooth: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ========================================
   BASE STYLES
   ======================================== */

body {
  background: var(--gray-bg);
  color: var(--gray-text);
  font-family: 'Cairo', Arial, sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */



.store-header.fixed-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-base);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}

.store-header.hide-on-scroll {
  transform: translateY(-100%);
}

.main-nav-container {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
}

.main-nav-container a,
.header-btn {
  color: var(--primary-blue);
  transition: color var(--transition-fast);
  font-weight: 500;
}

.main-nav-container a:hover,
.header-btn:hover {
  color: var(--blue-hover);
}

.logo-light {
  height: 3rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.04));
  transition: transform var(--transition-fast);
}

.logo-light:hover {
  transform: scale(1.03);
}

/* Cart icon animation */
.s-cart-summary-wrapper {
  position: relative;
  transition: transform var(--transition-fast);
}

.s-cart-summary-wrapper:hover {
  transform: scale(1.05);
}

.s-cart-summary-count {
  background: var(--primary-blue) !important;
  color: #fff !important;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ========================================
   PRODUCT CARDS (HOME & LISTING)
   ======================================== */

.s-product-card-entry {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0, 102, 204, 0.06);
  margin: 0 0 1.25rem 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 420px;
}

@media (min-width: 768px) {
  .s-product-card-entry {
    height: 480px;
  }
}

.s-product-card-entry:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.s-product-card-image {
  position: relative;
  padding: 1rem;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.s-product-card-image-contain {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0,102,204,0.04);
}

.s-product-card-entry:hover .s-product-card-image-contain {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,102,204,0.13);
}

.s-product-card-content {
  padding: 0.75rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.s-product-card-props {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.s-product-card-category,
.s-product-card-brand {
  background: linear-gradient(135deg, #E8F1FF 0%, #F0F7FF 100%);
  color: var(--primary-blue);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.s-product-card-content-title {
  text-align: center;
  margin: 0.25rem 0;
  min-height: 36px;
  max-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.s-product-card-content-title a {
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: color var(--transition-fast);
  text-wrap: wrap;
}

.s-product-card-entry:hover .s-product-card-content-title a {
  color: var(--primary-blue);
}

.s-product-card-price {
  color: var(--primary-blue);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.s-product-card-content-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #F3F4F6;
}

.s-product-card-content-footer .s-button-element {
  width: 100%;
  background: var(--primary-blue);
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-size: 13px;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.s-product-card-content-footer .s-button-element:hover {
  background: var(--blue-hover);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.25);
  transform: translateY(-1px);
}

.s-product-card-content-footer .s-button-element:active {
  transform: scale(0.96);
}

/* ========================================
   CART PAGE STYLES
   ======================================== */

.cart-page {
  padding: 2rem 0;
}

.cart-summary {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-base);
  position: sticky;
  top: 100px;
}

.cart-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,102,204,0.06);
  transition: all var(--transition-fast);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(-4px);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 0.5rem;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform var(--transition-smooth);
}

.cart-item:hover .cart-item-image img {
  transform: scale(1.05);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  color: var(--gray-dark);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--primary-blue);
  font-size: 18px;
  font-weight: 700;
}

.cart-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 0.25rem;
}

.cart-quantity-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  border-radius: 6px;
  color: var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-quantity-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.1);
}

.cart-remove-btn {
  color: #DC2626;
  background: #FEE2E2;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-remove-btn:hover {
  background: #DC2626;
  color: #fff;
  transform: scale(1.05);
}

.cart-checkout-btn {
  width: 100%;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.cart-checkout-btn:hover {
  background: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
  transform: translateY(-2px);
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */

.product-single {
  padding: 2rem 0;
}

.product-images-container {
  position: sticky;
  top: 100px;
}

.product-main-image {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-base);
}

.product-main-image img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-main-image:hover img {
  transform: scale(1.05);
}

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  background: var(--gray-bg);
  padding: 0.5rem;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.product-info-container {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-base);
}

.product-title {
  color: var(--gray-dark);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #E8F1FF 0%, #F0F7FF 100%);
  border-radius: 12px;
}

.product-price {
  color: var(--primary-blue);
  font-size: 32px;
  font-weight: 700;
}

.product-old-price {
  color: var(--gray-text);
  font-size: 20px;
  text-decoration: line-through;
}

.product-options {
  margin: 2rem 0;
}

.product-option-label {
  color: var(--gray-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.product-option-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-option-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #E5E7EB;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  color: var(--gray-text);
}

.product-option-btn:hover,
.product-option-btn.active {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, #E8F1FF 0%, #F0F7FF 100%);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.product-add-to-cart {
  width: 100%;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 1.25rem;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
  margin-top: 1.5rem;
}

.product-add-to-cart:hover {
  background: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
  transform: translateY(-2px);
}

.product-description {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.product-description h3 {
  color: var(--gray-dark);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description p {
  color: var(--gray-text);
  line-height: 1.8;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rippleEffect {
  0% { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.btn-ripple {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: rippleEffect 0.6s ease-out;
}

[data-animate="fade-in"] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}

[data-animate="fade-in"].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 767px) {
  .s-product-card-entry {
    height: 380px;
  }
  
  .product-info-container {
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 22px;
  }
  
  .product-price {
    font-size: 26px;
  }
  
  .cart-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-item-image {
    width: 100%;
    height: 200px;
  }
}

/* Swiper fix */
.s-products-slider-wrapper.s-slider-wrapper,
.s-slider-container {
  display: block !important;
}

/* ========================================
   PRODUCT GRID - RESPONSIVE 2 CARDS ON MOBILE
   ======================================== */

.products-wrapper,
.product-list,
.products-container,
[class*="product-grid"] {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.5rem !important;
  width: 100% !important;
  padding: 0.4rem !important;
}

@media (min-width: 400px) {
  .products-wrapper,
  .product-list,
  .products-container,
  [class*="product-grid"] {
    gap: 0.6rem !important;
    padding: 0.5rem !important;
  }
}

@media (min-width: 768px) {
  .products-wrapper,
  .product-list,
  .products-container,
  [class*="product-grid"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  .products-wrapper,
  .product-list,
  .products-container,
  [class*="product-grid"] {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }
}

/* Ensure cards take full grid cell width */
.s-product-card-entry {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
}

/* ========================================
   COMPACT PRODUCT CARDS FOR MOBILE (2 CARDS/ROW)
   ======================================== */

/* Very small phones - ultra compact */
.s-product-card-entry {
  padding: 0.4rem !important;
  height: 260px !important;
  margin: 0 !important;
  border-radius: 12px !important;
}

/* Small phones 400px+ */
@media (min-width: 400px) {
  .s-product-card-entry {
    padding: 0.5rem !important;
    height: 290px !important;
  }
}

/* Larger phones 480px+ */
@media (min-width: 480px) {
  .s-product-card-entry {
    padding: 0.6rem !important;
    height: 320px !important;
  }
}

/* Tablets 768px+ */
@media (min-width: 768px) {
  .s-product-card-entry {
    padding: 0.7rem 0.7rem 0.9rem 0.7rem !important;
    height: 360px !important;
    border-radius: 14px !important;
  }
}

/* Image section - very compact on mobile */
.s-product-card-image {
  padding: 0.3rem !important;
}

@media (min-width: 400px) {
  .s-product-card-image {
    padding: 0.4rem !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-image {
    padding: 0.5rem !important;
  }
}

/* Content section */
.s-product-card-content {
  padding: 0.25rem 0.15rem !important;
  gap: 0.15rem !important;
}

@media (min-width: 400px) {
  .s-product-card-content {
    padding: 0.3rem 0.2rem !important;
    gap: 0.2rem !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-content {
    padding: 0.3rem 0 !important;
    gap: 0.25rem !important;
  }
}

/* Title - smaller on mobile */
.s-product-card-content-title {
  min-height: 24px !important;
  max-height: 28px !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  margin: 0.1rem 0 !important;
}

@media (min-width: 400px) {
  .s-product-card-content-title {
    min-height: 26px !important;
    max-height: 30px !important;
    font-size: 10.5px !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-content-title {
    min-height: 28px !important;
    max-height: 32px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
}

/* Footer section */
.s-product-card-content-footer {
  padding-top: 0.25rem !important;
  gap: 0.3rem !important;
  margin-top: auto !important;
  border-top: 1px solid #F3F4F6 !important;
}

@media (min-width: 400px) {
  .s-product-card-content-footer {
    padding-top: 0.3rem !important;
    gap: 0.35rem !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-content-footer {
    gap: 0.4rem !important;
  }
}

/* Category/Brand badges */
.s-product-card-category,
.s-product-card-brand {
  padding: 1px 4px !important;
  font-size: 7px !important;
}

@media (min-width: 400px) {
  .s-product-card-category,
  .s-product-card-brand {
    padding: 2px 5px !important;
    font-size: 8px !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-category,
  .s-product-card-brand {
    padding: 2px 6px !important;
    font-size: 9px !important;
  }
}

/* Price - smaller on mobile */
.s-product-card-price {
  font-size: 12px !important;
}

@media (min-width: 400px) {
  .s-product-card-price {
    font-size: 13px !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-price {
    font-size: 14px !important;
  }
}

/* Wishlist button - smaller on mobile */
.s-product-card-wishlist-btn {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border-radius: 6px !important;
  padding: 0 !important;
}

@media (min-width: 400px) {
  .s-product-card-wishlist-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-wishlist-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 7px !important;
  }
}

/* Add to cart button - more compact */
.s-product-card-content-footer .s-button-element {
  padding: 0.4rem 0.25rem !important;
  font-size: 9px !important;
  border-radius: 6px !important;
}

@media (min-width: 400px) {
  .s-product-card-content-footer .s-button-element {
    padding: 0.45rem 0.3rem !important;
    font-size: 10px !important;
  }
}

@media (min-width: 480px) {
  .s-product-card-content-footer .s-button-element {
    padding: 0.5rem !important;
    font-size: 11px !important;
    border-radius: 7px !important;
  }
}

/* ========================================
   HORIZONTAL CARDS (LISTING PAGES)
   ======================================== */

.s-product-card-entry,
.s-product-card-horizontal {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  height: 130px;
  min-height: 130px;
  max-height: 160px;
  box-shadow: 0 2px 12px rgba(0,102,204,0.06);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 480px) {
  .s-product-card-entry,
  .s-product-card-horizontal {
    height: 160px;
    min-height: 150px;
    max-height: 180px;
  }
}

@media (min-width: 768px) {
  .s-product-card-entry,
  .s-product-card-horizontal {
    height: 180px;
    min-height: 160px;
    max-height: 210px;
  }
}

.s-product-card-image {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border-radius: 14px 0 0 14px;
  padding: 8px 6px;
}

@media (min-width: 480px) {
  .s-product-card-image {
    flex: 0 0 120px;
    padding: 10px 8px;
  }
}

@media (min-width: 768px) {
  .s-product-card-image {
    flex: 0 0 160px;
    padding: 14px 10px 14px 16px;
  }
}

.s-product-card-image-cover, 
.s-product-card-image-contain {
  width: 100%;
  max-width: 70px;
  height: auto;
  border-radius: 8px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1), box-shadow .35s cubic-bezier(.4,0,.2,1) !important;
  box-shadow: 0 2px 6px rgba(0,102,204,0.08);
}

@media (min-width: 480px) {
  .s-product-card-image-cover,
  .s-product-card-image-contain {
    max-width: 90px;
  }
}

@media (min-width: 768px) {
  .s-product-card-image-cover,
  .s-product-card-image-contain {
    max-width: 120px;
    border-radius: 10px;
  }
}

.s-product-card-entry:hover .s-product-card-image-cover,
.s-product-card-entry:focus .s-product-card-image-cover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0,102,204,0.13);
}

/* Content beside image */
.s-product-card-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0.6rem 0.4rem 0.5rem 0.5rem;
  min-width: 0;
  position: relative;
}

@media (min-width: 480px) {
  .s-product-card-content {
    padding: 0.8rem 0.6rem 0.6rem 0.7rem;
  }
}

@media (min-width: 768px) {
  .s-product-card-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
}

.s-product-card-content-main,
.s-product-card-content-title,
.s-product-card-content-sub {
  margin: 0;
  padding: 0;
}

.s-product-card-content-title {
  text-align: start;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1F2937;
  white-space: normal;
  overflow: visible;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .s-product-card-content-title {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .s-product-card-content-title {
    font-size: 14px;
    margin-bottom: 7px;
  }
}

.s-product-card-content-sub {
  margin-bottom: 6px;
  font-size: 12px;
  color: #0066CC;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .s-product-card-content-sub {
    margin-bottom: 8px;
  }
}

@media (min-width: 768px) {
  .s-product-card-content-sub {
    margin-bottom: 9px;
    font-size: 13px;
  }
}

/* Price styling */
.sicon-sar, .s-product-card-sale-price h4 {
  font-size: 13px;
  color: #0066CC;
  font-weight: 700;
}

@media (min-width: 480px) {
  .sicon-sar, .s-product-card-sale-price h4 {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .sicon-sar, .s-product-card-sale-price h4 {
    font-size: 15px;
  }
}

/* Button fixed to bottom */
.s-product-card-content-footer {
  position: absolute;
  bottom: 8px;
  left: 0.4rem;
  right: 0.4rem;
  width: calc(100% - 0.8rem);
  display: flex;
  gap: 0.35rem;
  align-items: center;
  z-index: 2;
}

@media (min-width: 480px) {
  .s-product-card-content-footer {
    bottom: 10px;
    left: 0.7rem;
    right: 0.7rem;
    width: calc(100% - 1.4rem);
    gap: 0.4rem;
  }
}

@media (min-width: 768px) {
  .s-product-card-content-footer {
    bottom: 15px;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    gap: 0.5rem;
  }
}

.s-product-card-content-footer .s-button-element {
  width: 100%;
  background: #0066CC;
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.5rem;
  font-size: 10px;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 480px) {
  .s-product-card-content-footer .s-button-element {
    padding: 0.6rem 0.7rem;
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .s-product-card-content-footer .s-button-element {
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-size: 13px;
  }
}

.s-product-card-content-footer .s-button-element:hover {
  background: #0057a7;
}

.s-product-card-wishlist-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #F8F9FA;
  border: 2px solid #E5E7EB;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .s-product-card-wishlist-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}

@media (min-width: 768px) {
  .s-product-card-wishlist-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
  }
}

/* Vertical card: default */
.s-product-card-entry:not([horizontal="true"]) {
  flex-direction: column !important;
  height: 260px !important;
  min-height: 260px;
  max-height: 420px;
  box-shadow: 0 2px 12px rgba(0,102,204,0.06);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
}

@media (min-width: 400px) {
  .s-product-card-entry:not([horizontal="true"]) {
    height: 290px !important;
    min-height: 280px;
  }
}

@media (min-width: 480px) {
  .s-product-card-entry:not([horizontal="true"]) {
    height: 320px !important;
  }
}

@media (min-width: 768px) {
  .s-product-card-entry:not([horizontal="true"]) {
    height: 360px !important;
    border-radius: 14px;
  }
}

.s-product-card-entry:not([horizontal="true"]) > div > a > img{
  max-width: none !important;
}

/* Horizontal card: only with attribute */
.s-product-card-entry[horizontal="true"] {
  flex-direction: row !important;
  height: 130px !important;
  min-height: 130px;
  max-height: 160px;
  display: flex !important;
  align-items: stretch !important;
  box-shadow: 0 2px 12px rgba(0,102,204,0.06);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 480px) {
  .s-product-card-entry[horizontal="true"] {
    height: 160px !important;
    min-height: 150px;
    max-height: 180px;
  }
}

@media (min-width: 768px) {
  .s-product-card-entry[horizontal="true"] {
    height: 180px !important;
    min-height: 160px;
    max-height: 210px;
  }
}

/* Image and content arrangement for horizontal */
.s-product-card-entry[horizontal="true"] .s-product-card-image {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border-radius: 14px 0 0 14px;
  padding: 8px 6px;
}

@media (min-width: 480px) {
  .s-product-card-entry[horizontal="true"] .s-product-card-image {
    flex: 0 0 120px;
    padding: 10px 8px;
  }
}

@media (min-width: 768px) {
  .s-product-card-entry[horizontal="true"] .s-product-card-image {
    flex: 0 0 120px;
    padding: 14px 10px 14px 16px;
  }
}

.s-product-card-entry[horizontal="true"] .s-product-card-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0.6rem 0.4rem 0.5rem 0.5rem;
  min-width: 0;
  position: relative;
}

@media (min-width: 480px) {
  .s-product-card-entry[horizontal="true"] .s-product-card-content {
    padding: 0.8rem 0.6rem 0.6rem 0.7rem;
  }
}

@media (min-width: 768px) {
  .s-product-card-entry[horizontal="true"] .s-product-card-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
}

.s-product-card-entry[horizontal="true"] .s-product-card-content-footer {
  position: absolute;
  bottom: 8px;
  left: 0.4rem;
  right: 0.4rem;
  width: calc(100% - 0.8rem);
  display: flex;
  gap: 0.35rem;
  align-items: center;
  z-index: 2;
}

@media (min-width: 480px) {
  .s-product-card-entry[horizontal="true"] .s-product-card-content-footer {
    bottom: 10px;
    left: 0.7rem;
    right: 0.7rem;
    width: calc(100% - 1.4rem);
    gap: 0.4rem;
  }
}

@media (min-width: 768px) {
  .s-product-card-entry[horizontal="true"] .s-product-card-content-footer {
    bottom: 15px;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    gap: 0.5rem;
  }
}

/* Responsive: always vertical on mobile if needed */
@media (max-width: 374px) {
  .s-product-card-entry[horizontal="true"] {
    flex-direction: column !important;
    height: 280px !important;
    min-height: 260px;
    max-height: 300px;
  }
  .s-product-card-entry[horizontal="true"] .s-product-card-image {
    flex: 0 0 auto;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 8px;
  }
  .s-product-card-entry[horizontal="true"] .s-product-card-content {
    padding: 0.5rem 0.4rem 0.4rem 0.5rem;
  }
  .s-product-card-entry[horizontal="true"] .s-product-card-content-footer {
    bottom: 6px;
    left: 0.5rem;
    right: 0.5rem;
    width: calc(100% - 1rem);
  }
}

.product-page-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.product-images-container {
  flex: 0 0 42%;
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1rem;
  box-shadow: var(--shadow-base);
  position: sticky;
  top: 100px;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .product-page-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .product-images-container {
    position: static;
    width: 100%;
    padding: 1.2rem 0.5rem;
  }
}

.product-slider {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0,102,204,0.10);
}

.product-slider img:hover {
  transform: scale(1.05);
}

.product-wishlist-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10;
  background: #fff;
  border: 2px solid #0066cc50;
  color: #0066cc;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, box-shadow 0.2s;
  box-shadow: var(--shadow-base);
}
.product-wishlist-btn:hover {
  background: #E8F1FF;
  box-shadow: 0 4px 18px #0066cc15;
}

/* Product Info/Content */
.product-info-container {
  flex: 1 1 335px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-base);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-title {
  font-size: 2rem;
  font-weight: bold;
  color: #093b6c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.product-price-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(90deg,#e8f1ff 60%,#f0f7ff 100%);
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  margin-bottom: 0.8rem;
}

.product-price {
  color: #0066cc;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.product-old-price {
  color: #dc2626;
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: 0.75;
  font-weight: 600;
}

.product-short-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-feature-chip {
  background: #E8F1FF;
  color: #0066cc;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 40px;
  letter-spacing: 0.3px;
  display: inline-block;
}

/* Add to Cart Button */
.product-add-to-cart-btn {
  width: 100%;
  background: linear-gradient(90deg, #0066cc 80%, #0057a7 100%);
  color: #fff;
  border: none;
  padding: 1.2rem;
  margin-top: 0.7rem;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,102,204,.14);
  cursor: pointer;
  transition: background 0.21s, transform 0.18s;
  will-change: background,transform;
  letter-spacing: .4px;
  position: relative;
  overflow: hidden;
}

.product-add-to-cart-btn:hover {
  background: linear-gradient(90deg,#0057a7 60%,#0066cc 100%);
  transform: translateY(-2px) scale(1.03);
}

/* Product Description */
.product-description {
  margin: 2.5rem 0 0 0;
  background: #093b6c;
  padding: 2.3rem 1.5rem 1.15rem 1.8rem;
  border-radius: 16px;
  color: #fff;
  line-height: 2.0;
  box-shadow: 0 6px 24px #093b6c11;
}
.product-description h3,
.product-description h4,
.product-description strong {
  color: #ffca2c !important;
  font-weight: bold !important;
  margin-bottom: 1rem;
}
.product-description ul {
  padding-right: 1.5rem;
  margin-bottom: 1.25rem;
}
.product-description ul li {
  margin-bottom: 0.5rem;
  padding-right: 0.7rem;
  position: relative;
}
.product-description ul li:before {
  content: '✔';
  color: #ffca2c;
  margin-left: 0.7rem;
}
.product-description p {
  color: #fff !important;
  margin-bottom: 1.1rem;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .product-info-container, .product-description {
    padding: 1.2rem;
    border-radius: 13px;
    margin-bottom: 0.5rem;
  }
  .product-title { font-size: 1.2rem; }
  .product-price { font-size: 1.37rem; }
  .product-description { margin-top: 1.2rem; }
}

.sticky-product-bar {
  background: linear-gradient(90deg, #E8F1FF 60%, #F0F7FF 100%);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(0, 102, 204, 0.08);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
}

.sticky-product-bar__quantity label.form-label {
  color: #093b6c;
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 0.7rem;
}

.s-quantity-input-input {
  background: #fff;
  color: #0066CC;
  border: 2px solid #E8F1FF;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.s-quantity-input-button {
  background: #F0F7FF;
  color: #0066CC;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.s-quantity-input-button:hover {
  background: #0066CC;
  color: #FFF;
}

.sticky-product-bar__btn .s-button-element {
  background: linear-gradient(90deg, #0066CC 80%, #0057A7 100%);
  color: #FFF;
  border-radius: 14px;
  padding: 1.1rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,102,204,.18);
  border: none;
  transition: background 0.19s, transform 0.18s;
}
.sticky-product-bar__btn .s-button-element:hover {
  background: linear-gradient(90deg,#0057A7 60%,#0066cc 100%);
  transform: translateY(-2px) scale(1.03);
}

.s-fast-checkout-button.outline {
  background: #FFF;
  color: #0066CC;
  border-radius: 10px !important;
  box-shadow: 0 2px 12px #0066cc15;
  font-weight: bold;
  padding: .6rem 1.25rem;
  border: 2px solid #0066cc2A;
  transition: background .18s, color .18s, box-shadow .22s;
}
.s-fast-checkout-button.outline:hover {
  background: #E8F1FF;
  color: #0057A7;
  box-shadow: 0 6px 20px #0066cc32;
}

.product__description {
  color: #1a2340 !important;
  padding: 2rem 1.5rem 1.5rem 2rem !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  background: none !important;
}

.product__description h1,
.product__description h2,
.product__description h3,
.product__description h4,
.product__description strong,
.product__description b {
  color: #0066cc !important;
  font-weight: 700 !important;
}
.product__description span{
  color: #1a2340 !important;
  font-weight: 700 !important;
}

.product__description ul li:before {
  content: '✔';
  color: #0066cc;
  margin-left: .5em;
  font-size: 1.08em;
}

.product__description p,
.product__description ul li {
  color: #1a2340 !important;
}

.s-button-primary{
  background: linear-gradient(90deg, #0066CC 80%, #0057A7 100%);
}

.s-button-primary:hover{
    background: linear-gradient(90deg, #0057A7 60%, #0066cc 100%);
    transform: translateY(-2px) scale(1.03);
}

.store-footer {
  background: linear-gradient(90deg, #093b6c 65%, #0066cc 100%);
  color: #fff;
  padding: 3rem 0 1rem 0;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -6px 32px rgba(9,59,108,0.20);
  opacity: 1;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.store-footer.in-view {
  opacity: 1;
  transform: translateY(0);
}

.store-footer__inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-profile,
.footer-links,
.footer-contact {
  flex: 1 1 200px;
  margin-bottom: 2rem;
}

/* Logo animation */
.logo-footer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.12));
  will-change: filter, transform;
  transition: filter 0.35s, transform 0.35s;
}
.logo-footer:hover {
  filter: drop-shadow(0 0 48px #00aaffaa);
  transform: scale(1.06) rotate(-2deg);
}

/* Links & Icons */
.footer-links a,
.footer-contact a,
.footer-contact .footer-icon {
  color: #e6f2ff;
  display: inline-block;
  margin: 0 0.4rem 0.7rem 0;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.88;
  transition: color 0.22s, opacity 0.22s, transform 0.25s;
  will-change: color, opacity, transform;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-contact .footer-icon:hover {
  color: #ffca2c;
  opacity: 1;
  transform: translateY(-4px) scale(1.17);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: 16px;
}

/* Socials animation */
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
}
.footer-social a {
  background: #fff2;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: background 0.3s, color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: #ffca2c;
  color: #093b6c;
  transform: scale(1.18) rotate(-10deg);
}

/* Divider animation */
.footer-divider {
  height: 3px;
  width: 64px;
  background: linear-gradient(90deg,#ffca2c 0,#fff6 100%);
  border-radius: 2px;
  margin: 1.5rem 0 1.2rem 0;
  opacity: 0.7;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.7); }
  100% { filter: brightness(1); }
}

/* Responsive layout */
@media (max-width: 900px) {
  .store-footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .store-footer {
    padding: 2rem 0 0.7rem 0;
    border-radius: 1.2rem 1.2rem 0 0;
  }
}

.container:has(a.banner){
  max-width: 1500px;
}


.footer-is-light .store-footer .store-footer__inner{
  background-color: transparent ;
  color : white;  
  border-bottom-color: rgba(156,163,175,var(--tw-text-opacity,1));
}
.copyright-text p{
  color : rgba(156,163,175,var(--tw-text-opacity,1));
}
#mainnav > div > div > div > div:nth-child(1) > a.lg\:hidden.mburger.mburger--collapse.leading-none.rtl\:ml-4.ltr\:mr-4 > i {
  color: var(--primary-blue);
}

#\31 275509529 > a > img {
  display: none;
}