@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
}

body {
    background-color: #e8ecf1;
    color: #333;
}

.section-bg{
    background-color: #f9f9f9;
    border: 2px solid #d3dbe4;
    padding: 10px;
}
 
:root{
    --color-1:#4FC1E9;
    --color-2:#3BAFDA;
    --color-3:var(--color-6);
    --color-4:#1068a8;
    --color-5:#075993;
    --color-6:#a1c51d;
    --color-7:#bbe81b;
}
.container {
    /* max-width: 1200px; */
    /* margin: 0 auto; */

    width: 100%;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--color-5) 0%, var(--color-4) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      padding: 15px 15px;
    width: 100%;
    box-sizing: border-box;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
}

.logo span {
    color: var(--color-6);
    font-size: 1.8rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 50px;
}

.contact-info i {
    color: var(--color-6);
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 10px 15px;
    width: 250px;
    font-size: 0.9rem;
    outline: none;
}

.search-box button {
    background: var(--color-6);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 2px;
    color: var(--color-4);
}

.search-box button:hover {
    background: var(--color-7);
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 50px;
    transition: 0.3s;
}

.feature-item:hover {
    background: var(--color-6);
    color: var(--color-5);
}

.feature-item i {
    font-size: 1.2rem;
}


/* Menu Styles */
.main-menu {
    background: var(--color-2);
    border-bottom: 3px solid var(--color-6);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    color: #fff;
}

.menu-items {
    display: flex;
    list-style: none;
    justify-content: center;
    position: relative;
}

.menu-items > li {
    position: relative;
}

.menu-items > li > a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.7rem;
}

.menu-items > li > a i {
    margin-left: 5px;
}

.menu-items > li > a:hover {
    background: var(--color-6);
    color: var(--color-5);
}

.menu-dropdown:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid #eee;
}

.dropdown li a:hover {
    background: #f5f5f5;
    color: var(--color-5);
    padding-right: 20px;
}

/* Main Content */
.main-content {
    min-height: 500px;
    padding: 0px 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-content {
    padding: 50px;
    flex: 1;
}

.badge {
    background: var(--color-6);
    color: var(--color-5);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-5);
}

.hero-content h2 span {
    color: var(--color-6);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Packs Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    color: var(--color-5);
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--color-6);
}

.view-all {
    color: var(--color-5);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.view-all:hover {
    color: var(--color-6);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 50px;
}

.pack-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    padding: 20px;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
}

.pack-image {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    transition: 0.3s;
}

.pack-image img {
    max-width: 100%;
    border-radius: 10px;
    transition: 0.3s !important;
}

.pack-card:hover .pack-image img {
    transition: 0.3s;
    transform: scale(1.1);
}

.pack-card h3 {
    color: var(--color-5);
    font-size: 0.8rem;
    margin: 0;
}

.pack-desc {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.6;
    margin: 0;
      width: 170px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.new-price {
    color: var(--color-5);
    font-size: 1.3rem;
    font-weight: bold;
}

.currency {
    color: #666;
    font-size: 0.9rem;
}

.stock-status {
    color: var(--color-5);
    font-size: 0.7rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-status i {
    color: var(--color-6);
}

.btn-add {
    width: 100%;
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-add:hover {
    background: var(--color-6);
    color: #fff;
}

/* Features Banner */
.features-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    color: var(--color-6);
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--color-5);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--color-4) 0%, var(--color-5) 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
    
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding:0px 30px;
}

.footer-section h3 {
    color: var(--color-6);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--color-6);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li i {
    margin-left: 10px;
    color: var(--color-6);
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: var(--color-6);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-6);
    transform: translateY(-3px);
}

.social-links a:hover i {
    color: var(--color-5);
}

.social-links i {
    color: white;
    font-size: 1.2rem;
}

.newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    background: var(--color-6);
    color: var(--color-5);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.newsletter button:hover {
    background: #ffed4a;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding:0px 30px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
}

.payment-methods i {
    transition: 0.3s;
}

.payment-methods i:hover {
    color: var(--color-6);
}
.pack-card {
    animation: fadeIn 0.5s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-5);
}


 .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }
    .logo-header{
        width: 300px;
    }
    .header-mobile{
        display: none;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
        align-items: center;
    }

    .header-mobile i{
        font-size: 1rem;
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
    }

     .iconca{
        font-size: 1rem;
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
    }
     .icong{
        font-size: 1rem;
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(0, 0, 0);
        background: rgba(92, 92, 92, 0.2);
        border-radius: 50%;
    }
    .logo-desktop{
        display: flex;
    }


/* ======================================================= mobile menu ===================================== */
/* Mobile Menu Styles */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 10000;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    direction: rtl;
}

.mobile-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.menu-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.close-menu {
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-menu:hover {
    background: var(--color-6);
    color: var(--color-5);
}

.menu-content {
    padding:0px 20px;
}

.menu-section {
    margin-bottom: 25px;
}
.menu-section a{
    text-decoration: none;
    color: #000;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-5);
    margin: 0px;
    border-bottom: 2px solid var(--color-6);
    display: inline-block;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    padding: 12px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list li:hover {
    color: var(--color-5);
    padding-right: 5px;
}

.has-submenu {
    font-weight: 600;
    color: var(--color-4);
}

.has-submenu i {
    font-size: 0.8rem;
    color: #999;
}

.submenu {
    list-style: none;
    padding-right: 15px;
    margin-bottom: 5px;
}

.submenu li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px dashed #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li:hover {
    color: var(--color-6);
}
.menu-mobile-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 5px;
}

.menu-mobile-category {
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-weight: 500;
    font-size: 0.8rem;
}

/* أول عنصر بعرض كامل */
.menu-mobile-category:first-child {
    grid-column: span 2;
}

/* الألوان */
.green { background: #A1EEBD; }
.blue { background: #BBE9FF; }
.yellow { background: #FEEE91; }
.beige { background: #FAEDCE; }
.pink { background: #FFC6C6; }

/* أيقونة دائرية */
.category-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-icon img {
    width: 26px;
}
/* Desktop Hide */
@media (min-width: 769px) {
    .mobile-menu,
    .menu-overlay {
        display: none;
    }
}

/* Animation for menu items */
.menu-section {
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ======================================================= mobile menu ===================================== */

.search-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70em;
    margin: 10px auto;
}

.search-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #ef4444,
        transparent
    );
    z-index: 10;
}

.search-pill-outer {
    position: relative;
    padding: 4px;
    border-radius: 9999px;
    background-color: #f9fafb;
    border-left: 1px solid #ffa54d;
    border-right: 1px solid #ffa54d;
    z-index: 11;
}

.search-pill-inner {
    background-color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    padding: 4px 32px;
    border: 1px solid #ffa54d;
    border-radius: 9999px;
}

/* ============================================= show product ==================================== */

.show-container {
    max-width: 1200px;
    margin: 10px auto;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
    border-radius: 10px;
}
.show-landingpage {
    max-width: 900px;
    margin: 30px auto;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
    border-radius: 10px;
}

.show-gallery {
    text-align: center;
}

.show-main-image {
    width: 100%;
    height: 500px;
    background: #eee;
    border: 3px solid var(--color-5);
    border-radius: 10px;
    margin-bottom: 15px;
        background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   
}

.show-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
 
}

.show-thumb {
    width: 70px;
    height: 70px;
    background: #ddd;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.show-thumb.active {
    border-color: var(--color-5);
}

.show-product {
    display: flex;
    flex-direction: column;
}

.show-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.show-rating {
    font-size: 14px;
    margin-bottom: 15px;
}

.show-pricing {
    margin-bottom: 20px;
}

.show-old-price {
    color: red;
    margin-left: 10px;
}

.show-price {
    color: var(--color-5);
    font-size: 22px;
    font-weight: bold;
}

.show-form-note {
    color: var(--color-5);
    font-size: 14px;
    margin-bottom: 15px;
}

.show-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid var(--color-5);
    border-radius: 6px;
    font-size: 14px;
}

.show-variant-title {
    margin: 15px 0 10px;
    color: var(--color-5);
}

.show-variants {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.show-variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.show-variant.active {
    border-color: var(--color-5);
    background: #f8fff2;
}

.show-button {
    width: 100%;
    padding: 12px;
    background: var(--color-5);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.show-button:hover {
    opacity: 0.9;
}

.show-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    font-size: 13px;
    text-align: center;
    color: var(--color-5);
}
/* ============================================= show product ==================================== */
.move{
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.5s all ease;
}

.move.active{
  transform: translateY(0);
  opacity: 1;
}
.hidden-mobile{
    display: flex;
}

/* ============================================= shoping card ===================================== */
/* Overlay */
.card-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.card-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container */
.card-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    direction: rtl;
}

.card-container.active {
    right: 0;
}

/* Header */
.card-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.card-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-card {
    border: none;
    background: #f5f5f5;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

/* Content */
.card-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Product Item */
.card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.card-item-image img {
    width: 75px;
    border-radius: 10px;
}

.card-item-info {
    flex: 1;
}

.card-item-info h4 {
    margin: 0;
    font-size: 0.95rem;
}

.card-price {
    display: block;
    margin: 5px 0;
    font-weight: 600;
    color: var(--color-5);
}

/* Quantity */
.card-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-quantity button {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--color-5);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.card-quantity input {
    width: 35px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Remove */
.card-remove {
    border: none;
    background: transparent;
    color: red;
    cursor: pointer;
}

/* Footer */
.card-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.card-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.card-checkout {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--color-5);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.card-checkout:hover {
    opacity: 0.9;
}




.cart-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    margin: 0 auto;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 80px;
    border-radius: 5px;
}



.cart-item input {
    text-align: center;
    width: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cart-item button {
    background: var(--color-5);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.2s;
}

.cart-item button:hover {
    background: var(--color-4);
}

.remove-item {
    background: #e74c3c;
}

.remove-item:hover {
    background: #c0392b;
}

.total-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--color-4);
}

.checkout-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: var(--color-6);
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.checkout-btn:hover {
    background: var(--color-7);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
    font-size: 1.2em;
    color: #888;
}
/* ============================================= shoping card ===================================== */


/* Features Container */
.fet-container {
    display: flex;
    flex: 1;
    padding: 10px 0;
    width: 100%;
    max-width: 70em;
    margin-left: auto;
    margin-right: auto;
}

/* Individual Feature Item */
.fet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    gap: 0.5rem;
}

/* Feature Icon - Base Style */
.fet-icon {
    width: 1.7rem;
    height: auto;
}

/* Small Icon Variant (for the last item) */
.fet-icon-small {
    width: 1.75rem;
}

/* Feature Text */
.fet-text {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: #000000;
    line-height: 1.5;
}

/* SVG Icon Colors */
.fa-primary {
    fill: #000000;
}

.fa-secondary {
    fill: #000000;
    opacity: 0.2;
}


/* Hover Effects */
.fet-item:hover .fet-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.fet-item:hover .fa-primary {
    fill: #667eea;
}

/* Responsive Grid Version - Alternative */
.fet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2.5rem 1rem;
    max-width: 70em;
    margin: 0 auto;
}

.fet-grid .fet-item {
    width: 100%;
}

@media (max-width: 768px) {
    .fet-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    

    
   
}



/* Optional: Equal width version */
.fet-container-equal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2.5rem 0;
    max-width: 70em;
    margin: 0 auto;
}

.fet-container-equal .fet-item {
    width: 33.333%;
    min-width: 150px;
}

/* Animation classes */
.fet-item-highlight:hover .fet-icon {
    animation: fetPulse 0.5s ease;
}

@keyframes fetPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .fet-text {
        color: #ffffff;
    }
    
    .fa-primary {
        fill: #ffffff;
    }
    
    .fa-secondary {
        fill: #ffffff;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .show-container {

    grid-template-columns: 1fr;

}

.header {
    background: linear-gradient(135deg, var(--color-5) 0%, var(--color-4) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      padding:8px 15px 4px 15px;
    width: 100%;
    box-sizing: border-box;
}
.hidden-mobile{
    display: none;
}
 .header-mobile{
        display: flex;
 }
  .logo-desktop{
        display: none;
    }
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
     .contact-info{
        display: none;
    }
     .logo-header{
        width: 200px;
    }
    
    .search-box input {
        width: 300px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    
    .features {
        justify-content: center;
        display: none;
    }
    
    .menu-items {
        flex-direction: column;
    }
    
    .menu-items > li > a {
        text-align: center;
    }
    
    .dropdown {
        position: static;
        width: 100%;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features-banner {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .packs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 50px;
}
.main-menu {
    display: none;
}
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

    
}

/* For mobile menu */
.menu-mobile-category.coming-soon {
    opacity: 0.6;
    position: relative;
}

.menu-mobile-category.coming-soon::after {
    content: "قريباً";
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1;
}

/* For main menu */
.main-menu .menu-items li.coming-soon a {
    opacity: 0.6;
    cursor: default;
    position: relative;
}

.main-menu .menu-items li.coming-soon a::after {
    content: "قريباً";
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
}


/* ================================ search page ========================= */
.search-wrapper {
    padding: 20px 0;
    background: #f8f9fa;
}

.search-pill-outer {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.search-filters {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-badge {
    background: #e9ecef;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-badge .remove-filter {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.8rem;
}

.clear-all {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.clear-all:hover {
    color: #dc3545;
}

.search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.search-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.sidebar-title {
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
}

.categories-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.category-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.category-name {
    flex: 1;
}

.category-count {
    color: #999;
    font-size: 0.85rem;
}

.sidebar-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.btn-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-reset-filters:hover {
    color: #764ba2;
}

.products-stats {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-results i {
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #333;
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
    margin-bottom: 20px;
}

.btn-clear-search {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s;
}

.btn-clear-search:hover {
    transform: translateY(-2px);
}
.mobile-display{
    display: none;
}




.toph-bar{
    padding: 10px;
    background: rgb(1, 104, 1);
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}

/* WhatsApp Container */
.wts-container {
    background-color: #099036; /* storeprimary color */
    background-opacity: 0.08;
    border-radius: 0.5rem; /* rounded-lg */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0; /* py-4 */
    gap: 1.5rem; /* gap-6 */
}

/* Fallback for browsers that don't support rgba with custom properties */
.wts-container {
    background-color: rgba(9, 144, 54, 0.08); /* storeprimary with opacity */
}

/* WhatsApp Title */
.wts-title {
    font-weight: 700; /* font-bold */
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem;
    color: #099036; /* text-storeprimary */
    text-align: center;
    margin: 0;
}

@media (min-width: 1280px) {
    .wts-title {
        font-size: 1.25rem; /* xl:text-xl */
        line-height: 1.75rem;
    }
}

/* WhatsApp Button */
.wts-button {
    display: flex;
    gap: 0.5rem; /* gap-2 */
    background-color: #099036; /* bg-storeprimary */
    background-opacity: 0.8;
    padding: 0.5rem 1rem; /* px-4 py-2 */
    border-radius: 0.5rem; /* rounded-lg */
    justify-content: center;
    align-items: center;
    color: #ffffff; /* text-white */
    text-decoration: none;
    direction: ltr; /* dir="ltr" */
    transition: background-opacity 0.3s ease;
}

/* Fallback for background opacity */
.wts-button {
    background-color: rgba(9, 144, 54, 0.8);
}

/* Hover effect */
.wts-button:hover {
    background-opacity: 1;
    background-color: #099036; /* fallback */
}

/* Fallback for hover */
.wts-button:hover {
    background-color: #099036;
    opacity: 1;
}

/* WhatsApp Icon */
.wts-icon {
    width: 1rem; /* w-4 */
    height: auto;
    fill: #ffffff; /* fill-white */
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .wts-container {
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .wts-title {
        font-size: 1rem;
    }
    
    .wts-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Optional: Animation */
.wts-button:hover .wts-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Optional: RTL Support */
[dir="rtl"] .wts-button {
    direction: rtl;
}

/* Optional: Different color variants */
.wts-container-green {
    background-color: rgba(9, 144, 54, 0.08);
}

.wts-container-blue {
    background-color: rgba(0, 102, 204, 0.08);
}

.wts-container-blue .wts-title,
.wts-container-blue .wts-button {
    color: #0066cc;
}

.wts-container-blue .wts-button {
    background-color: rgba(0, 102, 204, 0.8);
}

.wts-container-blue .wts-button:hover {
    background-color: #0066cc;
}

/* Optional: With border */
.wts-container-bordered {
    border: 1px solid rgba(9, 144, 54, 0.2);
}

/* Optional: With shadow */
.wts-container-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Optional: With icon animation */
.wts-icon-pulse:hover {
    animation: wts-pulse 1s infinite;
}

@keyframes wts-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.category-pagination {
    margin: 20px 0 30px;
    display: flex;
    justify-content: center;
}

.category-pagination .pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 30px;
}

.page-prev, .page-next {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.page-prev:hover, .page-next:hover {
    background: #099036;
    color: white;
    border-color: #099036;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.clt-tel{
text-align: right;

}
.page-number:hover {
    background: #099036;
    color: white;
    border-color: #099036;
}

.page-current {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #099036;
    border: 1px solid #099036;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .category-pagination .pagination {
        flex-wrap: wrap;
    }
    
    .page-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .toph-bar{

    font-size: 0.7rem;
  
}
    .search-container {
        grid-template-columns: 1fr;
    }
    .mobile-display{
    display: flex;
}
    
    .search-sidebar {
        position: fixed;
        right: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: right 0.3s;
        overflow-y: auto;
    }
    
    .search-sidebar.active {
        right: 0;
    }
    
.sidebar-title {
    font-size: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom:none;
    color: #333;
}
  .search-pill-inner {
        font-size: 12px;
    }



.show-landingpage {
    max-width: 1200px;
    margin: 30px auto;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0px;
    border-radius: 10px;
}
.pack-desc {

      width: 150px;

}
.section-header h2 {
    font-size: 0.8rem;
    padding-bottom: 0px;

}
.section-header a {
    font-size: 0.8rem;

}
/* Feature Text */
.fet-text {
    font-size: 10px;
  
}
.footer-section {
  text-align: center;
  justify-content: center;
}
.footer-section h3::after {

    right:35%;
    width: 100px;

}
.social-links{
    justify-content: center;
}

.cart-container {

    grid-template-columns:1fr;

}
}

/* ================================ search page ========================= */