/* ⚡ Printer Zone – Ultra Dynamic Theme */
/* Colors: Purple #241C57 | Orange #F37E1C | Light #FAFAFA */

:root {
    --primary: #241C57;
    --accent: #F37E1C;
    --light: #FAFAFA;
    --white: #FFFFFF;
}

/* 🌈 Animated Global Background */
body {
    color: var(--primary);
    font-family: "Cairo", sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #fafafa url('https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/GYWKoW/u0GQ56DKHt0HEYISvgLKXWW4T4SG360F2ePI9VER.png');
    position: fixed;
    z-index: 99999999999999999 !important;
    transform: scale(0);
    background-size: 350px !important;
    background-repeat: no-repeat;
    background-position: center !important;
    animation-name: logobg;

    animation-duration: 1.5s
}

@keyframes logobg {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1);
    }

    78% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes bgMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-5%, -5%) rotate(2deg);
    }
}

/* 🚀 Animated Gradient Buttons */
.s-button-btn,
.s-price-range-number-input {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    border: none;
    border-radius: 10px;
    background: linear-gradient(270deg, var(--accent), var(--primary));
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
    box-shadow: 0 4px 16px rgba(243, 126, 28, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-button-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(36, 28, 87, 0.4);
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🖼️ Product Cards with Glow */
.s-product-card-content {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: none !important;
    box-shadow: 0 6px 18px rgba(36, 28, 87, 0.08);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.s-product-card-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(243, 126, 28, 0.25);
}

.s-product-card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top right, rgba(243, 126, 28, 0.1), transparent 60%),
        radial-gradient(circle at bottom left, rgba(36, 28, 87, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.s-product-card-content:hover::before {
    opacity: 1;
}

/* 💰 Price Styling */
.s-product-card-sale-price h4 {
    color: var(--primary) !important;
    font-weight: 900;
    font-size: 1.3rem;
}

.s-product-card-sale-price span {
    color: var(--accent);
    font-weight: 600;
}

/* 🧭 Navbar */
.topnav-is-dark .top-navbar {
    background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
    box-shadow: 0 3px 12px rgba(36, 28, 87, 0.3);
}

.main-menu li>a {
    color: #241C57 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-menu li>a:hover {
    color: #FFE4C4 !important;
}

/* 🌟 Animated Section Titles */
.s-slider-block__title h2 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(270deg, var(--primary), var(--accent), var(--primary));
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 6s linear infinite;
    position: relative;
    letter-spacing: 1px;
}

.s-slider-block__title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

@keyframes textFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 💡 Category Cards */
a.slide--cat-entry {
    background: linear-gradient(135deg, #FFFFFF, #F4F3FF);
    border: 3px solid var(--accent);
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(36, 28, 87, 0.15);
    text-align: center;
    transition: all 0.5s ease;
}

a.slide--cat-entry:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 25px rgba(243, 126, 28, 0.4);
}

/* ✨ Feature Items with Floating Glow */
.s-block--features__item {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F7FF 100%);
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(36, 28, 87, 0.1);
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.s-block--features__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 126, 28, 0.3);
}

.s-block--features__item .feature-icon i {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 4s linear infinite;
}

.s-block--features__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(243, 126, 28, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.s-block--features__item:hover::after {
    opacity: 1;
}

/* 💫 Footer */
.store-footer {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 25px 25px 0 0;
    margin: 3rem 4%;
    box-shadow: 0 8px 25px rgba(36, 28, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.store-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    animation: glowRotate 12s linear infinite;
}

@keyframes glowRotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.store-footer h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

/* 🟣 Responsive */
@media (max-width:992px) {
    .navbar-brand img {
        max-height: 54px;
    }

    .banner-entry {
        height: 90px;
    }
}
/* .s-block--features__item:first-child .feature-icon {
    background: url(https://media.giphy.com/media/MFWujEWZoPDofq3eCc/giphy.gif);
    background-size: 110%;
    background-position: center;
    background-position-y: center;
}

.s-block--features__item:nth-child(3) .feature-icon {
    background: url(https://media.giphy.com/media/InhF9apv95rHoXxf0V/giphy.gif);
    background-size: 110%;
    background-position: center;
    background-position-y: center;
}

.s-block--features__item:nth-child(2) .feature-icon {
    background: url(https://media.giphy.com/media/86oHMzhmzHris5je1G/giphy.gif);
    background-size: 110%;
    background-position: center;
    background-position-y: center;
}

.s-block--features__item .feature-icon i {
    display: none;
} */

/* ⚡ Printer Zone – Floating Feature Bubbles */
/* Colors: Purple #241C57 | Orange #F37E1C */

.store-features {
  display: grid;
  gap: 2rem;
  justify-items: center;
  align-items: center;
  margin: 3rem auto;
  max-width: 1000px;
  position: relative;
}

/* ✨ شكل الفقاعات */
.s-block--features__item {
  background: radial-gradient(circle at 30% 20%, rgba(243, 126, 28, 0.1), rgba(36, 28, 87, 0.1));
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(36, 28, 87, 0.15);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: floatBubble 6s ease-in-out infinite;
}

/* 💫 حركة طفو خفيفة */
@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 🟣 تأثير توهج متدرج */
.s-block--features__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243, 126, 28, 0.2), rgba(36, 28, 87, 0.3));
  opacity: 0.6;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.s-block--features__item:hover::before {
  opacity: 0.9;
}

/* 🔸 الأيقونة داخل الفقاعة */
.feature-icon {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #F37E1C, #241C57);
  color: #fff;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 0 25px rgba(243, 126, 28, 0.4);
  animation: breathing 4s ease-in-out infinite alternate;
  transition: all 0.4s ease;
}

@keyframes breathing {
  0% { transform: scale(1); box-shadow: 0 0 20px rgba(243,126,28,0.3); }
  100% { transform: scale(1.1); box-shadow: 0 0 30px rgba(36,28,87,0.4); }
}

/* عند المرور */
.s-block--features__item:hover .feature-icon {
  transform: scale(1.2);
  background: linear-gradient(135deg, #241C57, #F37E1C);
}

/* 🟠 العنوان */
.s-block--features__item h2 {
  font-weight: 800;
  font-size: 1.2rem;
  color: #241C57;
  margin-top: 1rem;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.s-block--features__item:hover h2 {
  color: #F37E1C;
}

/* ⚪ النص */
.s-block--features__item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-top: 0.3rem;
  z-index: 1;
  position: relative;
  opacity: 0.9;
}

/* 💧 تفاعل إضافي عند المرور */
.s-block--features__item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(243, 126, 28, 0.25);
}

/* 📱 للجوال */
@media (max-width: 768px) {
  .s-block--features__item {
    width: 180px;
    height: 180px;
    padding: 1rem;
  }
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  .s-block--features__item h2 {
    font-size: 1.1rem;
  }
  .s-block--features__item p {
    font-size: 0.9rem;
  }
}