/** Shopify CDN: Minification failed

Line 654:7 Unexpected "/"

**/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', Arial, sans-serif; */
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    width: 100%;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.scrolled {
  position: fixed;
  top: 0;
    background-color: #000;
    color: #fff;
    background-color: #fff;
  }

.top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    gap: 4rem;

    /* Add a bottom border 
    border-bottom: 1px solid #ccc;*/

    /* Add inner shadow 
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.15);*/
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}


.logo-container img {
    height: 60px;
    width: auto;
}

.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}

.search-container input {
    width: 100%;
    height: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1.6rem;
    background: #f5f5f5;
    border: 1px solid #ccc;
}

.search-button {
    position: absolute;
    right: 0;
    height: 100%;
    width: 50px;
    border: none;
    background: #000;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button img {
    width: 25px;
    height: 25px;
    filter: invert(1);
}


.utility-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.utility-nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.6rem;
}


.cart-icon {
    position: relative;
}

.cart-icon img {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
}

.nav-item {
    position: relative;
    cursor: pointer;
    padding: 10px 0;
}

.nav-link {
    color: #4f4f4f;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-family: 'Poppins';
    gap: 5px;
    transition: color 0.3s;
    font-weight: 600;
}

.nav-item:hover .nav-link {
    color: #ff4d4d;
}

.dropdown {
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 110px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 1200px;
    padding: 20px;
    z-index: 1000;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.breed-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    font-weight: bold;
}

.breed-tab {
    padding: 10px 40px;
    border-radius: 50px;
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #ccc;
}

.breed-tab.active {
    background: #ff4d4d;
    color: white;
    border: 0;
}

.breed-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 8px;
}

.breed-card {
    text-align: center;
    padding: 10px 8px;
    border-radius: 8px;
    transition: background 0.3s;
    border: 1px solid #ccc;
}

.breed-card:hover {
    background: #f5f5f5;
}

.breed-image {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    object-fit: cover;
}

.breed-name {
    font-size: 10px;
  line-height: 13px;
    color: #333;
}

.breed-card a {
    text-decoration: none; /* Removes underline */
    width: 100%;
    height: 100%;
}

.breed-card a:hover {
    text-decoration: none; /* Ensures underline doesn't appear on hover */
}


.consult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}

.consult-card {
    text-align: center;
    position: relative;
}

.consult-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.consult-button {
    background: #ff4d4d;
    color: white;
    width: 90%;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}

.blog-card {
    text-align: center;
    position: relative;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-button {
    background: #ff4d4d;
    color: white;
    width: 90%;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-menu, .update-menu {
    background: white;
    padding: 15px;
    border-radius: 4px;
    min-width: 200px;
}

.about-menu a, .update-menu a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.about-menu a:hover, .update-menu a:hover {
    background: #f5f5f5;
}

.product-grid {
    
}

.custom-product-grid{
  display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.product-card {
    /* flex: 1 1 calc(30% - 10px); */
    max-width: calc(25% - 10px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 150px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% 85%;
}

.text-dropdown {
    display: none;
    position: absolute;
    left: -50px;
    top: 30px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 300px;
    padding: 10px;
    z-index: 1000;
}

.nav-item:hover .text-dropdown {
    display: block;
}

.text-dropdown a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.text-dropdown a:hover {
    background-color: #f4f4f4;
}

.text-dropdown a + a {
    border-top: 1px solid #eee;
}

.text-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}


.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
}

.menu-button img {
    width: 24px;
    height: 24px;
}



.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    overflow-y: auto;
    font-size: 14px;
    
}



.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-bottom: 1px solid #eee;
}

/* .mobile-nav{
    z-index: 10;
} */

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    gap: 1rem;
    background: white;
    transition: background-color 0.3s;
}

.mobile-nav-link.active {
    background: #f0f7ff;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.arrow-icon {
    margin-left: auto;
    transition: transform 0.3s;
}

.arrow-icon.active {
    transform: rotate(180deg);
}

.mobile-nav-content {
    display: none;
    background: #f0f7ff;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-nav-content.active {
    display: block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1.5rem;
  text-align: center;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

.category-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    object-fit: cover;
}


/* Responsive search bar container */
.responsive-search {
    display:none;
    padding: 10px;
    background-color: #f9f9f9;
}

@media (max-width: 786px) {
    .responsive-search {
        display: block;
    }
}


.responsive-search .search-container {
    flex: 1;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}



.responsive-search .search-container .query-form {
    width: 100%;
    position: relative;
    height:40px;
    display: flex;
    align-items: center;
}

.responsive-search .search-container .query-form input {
    flex-grow: 1;
}


.query-form {
    width: 100%;
    position: relative;
    height:40px;
    display: flex;
    align-items: center;
}

.query-form input {
    flex-grow: 1;
}


/* Mobile Styles */
@media (max-width: 1000px) {

    .menu-button {
        display: block;
    }

    .top-header .search-container,
    .utility-nav a:not(.cart-icon),
    .nav-container {
        display: none;
    }

    .top-header {
        justify-content: space-between;
        padding: 0.8rem 1rem;
    }

    .logo-container img {
        height: 40px;
    }

    .mobile-menu.active {
        display: block;
    }

    .utility-nav {
        gap: 0;
    }

    
    .mobile-menu.active {
        display: block;
    }

    .nav-container {
        display: none;
    }

    .utility-nav {
        gap: 0;
    } */

    .responsive-search {
        display: block;
    }
}
