:root {
  --primary-color: #ee2225;
  --white-color: #ffffff;
  --dark-color:#222222;
}

body {
  font-size: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

h1 {
  font-size: 20px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 17px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 15px;
}
h6 {
  font-size: 13px;
}

p:last-child {
  margin-bottom: 0;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-default{
  color: black;
}

.sticky-section{
  position: sticky;
  top:20px;
}

.rounded-btn{
  flex-shrink: 0;
  width:30px;
  height: 30px;
  border-radius: 50% !important;
  line-height: 30px;
  padding: 0 !important;
  text-align: center;
}

.card {
  border-color: #eee;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}

.card-body {
  padding: 25px;
}

.lg .card-body {
  padding: 30px;
}

.alert{
    border-radius: 15px;
}

.alert-primary{
  --bs-alert-color: var(--dark-color);
  --bs-alert-bg: rgba(238, 34, 37,0.1);
  --bs-alert-border-color: rgba(238, 34, 37,0.1);
  --bs-alert-link-color: var(--dark-color);
}

.btn {
  border-radius: 50px;
}
.btn-group-sm>.btn, .btn-sm{
  font-size: 13px;
  padding: 4px 10px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #f76d2a;
  border-color: #f76d2a;
}

header {
  padding: 10px 0;
  background-color: #f1f1f1;
}

.search-area-wrap {
  position: sticky;
  top: 0;
  padding: 10px 0;
  background-color: var(--white-color);
}

.search-area {
  width: calc(100% - 40px);
  margin-left: auto;
  background-color: #fff;
  border: 1px solid #3835352b;
  border-radius: 50px;
}

.search-area input {
  border-radius: 50px;
}

.category-list,
aside {
  position: sticky;
  top: 58px;
}

.category-list {
  display: flex;
  gap: 15px;
  overflow-x: scroll;
  white-space: nowrap;
  background-color: var(--white-color);
}

.category-list a {
  display: block;
  padding: 10px 0px 10px 0px;
  font-size: 13px;
  font-weight: 500;
  color: var(--priamry-color);
  text-transform: capitalize;
  text-align: left;
  list-style: none;
  border-bottom: 1px solid #9c9c9c2b;
  border-radius: 0;
}

.category-list a.active {
  color: #9e1b10;
}

.menus-item .thumb-img {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.menus-item .thumb-img svg,
.menus-item .thumb-img i {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fff;
  padding: 2px;
  border-radius: 50%;
}

/* ------Tabs------- */

.nav-pills .nav-link {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color);
}

/* Mobile Checkout */

.mobile-checkout {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px;
}

.mobile-checkout-inner {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background-color: var(--primary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-weight: 500;
}

/* ------------Media Query------------ */

@media (min-width: 576px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 21px;
  }
  h2 {
    font-size: 19px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 17px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 15px;
  }

  .search-area {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }

  .category-list {
    display: block;
    gap: 0;
  }

  .mobile-checkout {
    display: none;
  }
}


.text-orange {
  color: #f35203 !important;
}

.excerpt-text, .cart-text-small {
  font-size: 14px;
}



.pulse-arrows {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.package-tabs{
  padding-left: 0;
}

.package-tabs li{
  margin-bottom: 10px;
}

.package-tabs li a{
  color: var(--dark-color);
  padding:15px;
  border:1px solid #e0e0e0;
  border-radius: 8px;
}

.package-tabs li.active a{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.package-tabs li a h4{
  margin-bottom: 0;
  font-weight: 600;
}

.side-info{
  color: var(--dark-color);
  font-size: 12px;
  font-weight: 500;
}

.ext-addons{
  position: relative;
}

.ext-addons .badge{
position:absolute;
top:3px;
right:5px;
font-size: 10px;
font-weight: 500;
}

.selected-addons{
  min-height: 1px;
  max-height: 350px;
  overflow-y: scroll;
}

.selected-addons h5{
  font-size: 14px;
  font-weight:700;
  margin-bottom: 0;
}

.form-check-input:checked{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.radio-active,
.product-added{
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.product-added .form-check-input{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  opacity:1;
}

.delivery-opt button{
  display: block;
  width: 100%;
  padding:15px;
  border:1px solid #e0e0e0;
  border-radius: 8px;
  background-color: transparent;
  margin-bottom: 8px;
}

.delivery-opt button:focus,
.delivery-opt button:hover{
  color: var(--white-color);
background-color: var(--primary-color);
}

.delivery-opt button i,
.delivery-opt button svg{
  color:var(--primary-color);
}

.delivery-opt button:focus i,
.delivery-opt button:focus svg,
.delivery-opt button:hover i,
.delivery-opt button:hover svg{
  color:var(--white-color);
}


.notice-board {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #f35203;
    background: #fff6e5;
    border-radius: 10px;
    padding: 15px;
}

@media(max-width:767.99px){
    .card-body{
        padding: 20px;
    }
    .package-tabs{
        display: flex;
        gap:8px;
        margin-bottom: 0;
        overflow-x: scroll;
    }

    .package-tabs li{
        margin-bottom: 0;
        white-space: nowrap;
    }
}
