/* =======================
   Global Styles
======================= */
body,
footer {
    font-family: "Raleway", sans-serif;
}


/* =======================
   promotion banner cross section
======================= */

.top-banner {
    background-color: #cce0ff;
    text-align: center;
    font-size: 14px;
    padding: 8px 40px;
    /* room for close button */
    position: relative;
    transition: opacity 0.5s ease;
}

.top-banner.hide {
    opacity: 0;
    visibility: hidden;
}
video#bannerVideo {
    max-height: 500px;
    object-fit: cover;
}

/* =======================
   Navbar
======================= */

/* Logo */
.logo-img {
    height: 60px;
    object-fit: contain;
}

/* Always hide the checkbox */
.menu-btn {
    display: none;
}
nav.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 11;
}
/* body hidden when nav menu open in mobile view */
.no-scroll {
    overflow-y: hidden;
}

/* Custom Mobile Nav */
@media (max-width: 991px) {
    .custom-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 250px;
        background: #fff;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease;
        padding-top: 80px;
        z-index: 1050;
    }

    .menu-btn:checked~.custom-collapse {
        left: 0;
		background-color: #cce0ff;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav .nav-item a {
        padding-left: 15px;
        border-bottom: 1px solid #000;
        font-weight: 600;
    }

    .menu-icon {
        cursor: pointer;
        display: inline-block;
        padding: 20px;
        z-index: 1100;
    }

    .menu-icon .navicon {
        background: #333;
        display: block;
        height: 2px;
        width: 25px;
        position: relative;
        transition: background 0.2s ease-out;
    }

    .menu-icon .navicon:before,
    .menu-icon .navicon:after {
        content: '';
        background: #333;
        display: block;
        height: 2px;
        width: 100%;
        position: absolute;
        transition: all 0.2s ease-out;
    }

    .menu-icon .navicon:before {
        top: 7px;
    }

    .menu-icon .navicon:after {
        top: -7px;
    }

    .menu-btn:checked~.menu-icon .navicon {
        background: transparent;
    }

    .menu-btn:checked~.menu-icon .navicon:before {
        transform: rotate(-45deg);
        top: 0;
    }

    .menu-btn:checked~.menu-icon .navicon:after {
        transform: rotate(45deg);
        top: 0;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .menu-icon {
        display: none;
    }

    .custom-collapse {
        position: static;
        height: auto;
        width: auto;
        box-shadow: none;
        padding-top: 0;
        left: 0;
    }
	
	.navbar-nav .nav-item a {
        font-weight: 600;
    }
}
/* main banner */
.homebanner .bannerimage {
    max-height: 600px;
}
.homebanner .bannerimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homebanner .owl-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 40px;
    width: 40px;
    margin: auto;
    background-color: #7fd85a !important;
    border: 1px solid #7fd85a !important;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 40%);
    color: #fff !important;
}
.homebanner .owl-nav button.owl-prev {
	left:10px;
}

.homebanner .owl-nav button.owl-next {
	right:10px;
}
/* =======================
   About Us
======================= */
.about-img-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

/* =======================
   Product Section
======================= */
.product-section {
    background-color: #00ff6f4d;
}

.product-section-text {
    background-color: #00ff6f4d;
    padding-left: 5px;
}

.product-section-text h5 {
    font-size: 18px;
}

/* =======================
   Cards
======================= */
.custom-card {
    border: none !important;
}

.custom-card .image-container {
    position: relative;
    overflow: hidden;
	height: 300px;
}

.custom-card img {
    transition: transform 0.5s ease;
	height: 100%;
    width: 100%;
    object-fit: contain;
}

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

.custom-card:hover {
    border-radius: 0px !important;
}

/* Eye button */
.rainy-day-eye-button {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 0px;
    opacity: 0;
    transition: all 0.4s ease;
}

.custom-card:hover .rainy-day-eye-button {
    right: 15px;
    opacity: 1;
}

/* Round Images */
.custom-round-img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e7e7e7;
    padding: 10px;
}

.brand-logo-section{
   background-color: #ffcf97;
}

.pet-categories-block .custom-round-img {
    border-radius: 50%;
    object-fit: cover;
}

.brand-logo-section .container .wp-block-column{
    max-width: 100%;
    min-height: 130px;
    max-height: 180px;
    height: calc(100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 21px;
    background-color: #fff;
    margin: 10px 0;
}

@media (max-width: 1024px) {
    .custom-round-img {
        width: 150px !important;
        height: 150px !important;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media (max-width: 426px) {
    .custom-round-img {
        width: 135px !important;
        height: 135px !important;
        border-radius: 50%;
        object-fit: cover;
    }
}


/* =======================
   Discounts Section
======================= */
.discount-section {
    background-color: #00ff6f4d;
}

.discount-icon {
    max-width: 110px;
    height: auto;
}

/* =======================
   Brand logo
======================= */
.brand-logo {
	max-width: 100%;
	min-height: 130px;
	max-height: 180px;
	height: calc(100% - 20px);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	padding: 21px;
	background-color: #fff;
	margin: 10px 0;
}


/* =======================
   Nutritious Food
======================= */
.nutritious-food-section img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
}

/* =======================
   Testimonials
======================= */
.testimonial-section {
    background-color: #cce0ff;
}

.carousel-inner img {
    height: 400px;
    object-fit: cover;
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #00ff6f4d;
}

.testimonial-item-card {
    background: #fff;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    height: 350px;
    margin: 20px 0;
    border-radius: 20px;
    justify-content: flex-start;
}

.testimonial-item-card img {
    height: 80px !important;
    width: 80px !important;
    border-radius: 50%;
	margin-top: 5px;
}

/* =======================
   Owl Carousel
======================= */
.occasionSlider .owl-nav,
.product-section-cards .owl-nav,
.testimonialSlider .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.reelslider iframe {
    min-width: 100% !important;
}

.occasionSlider .owl-nav button,
.product-section-cards .owl-nav button,
.testimonialSlider .owl-nav button {
    height: 40px;
    width: 40px;
    background: #fff !important;
    border-radius: 50px !important;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    font-size: 20px !important;
}

/* =======================
   Contact Us
======================= */
.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    box-shadow: none;
}

.contact-section form {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
}
.contact-section form label.error {
    color: #f00;
    padding-left: 10px;
}
.contact-right-section {
    background: #fbcb5c;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section h2,
.contact-section h3 {
    letter-spacing: 1px;
}
.input-group p {
    position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: stretch;
    width: 100%;
	border-bottom: 1px solid #555;
}
.input-group-text {
    color: #555;
    font-size: 18px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
}
.contact-right-section .input-group {
    border-bottom: 1px solid #000;
}
.form-control {
    box-shadow: none !important;
}

.input-textarea span {
    margin: 0 10px !important;
    padding-top: 8px !important;
}

.contact-left-section .contact-info-box {
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.contact-left-section i {
    border: 2px solid #fbcb5c;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-left-section p {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.pet-type p{
	margin-bottom: 5px;
}


@media (max-width: 426px) {
    .custom-col {
        padding: 20px 25px !important;
    }

    .contact-form-right-input {
        margin-bottom: 10px !important;
    }
}



/* =======================
   Footer
======================= */
footer {
    background-color: #000;
    color: #fff;
}

footer h5 {
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fbcb5c;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
}

/* Social Icons */
.btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #222;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #444;
}


.btn-circle.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.btn-circle.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
    border: none;
}

.btn-circle.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.btn-circle.whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

/* Copyright Bar */
footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

footer p {
    margin-bottom: 0;
}


.footer-symbol {
    border: 2px solid #fff;
    width: 32px;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #25d366;
    border-color: #25d366;
    color: white;
    font-size: 22px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.whatsapp-float:hover {
    background: #20ba5a;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
    display: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 22px;
}

.footer-contact {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start; /* align items to the left */
    text-align: left;
}
.footer-contact p span {
    width: calc(100% - 50px);
}

.footer-contact{
    display: inline-flex;
    flex-direction: column;
    text-align: left;
}

/* ------------- */
.social-icons {
    display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
    .social-icons {
        display: flex;
        margin-top: auto;
        padding: 20px 15px;
        justify-content: center;
        gap: 10px;
        border-top: 1px solid #ddd;
    }
}

.navbar-brand {
    position: relative;
    z-index: 1200; /* higher than menu (1050) */
}