 :root {
     --primary-color: #3BB77E;
     --topbar-bg: #29A56C;
     --secondary-color: #FDC040;
     --text-color: #7E7E7E;
     --heading-color: #253D4E;
     --border-color: #ECECEC;
     --light-bg: #F4F6FA;
     --white: #FFFFFF;
     --black: #000000;
     --danger: #FF0000;
     --font-heading: 'Quicksand', sans-serif;
     --font-text: 'Plus Jakarta Sans', sans-serif;

     --topbar-bg: var(--extra-bgcolor2);
     --btn-cart: var(--extra-bgcolor2);
 }



 /* Search Bar Styles */
 .search-form {
     display: flex;
     align-items: center;
     width: 100%;
     margin: 0 auto;
     border-radius: 4px;
     max-width: 700px;
 }

 .search-form .form-input-group {
     border: 1px solid var(--topbar-bg);

 }

 .search-form .category-select {
     position: relative;
     max-width: 30%;
     appearance: none;
     font-weight: 600;
     cursor: pointer;
     padding: 10px 15px;
 }

 .search-form .category-select:before {

     content: "|";
 }


 .search-form .form-input-group {
     border-radius: 6px;
     position: relative;
     flex-wrap: unset;
     outline: none;
     border: 1.4px solid rgb(171, 211, 249);
     transition: .3s all ease-in-out;
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     background-color: #d5eaf8 !important;
 }

 .input-group>.form-floating:not(:first-child)>.form-select {
     border-top-left-radius: 0;
     border-bottom-left-radius: 0;
 }

 .search-form .category-select::after {
     content: "\F282";
     font-family: "bootstrap-icons";
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
 }

 .search-form .search-input::before {
     content: "|";
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
 }

 .search-form .input-group .form-control,
 .search-form .input-group .form-control:focus,
 .search-form .input-group .input:focus,
 .search-form .input-group button:focus,
 .search-form .input-group textarea:focus {
     outline: none !important;
     box-shadow: none !important;
     border: none !important;
     background: transparent !important;
 }

 .search-form .input-group button {
     color: #0E50B5;
 }

 .search-form .input-group select:focus,
 .search-form .input-group select {
     outline: none !important;
     box-shadow: none !important;
     border: none !important;
     background-color: transparent;
 }

 .search-form .input-group select option.category-child::before {
     content: "--";
 }

 .search-input {
     flex-grow: 1;
     position: relative;
 }

 .search-input::before {
     position: absolute;
     content: "";
     width: 1px;
     height: 30px;
     inset-inline-start: 0;
     top: 50%;
     background: #EBEDF0;
     transform: translateY(-50%);
 }

 .search-input input {
     width: 100%;
     padding: 13px 50px 12px 20px;
     border: none !important;
     border-radius: 0 !important;
     font-size: 14px;
     color: var(--text-color);
 }

 .search-input button {
     position: absolute;
     right: 0;
     top: 0;
     height: 100%;
     width: 50px;
     background-color: var(--topbar-bg);
     border: none;
     border-radius: 0 1px 1px 0;
     color: var(--white);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .search-input button:hover {
     background-color: var(--topbar-bg);
 }

 .header-bottom-area {
     border-bottom: 1px solid #e5e5e5;
     background: var(--extra-bgcolor2)
 }

 button.btn-link {
     color: #0E50B5;
     text-decoration: none;
     font-weight: 600;
 }

 button.btn-link:hover {
     color: #0E50B5;
     text-decoration: none;
 }

 .dropdown-toggle::after {
     display: none;
     position: absolute;
     right: 20px;
     top: 20px;
     background-color: transparent;
     border: none;
     cursor: pointer;
 }


 .product-section {
     padding: 30px 10px;
 }

 .product-card {
     position: relative;
     background-color: #fff;
     border: 1px solid #ececec;
     border-radius: 15px;
     overflow: hidden;
     transition: 0.2s;
     -moz-transition: 0.2s;
     -webkit-transition: 0.2s;
     -o-transition: 0.2s;
 }

 .product-card .product-image {
     position: relative;
     background-color: #fff;
     overflow: hidden;
     max-height: 320px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .product-card .product-image a.image {
     display: block;
 }

 .product-card .product-image img {
     width: 100%;
     height: auto;
 }

 .product-card .product-image .pic-1 {
     transition: all 0.3s ease 0s;
 }

 .product-card .product-image:hover .pic-1 {
     transform: translateX(100%);
 }

 .product-card .product-image .pic-2 {
     width: 100%;
     height: 100%;
     transform: translateX(-101%);
     position: absolute;
     top: 0;
     left: 0;
     transition: all 0.3s ease 0s;
 }

 .product-card .product-image:hover .pic-2 {
     transform: translateX(0);
 }

 .product-card .card-body {
     display: flex;
     flex-direction: column;
     border-bottom: 1px solid #d5eaf8;
 }

 .product-card .card-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 17px 12px;
 }

 h5.card-title a {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 5px;
     font-family: "Quicksand", sans-serif;
     color: #253D4E;
     text-decoration: none;
     cursor: pointer;
 }

 .product-category a {
     color: #adadad;
     font-size: 12px;
     text-decoration: none;
 }



 .product-card .product-sale-label {
     color: #fff;
     background: #0a805e;
     font-size: 13px;
     text-transform: uppercase;
     letter-spacing: 1px;
     padding: 2px 8px;
     position: absolute;
     top: 15px;
     left: 15px;
 }

 .product-card .product-like-icon {
     color: #696969;
     font-size: 22px;
     line-height: 20px;
     position: absolute;
     top: 15px;
     right: 15px;
 }

 .product-card .product-like-icon:hover {
     color: #0a805e;
 }

 .product-card .product-like-icon:before,
 .product-card .product-like-icon:after {
     content: attr(data-tip);
     color: #fff;
     background-color: #000;
     font-size: 12px;
     line-height: 18px;
     padding: 7px 7px 5px;
     visibility: hidden;
     position: absolute;
     right: 0;
     top: 15px;
     transition: all 0.3s ease 0s;
 }

 .product-card .product-like-icon:after {
     content: '';
     height: 15px;
     width: 15px;
     padding: 0;
     transform: translateX(-50%) rotate(45deg);
     right: auto;
     left: 50%;
     top: 15px;
     z-index: -1;
 }

 .product-card .product-like-icon:hover:before,
 .product-card .product-like-icon:hover:after {
     visibility: visible;
     top: 30px;
 }

 .product-card .product-links {
     width: 170px;
     padding: 0;
     margin: 0;
     list-style: none;
     opacity: 0;
     transform: translateX(-50%);
     position: absolute;
     bottom: -50px;
     left: 50%;
     transition: all 0.3s ease 0s;
 }

 .product-price {
     font-size: 18px;
     font-weight: bold;
     color: var(--topbar-bg);
     ;
 }

 .product-image .product-action {
     position: absolute;
     bottom: 50%;
     transform: translateY(80%);
     z-index: 1;
     opacity: 0;
     visibility: hidden;
     -webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform .3s ease-in-out;
     -o-transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform .3s ease-in-out;
     transition: opacity .3s ease-in-out, visibility .3s ease-in-out, transform .3s ease-in-out;
 }

 .product-action {
     display: flex;
 }

 .product-image .product-action,
 .product-card:hover .product-image .product-action {
     -webkit-transition: all .3s ease-in-out 0s;
     -o-transition: all .3s ease-in-out 0s;
     transition: all .3s ease-in-out 0s;
 }

 .product-card:hover .product-caption .product-info .product-action,
 .product-card:hover .product-image .product-action {
     transform: translateY(50%);
     opacity: 1;
     visibility: visible;
 }

 .product-card .product-action a {
     color: var(--white);
     height: 50px;
     width: 50px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
     margin: 0px 0px 0px 10px;
     text-transform: uppercase;
     background-color: var(--topbar-bg);
     border-radius: 100%;
 }

 .product-action a span.tooltip-text,
 .product-action a:hover span.tooltip-text {
     -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
     transition: all 0.3s ease-in-out 0s;

 }

 .product-action a span.tooltip-text::before {
     content: "";
     position: absolute;
     top: auto;
     bottom: calc(-100% + 16px);
     border: 8px solid var(--topbar-bg);
     border-color: var(--topbar-bg) transparent transparent transparent;
 }

 .product-action a span.tooltip-text,
 .product-action a:hover span.tooltip-text {
     -webkit-transition: all 0.3s ease-in-out 0s;
     -o-transition: all 0.3s ease-in-out 0s;
     transition: all 0.3s ease-in-out 0s;
 }

 .product-card .product-action a span.pro-action-icon {
     display: block;
     line-height: 0;
 }

 .product-card .product-action a span.pro-action-icon i {
     font-size: 16px;
 }

 .product-action a span.tooltip-text {
     top: -40px;
     left: auto;
     transform: unset;
 }

 .product-action a span.tooltip-text {
     color: var(--body-bgcolor);
     font-size: 12px;
     position: absolute;
     bottom: -40px;
     left: 50%;
     transform: translateX(-50%);
     height: 30px;
     min-width: 95px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: var(--heading-font-color);
     text-align: center;
     text-transform: uppercase;
     box-shadow: var(--box-shadow-outer);
     font-weight: 400;
     opacity: 0;
     visibility: hidden;
     border-radius: 5px;
     line-height: 1;
 }


 .product-card .product-content {
     text-align: left;
     padding: 15px 0 0;
 }

 .product-card .title {
     font-size: 14px;
     font-weight: 500;
     text-transform: capitalize;
     margin: 0 0 8px;
 }

 .product-card .title a {
     color: #333;
     transition: all 0.3s ease 0s;
 }

 .product-card .title a:hover {
     color: #0a805e;
 }

 .product-card .price {
     color: #0a805e;
     font-size: 16px;
     font-weight: 500;
 }

 .product-card .price span {
     color: #555;
     font-size: 14px;
     font-weight: 400;
     text-decoration: line-through;
     margin: 0 5px 0 0;
 }




 .btn-quick-add {
     background-color: var(--btn-cart);
     color: var(--white);
     border: 1px solid var(--btn-cart);
 }

 .btn-outline-add {
     color: var(--btn-cart);
     border: 1px solid var(--btn-cart);
 }

 .btn-quick-add:hover,
 .btn-quick-add:focus,
 .btn-outline-add:hover {
     background-color: var(--btn-cart);
     color: var(--white);
     border: 1px solid var(--btn-cart);
 }

 @media screen and (max-width: 990px) {
     .product-card {
         margin: 0 0 30px;
     }
 }


 .main-content {
     padding: 20px;
     background-color: #e3f4fa;
 }

 .main-content h1,
 .main-content h2,
 .main-content h3 {
     color: var(--heading-font-color);
 }

 .main-content p {
     color: var(--text-color);
 }

 .main-content a {
     text-decoration: none;
 }

 .main-content a:hover {
     text-decoration: none;
 }

 .contact-section {

     background: #DEF1F7;
 }

 .card {
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.2s;
 }

 .card {
     position: relative;
     display: flex;
     flex-direction: column;
     min-width: 0;
     word-wrap: break-word;
     background-color: rgba(247, 250, 253, 0.7);
     background-clip: border-box;
     border: 0;
     box-shadow: 0 1px 2px 1px rgba(11, 156, 149, 0.203);
 }

 .card-header {
     border-radius: 0.75rem 0.75rem 0 0 !important;
     border-bottom: 1px solid #a9eefd;
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-box-align: stretch;
     -ms-flex-align: stretch;
     align-items: stretch;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     background-color: transparent;
 }
 .card-footer {
  border-top: 1px solid #a9eefd;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
}

 .form-input-group,
 .table-boxs {
     border-radius: 6px;
     position: relative;
     flex-wrap: unset;
     outline: none;
     border: 1.4px solid rgb(215, 235, 254);
     transition: .3s all ease-in-out;
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
         border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     background-color: rgb(232, 244, 255) !important;
 }

 .form-input-group:focus-within {
     border: 1.4px solid rgb(177, 219, 255);
     ;
 }

 .input-group-text {
     border: none;
     background: #fff;
 }

 .form-floating>.form-select {
     padding-top: 4.5px;
     padding-bottom: 1.5px;
 }

 .input-group .form-control,
 .input-group .form-select {
     border: none;
 }

 .form-input-group.input-group .form-control {
     border-radius: 0 8px 8px 0 !important;
 }

 .form-input-group .form-control:focus,
 .form-input-group .form-select:focus {
     box-shadow: none;
     border: 0px;
 }

 .input-group select.form-control {
     --akb-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
     display: block;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
     color: var(--akb-body-color);
     background-color: var(--akb-body-bg);
     background-image: var(--akb-form-select-bg-img),
         var(--akb-form-select-bg-icon, none);
     background-repeat: no-repeat;
 }

 .form-floating>.form-control,
 .form-floating>.form-control-plaintext,
 .form-floating>.form-select {
     height: calc(2.875rem + 2px);
     min-height: calc(2.875rem + 2px);
     line-height: 1.25;
 }

 textarea.form-control {
     min-height: calc(1.49em + 1rem + calc(1px * 2));
 }

 
 /*******************************************/
 .category-card {
     transition: all 0.3s ease;
     border-radius: 10px;
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .category-image-wrapper {
     height: 200px;
     background: #f8f9fa;
 }

 .category-img {
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .category-card:hover .category-img {
     transform: scale(1.05);
 }

 .category-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.2);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .category-card:hover .category-overlay {
     opacity: 1;
 }

 .pagination {
     margin: 2rem 0;
     font-family: 'Segoe UI', Roboto, sans-serif;
 }

 .pagination .page-item.active .page-link {
     background-image: linear-gradient(135deg, #3a7bd5, #00d2ff);
     border: 0;
     border-radius: 6px;
     box-shadow: 0 4px 12px rgba(58, 123, 213, 0.25);
     color: #fff;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .pagination .page-link {
     color: #2c3e50;
     margin: 0 4px;
     border-radius: 6px;
     border: 1px solid #e0e6ed;
     padding: 0.5rem 0.9rem;
     min-width: 42px;
     text-align: center;
     transition: all 0.2s ease;
     background-color: #fff;
 }

 .pagination .page-link:hover {
     background-color: #f8f9fa;
     color: #3a7bd5;
     border-color: #d0d7e0;
     transform: translateY(-1px);
 }

 /* Previous/Next buttons specific styling */
 .pagination .page-item:first-child .page-link,
 .pagination .page-item:last-child .page-link {
     padding: 0.5rem 1rem;
     font-weight: 500;
 }

 /* Disabled state */
 .pagination .page-item.disabled .page-link {
     color: #b8c2cc;
     background-color: #f8f9fa;
     border-color: #e0e6ed;
 }

 /* Active state hover */
 .pagination .page-item.active .page-link:hover {
     box-shadow: 0 6px 15px rgba(58, 123, 213, 0.35);
     transform: translateY(-2px);
 }

 /**********************************************************/
 .vendor-profile {
     background-color: #f9f9f9;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .vendor-logo {
     width: 120px;
     height: 120px;
     object-fit: cover;
     border: 2px solid #eee;
 }

 .vendor-name {
     font-weight: 700;
     color: #333;
     margin-bottom: 10px;
 }

 .vendor-description {
     color: #666;
     line-height: 1.6;
 }

 .vendor-meta i {
     margin-right: 5px;
 }

 /*****************************************************/
 .form-section-title {
     background: #eaf2ff;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
     font-size: 1rem;
 }

 .form-control:hover {
     border: 1px solid #5d6a7c;
 }

 .form-control:disabled {
     opacity: 0.7;
 }

 .form-input-group,
 .table-boxs {
     border-radius: 6px;
     position: relative;
     flex-wrap: unset;
     outline: none;
     border: 1px solid #a9eefd;
 }

 .input-group-text {
     border: none;
     background: #fff;
 }

 .form-floating>.form-select {
     padding-top: 4.5px;
     padding-bottom: 1.5px;
 }

 .input-group .form-control,
 .input-group .form-select {
     border: none;
 }

 .form-input-group.input-group .form-control {
     border-radius: 0 8px 8px 0 !important;
 }

 .form-input-group .form-control:focus,
 .form-input-group .form-select:focus {
     box-shadow: none;
     border: 0px;
 }

 .input-group select.form-control {
     --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
     display: block;
     background-position: right 0.75rem center;
     background-size: 16px 12px;
     color: var(--bs-body-color);
     background-color: var(--bs-body-bg);
     background-image: var(--bs-form-select-bg-img),
         var(--bs-form-select-bg-icon, none);
     background-repeat: no-repeat;
 }

 .form-floating>.form-control,
 .form-floating>.form-control-plaintext,
 .form-floating>.form-select {
     height: calc(2.875rem + 2px);
     min-height: calc(2.875rem + 2px);
     line-height: 1.25;
 }

 textarea.form-control {
     min-height: calc(1.49em + 1rem + calc(var(--phoenix-border-width) * 2));
 }

 /***********************************************/
 .thumbnail {
     border: #b4edea 1px solid !important;
     border-radius: 6px;
 }

 .opacity-0 {
     opacity: 0;
 }

 .inset-0 {
     bottom: 0;
     left: 0;
     right: 0;
     top: 0;
 }

 .h-full {
     height: 100%;
 }

 .w-full {
     width: 100%;
 }

 .img-bg {
     width: 120px;
     height: 120px;
     border-radius: 0.475rem;
     background-repeat: no-repeat;
     background-size: cover;
 }

 /************************************************************/