
body {
    background-color: #6D6D6D;
    font-family: Arial, sans-serif, El-Messiri;
}




.dropdown-menu {
    background-color: #fffde7;
    border: 1px solid #fbc02d;
}

.dropdown-item {
    color: #4e342e;
}

.dropdown-item:hover {
    background-color: #fff59d;
    color: #000;
}


.btn-outline-success {
    color: #4e342e;
    border-color: #fbc02d;
}

.btn-outline-success:hover {
    background-color: #fbc02d;
    color: #000;
}

.form-control {
    border: 1px solid #fdd835;
    background-color: #fff;
}

.top-bar {
    font-size: 16px;
    text-align: center;
    color: #4e342e;
}



.navbar-nav {
    margin-right: 0 !important;
    margin-left: auto !important;
}
 .group {
     text-align: center;
 }



.social {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 18px;
  gap: 10px;
  width: auto;
  height: auto;
  min-height: 50px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}


.btn::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 0;
}


.btn:hover::before {
  transform: scale(1.3);
}


.btn:hover {
  background-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: inherit !important;
}


.btn.tiktok {background: black;
             color: white
}

.btn.facebook { background: blue;
                color: white}


.contact-info {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #4e342e;
    line-height: 1.6;
}

.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fixed-img {
    height: 250px;
    object-fit: cover;
}

.card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.card-link .card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-link:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}


.row.row-cols-5 > .col {
    padding: 0.375rem;
}

.mobile-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

.toast-content {
    display: flex;
    align-items: center;
    font-size: 14px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

.dropdown-toggle-custom {
    cursor: pointer;
}

.arrow-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.sidebar-link[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

#contactsSubmenu a:hover {
    color: #ffc107 !important;
}


#popularCategories .col {
    display: flex;
}

.popular-category-card {
    width: 100%; 
    max-width: 100%; 
}

.product-image {
    width: 100%;   
    height: 200px; 
    object-fit: contain; 
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px;  
}

