:root {
    --brand-teal: #00A99D;
    --light-teal: #e6f6f5;
    --gray-bg: #f8f9fa;
    --theme-black: #2D2E2E;
}

/* font */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal; 
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* end */

body {
    background-color: #fff;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "Poppins", sans-serif;
}

.text-teal { color: var(--brand-teal) !important; }
.btn-teal { background-color: var(--brand-teal); color: white; }
.btn-teal:hover { background-color: #008f85; color: white; }
.btn-outline-teal { background-color: transparent; color: var(--brand-teal); border: 1px solid var(--brand-teal); }
.btn-outline-teal:hover { background-color: var(--brand-teal); color: white; }
.font-18{
    font-size: 18px;
}

.theme-black {color: var(--theme-black) !important;}

.fw-600{
    font-weight: 600;
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.search-container input {
    background-color: #F5F0F0;
    border: none;
    height: 45px;
}
.search-container input:focus{
    background-color: #fff9f9;
}
input:focus{
    border-color: #00a99d47 !important;
    box-shadow: 0 0 0 .25rem rgb(0 169 157 / 11%) !important;
    border: 1px solid #00a99d47;
}
.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 35px;
    width: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress Tracker */
.progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #e9ecef;
    z-index: -1;
    border-radius: 10px;
}
.progress-fill {
    height: 100%;
    background: var(--brand-teal);
    border-radius: 10px;
}
.step {
    text-align: center;
    flex: 1;
}
.icon-circle {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #adb5bd;
    font-size: 1.2rem;
    border: 4px solid #fff;
}
.step.active .icon-circle {
    background: var(--brand-teal);
    color: white;
}
.step span {
    font-weight: 600;
    color: #6c757d;
}
.step.active span {
    color: #333;
}
.paw-prints {
    position: absolute;
    left: -60px;
    top: -10px;
    opacity: 0.3;
}

/* Product Card */
.product-img-wrapper {
    position: relative;
    background: #fff;
}
/* Remove default Bootstrap caret */
.hide-caret::after {
    display: none !important;
}
/* Dropdown Menu Styling */
.custom-profile-dropdown .dropdown-menu {
    min-width: 280px;
    border-radius: 15px;
    border: 1px solid #FFEBEE !important;
    background: #FFF9F9;
}
.custom-profile-dropdown .dropdown-item {
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
}
.custom-profile-dropdown .dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
/* Logout text color */
.custom-profile-dropdown .logout-item,
.custom-profile-dropdown .logout-item i {
    color: #A02020 !important; /* Deep red matching the image */
}
/* Hover effects */
.custom-profile-dropdown .dropdown-item:hover {
    background-color: var(--light-teal);
    border-radius: 8px;
}
/* Rotate chevron when open */
.show > .toggle-icon {
    transform: rotate(180deg);
}
/* Container for the cart section */
.cart-container {
    cursor: pointer;
    user-select: none;
}
/* Specific Cart Icon adjustments */
.cart-icon {
    color: #333 !important;
    font-size: 1.4rem !important; /* Adjust based on your preferred icon set */
}

.header-bottom .item_closed { display:none; }
.responsive-icon { display:none; }

.search-btn {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background-color:#01aa9c;
	color: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	border: none;
}
/* Exact Badge Styling from image_bc8124.png */
.cart-badge {
    position: absolute;
    top: 2px;
    right: -20px;
    background-color: #A02020 !important;
    color: white;
    font-size: 10px;
    font-weight: 500;
    /* padding: 0.35em 0.5em; */
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
}
.header-bottom{
   box-shadow: 0 2px 10px rgba(0, 0, 0, .025) !important;
}
.header-bottom .nav-link{
    font-weight: 500;
    color: #2D2E2E;
    position: relative;
}
.header-bottom .nav-link.active{
  color: #00a597;
}
.header-bottom .nav-link.active:after{
  width: 100%; 
  left: 0;
}
/* Cart Text Styling */
.cart-text {
    font-size: 16px;
    color: #262626;
    letter-spacing: -0.02em;
}
.upper-header a{
    color: #262626;
    font-weight: 500;    
}
/* a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 15px 20px;
  position: relative;
} */
.header-bottom .nav-link:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #00a99d;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.header-bottom .nav-link:hover:after { 
  width: 100%; 
  left: 0; 
}
.header-bottom .nav-link:hover{
  color: #00a99d;
}
.track-wrap h2{
  font-size: 30px;
}
.track-wrap p{
  font-size: 16px;
  color: #333333;
  font-weight: 600;
}

/* Footer Styles */
    .main-footer {
        background-color: #ffffff;
        /* border-top: 1px solid var(--border-color); */
        box-shadow: 0 0 40px rgba(0 0 0 / 10%);
        padding: 60px 0 30px;
        margin-top: 80px;
        border-radius: 20px 20px 0 0;
    }

    .main-footer .container {
        max-width: 1140px;
    }

    .footer-logo {
        max-width: 101px;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 14px;
        color: var(--text-secondary);
        max-width: 367px;
        margin-bottom: 30px;
    }

    .footer-nav {
        display: flex;
        gap: 30px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .footer-nav a {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .footer-nav a:hover {
        color: var(--brand-teal);
    }

    .footer-bottom {
        border-top: 1px solid #FFAFBA;
        padding-top: 20px;
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-copyright {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .social-icons {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex: 1;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        background-color: var(--brand-teal);
        color: #ffffff;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .social-icon:hover {
        background-color: #008a7d;
        color: #ffffff;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--brand-teal);
    }
    .text-danger{
      color: #910F0A !important;
    }
    .page-title{
      font-size: 32px;
    }

    /* product  */
    /* Product Listing Styles - Single container with stronger elevation shadow */
    .product-list-container {
        background-color: #ffffff;
        border: 1px solid #FFE2E6;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    }
    /* Product card - Internal row with proper spacing */
        .product-card {
            background-color: #ffffff;
            padding: 10px 20px;
            display: flex;
            gap: 20px;
            align-items: center;
            border-bottom: 1px solid #FFE2E6;
            position: relative;
        }

        .product-card:last-child {
            border-bottom: none;
        }

        .product-card:hover {
            background-color: #fafafa;
        }

        /* Fixed image column width to match Figma */
        .product-image-wrapper {
            flex-shrink: 0;
            width: 59px;
            height: 71px;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .rx-badge {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--brand-teal);
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 0 5px 5px 0;
        }

        /* Flexible content column */
        .product-details {
            flex: 1;
            min-width: 0;
        }

        /* Product details spacing - Match Figma */
        /* Figma product text colors - Hierarchy matching design */
        .product-name {
            font-size: 18px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .product-manufacturer {
            font-size: 14px;
            font-weight: 400;
            color: #464646;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-info {
            display: flex;
            gap: 45px;
            flex-wrap: wrap;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product-info-item {
            font-size: 16px;
            font-weight: 500;
            color: #5e6e6a;
        }

        .product-size {
            font-size: 16px;
            font-weight: 400;
            color: #5e6e6a;
            margin-bottom: 0;
        }

        /* Fixed right action column width - Match Figma alignment */
        .product-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            flex-shrink: 0;
            width: 120px;
            text-align: right;
        }

        /* Price and stock status alignment */
        .product-price {
            font-size: 18px;
            font-weight: 600;
            color: #00a597;
            line-height: 1.2;
        }

        .stock-status {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }

        .stock-status.in-stock {
            color: #00a597;
        }

        .stock-status.out-of-stock {
            color: #dc3545;
        }

        .btn-add-to-cart {
            background-color: var(--brand-teal);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .btn-add-to-cart:hover {
            background-color: #008a7d;
            color: #ffffff;
        }

        .btn-add-to-cart:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }

    /* end  */

    /* pagination */
    /* Pagination Styles - Circular pill style matching Figma */
        .pagination-wrapper {
            margin: 40px 0;
            display: flex;
            justify-content: center;
        }

        .pagination {
            margin: 0;
            gap: 10px;
        }

        .pagination .page-link {
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            padding: 0;
            margin: 0;
            border-radius: 19px;
            min-width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #ffffff;
        }

        .pagination .page-link:hover {
            color: var(--brand-teal);
            background-color: #f8f9fa;
            border-color: var(--brand-teal);
        }

        .pagination .page-item.active .page-link {
            background-color: var(--brand-teal);
            border-color: var(--brand-teal);
            color: #ffffff;
        }

        .pagination .page-item.disabled .page-link {
            border-radius: 19px;
            opacity: 0.6;
        }
        /* end  */

         /* Footer Styles */
        .main-footer {
            background-color: #ffffff;
            /* border-top: 1px solid var(--border-color); */
            box-shadow: 0 0 40px rgba(0 0 0 / 10%);
            padding: 60px 0 30px;
            margin-top: 80px;
            border-radius: 20px 20px 0 0;
        }

        .main-footer .container {
            max-width: 1140px;
        }

        .footer-logo {
            max-width: 150px;
            height: auto;
            margin-bottom: 20px;
        }

        .footer-description {
            font-size: 14px;
            color: var(--text-secondary);
            max-width: 367px;
            margin-bottom: 30px;
        }

        .footer-nav {
            display: flex;
            gap: 30px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--brand-teal);
        }

        .footer-bottom {
            border-top: 1px solid #FFAFBA;
            padding-top: 20px;
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .social-icons {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex: 1;
        }

        .social-icon {
            width: 30px;
            height: 30px;
            background-color: var(--brand-teal);
            color: #ffffff;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: #008a7d;
            color: #ffffff;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--brand-teal);
        }

    .main-footer {	margin-top: 0;	position:relative ; z-index:5; }

@media (max-width: 992px){
    .footer-nav{
        gap: 20px;
    }
}
/*--mediaquery--*/
@media (max-width:767px) {    
    
.search-container {	position: relative;	max-width: 100% !important;	margin: 0 auto !important;	width: 100%; }

.upper-header {    text-align: center;    justify-content: center !important;    display: flex !important;
     margin-top: 10px;}
     
.header-bottom .nav-link {    font-weight: 500;    color: #2D2E2E;    position: relative;
    padding: 7px 7px;    font-size: 15px; }

.upper-header a {	font-size: 16px; }
.nav_header .navlogo_wrap {	display: flex;	justify-content: center; }

.nav_header .logo img {	width: 131px;	object-fit: contain;	padding-bottom: 10px; }

.upper-header a {font-size: 14px !important; }

.cart-icon{
    font-size: 20px !important;
}
.search-container input {
    height: 40px;
    font-size: 14px;
}
.filter-link{
    
}

/**/
}
/**/
    
@media (max-width:576px) {

    /*.header-bottom*/

/*--header--*/
    .custom-positioning{
        position: absolute;
        right: 10px;
        top: 20px;
    }
    
    .nav_header .logo {	width: 100%;	text-align: left;	display: block;	padding-bottom: 0; }
   
    .header-bottom .item_closed { display:block; }
    .responsive-icon { display:block; }

    .nav_header .navlogo_wrap { display:flex; }

    .nav_header .logo {    width: 100%;    text-align: start;    display: block;    padding-bottom:0; }

    /* Menu toggle button */
    #menuToggle {    font-size: 24px;    cursor: pointer;    color: #fff;
    border: none; }
    
    #menuToggle img{
        width: 24px;
        height: 15px;
    }
    
    /* Side menu */
    #sideMenu {    position: fixed;    top: 0;    left: -260px;    width: 260px;    height: 100%;
    background: #222;    color: #fff;    transition: left 0.4s ease;    padding-top: 20px;    z-index: 1000;  }
    

    #sideMenu.active { left: 0;    background: #00a69c !important;  }
    /* Close button */
    #menuClose {	text-align: right;margin: 0;	padding: 0;	font-size: 23px;	line-height: 28px;	position: absolute;
	right: 0;	top: 0;font-weight: 700;	cursor: pointer;
	background: #fffc;	color: #010453;	border-radius: 0 0 0 11px;	width: 40px;	height: 40px;
	display: flex;	align-items: center;	justify-content: center; }

    /* Menu list */
    #sideMenu ul { list-style: none;  padding: 0;   margin: 0; }

    #sideMenu li {   border-bottom: 1px solid #d2d2d2; }

    #sideMenu a { display: block; padding:12px 20px; color: #fff;  text-decoration: none; }
    #sideMenu a:hover { background: #00a69c; }

    /* Submenu */
    .submenu { display: none; background: #333;    }
    .has-submenu.open .submenu {  display: block;    }
    .submenu a {  padding-left: 40px; font-size: 14px; }
    #sideMenu .container {	margin: 0;	padding: 59px 0 0 0; }

    .header-bottom 

/*----*/


    .header-bottom {    position: absolute;    right: 0;    top: 89px;
    width: 100%;    background: #d7d7d7 !important;    z-index: 9999; }
    .header-bottom ul {    display: block;    margin: 0;    padding: 0; }
    .header-bottom ul li {  }
    .header-bottom ul li a {  }


    /*.header-bottom*/

.footer-nav {	justify-content: center;	margin-top: 20px; }

.footer-nav { display: flex;	gap: 18px;	justify-content: center !important;	flex-wrap: wrap; }

.social-icons { display: flex;	gap: 9px;	justify-content: center !important;	flex: 1; margin-top: 10px !important; }
.main-footer .row {	justify-content: center;	text-align: center; }
.footer-description {	font-size: 14px;	max-width: 100%;	text-align: center; }

.page-title {
    font-size: 24px;
}
.custom-profile-dropdown .btn-teal{
    border-radius: 20px;
}
/**/
}
/**/

.no-data i{
    font-size: 80px;
    color: #ddd !important;
}

/*modal*/
.modal-header {
    border: 0;
}
.modal-header h5{
    font-size: 18px;
}
.btn-close{
    font-size: 10px;
}
.modal-body .form-control{
    background-color: #f7f7f7;
}
.btn-theme {
    background: #00b2a9;
    padding: 8px 30px;
    color: #fff;
}
.btn-theme:hover {
    background-color: #008a7d;
    color: #fff;
}
.select2-dropdown{
    border: 0 !important;
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
    margin-top: 10px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #01b5a6 !important;
    color: white;
    border-radius: 5px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 5px;
}
.wp-img{
    position: absolute;
    background: #fff;
    right: 0;
    bottom: 0;
    text-align: right;
}
.wp-img img{
    width: 6%;
}
.form-group{
    margin-bottom: 10px;
}

.personal-detail {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
}
.personal-detail label {
    background: transparent;
    padding: 12px 15px;
    border-radius: 10px;
    padding-left: 45px;
    /* margin-bottom: 20px; */
    width: 100%;
}
.form-check-input:checked + label {
    background: #F8FFE6;
}
.form-check-input:checked {
    background-color: #00a597;
    border-color: #00a597;
}
.personal-detail label p {
    font-size: 14px;
}
.personal-detail input {
    left: 38px;
    position: absolute;
    top: 12px;
}
.btn-section .btn {
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 5px;
}
.dropdown-divider{
    border-top: 1px solid rgb(251 229 229);
}
.error {
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
}
.form-check-input{
    border: 1px solid #a5a7a9;
}    