/** Shopify CDN: Minification failed

Line 199:5 Expected identifier but found "."
Line 231:5 Expected identifier but found "."
Line 1339:0 Expected "}" to go with "{"

**/
@font-face {
  font-family: 'Anton';
  src: url('/cdn/shop/files/Anton-Regular.ttf?v=1775592371') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
    /* Color Palette */
    --primary-brown: #301E13;
    --accent-orange: #FE5E3A;
    --vibrant-blue: #81D4FA;
    --sunny-yellow: #F8E68C;
    --cream-bg: #FFF6E8;
    --white: #ffffff;
    --black: #000000;
    --grey-text: #333333;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;

    /* Typography */
    --font-anton: 'Anton', sans-serif;
    --font-inter: 'Inter', sans-serif;
}
    /* Reusable Utility Classes */
.section-py {
    padding: var(--section-padding);
}

.bg-cream {
    background-color: var(--cream-bg);
}

.bg-brown {
    background-color: var(--primary-brown);
}
    .text-anton {
    font-family: var(--font-anton);
    text-transform: uppercase;
    letter-spacing: 0;
}
/* Typography System */
h1,
.h1-style {
    font-family: var(--font-anton);
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1.1;
}

h2,
.h2-style {
    font-family: var(--font-anton);
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.1;
}

h3,
.h3-style {
    font-family: var(--font-anton);
    font-size: 32px;
    text-transform: uppercase;
}

/* Button System */
.btn-base {
border-radius: 50px;
padding: 8px 24px;
font-family: var(--font-anton);
text-transform: uppercase;
transition: all 0.2s ease;
cursor: pointer;
border: 3px solid var(--primary-brown);
box-shadow: 4px 4px 0px 0px var(--primary-brown);
background: transparent;
color: var(--primary-brown);
font-size: 16px;
width: fit-content;
text-decoration: none;
transition: transform .2s, box-shadow .2s;
}

.btn-base:hover {
box-shadow: 6px 6px 0px 0px var(--primary-brown);
}

.btn-primary-style {
background-color: transparent;
transition: transform .2s, box-shadow .2s;

}

.btn-primary-style:hover {
background-color: var(--accent-orange);
box-shadow: none;
}

/* ===================== HERO SECTION ===================== */
.trex-hero-section {
    background-color: #FFF6E8;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.trex-hero-section .container {
    padding-top: 3%;
    position: relative;
    z-index: 1;
        padding-bottom: 40px;
}

.trex-hero-section .hero-heading {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(56px, 13vw, 180px);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0A0A0A;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
    width: clamp(320px, 50vw, 55%);
    word-break:normal;
}

.trex-hero-section .hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #555;
    max-width: 400px;
    margin: 0 0 28px 0;
    position: relative;
    z-index: 1;
}

.trex-hero-section .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trex-hero-section .hero-dog-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 580px;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 2;
}

.trex-hero-section .hero-bone-img {
    position: absolute;
    top: 6%;
    right: 46%;
    left: auto;
    width: clamp(60px, 7vw, 110px);
    height: auto;
    z-index: 1;
        transform: rotate(200deg);
    animation: boneFloat 3s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes boneFloat {
    0% {
        transform: rotate(15deg) translateY(0px);
    }

    50% {
        transform: rotate(15deg) translateY(-10px);
    }

    100% {
        transform: rotate(15deg) translateY(0px);
    }
}

@media (max-width: 1200px) {
    ..trex-hero-section {
        min-height: 82vh;
    }

    .trex-hero-section .hero-dog-img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .trex-hero-section {
        min-height: 75vh;
    }

    .trex-hero-section .hero-dog-img {
        height: 400px;
    }

    .trex-hero-section .hero-sub {
        font-size: 14px;
        max-width: 300px;
    }

    .trex-hero-section .hero-bone-img {
        top: 28%;
        right: 36%;
        left: auto;
        width: clamp(50px, 6.5vw, 90px);
    }
}

@media (max-width: 768px) {
    ..trex-hero-section {
        min-height: 100svh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 0;
        overflow: hidden;
    }

    .trex-hero-section .container {
        padding-top: 100px;
        padding-bottom: 20px;
        flex-shrink: 0;
    }

    .trex-hero-section .hero-sub {
        font-size: 13px;
        max-width: 280px;
    }

    .trex-hero-section .hero-dog-img {
        position: relative;
        display: block;
        height: clamp(300px, 45vw, 480px);
        width: 100%;
        object-fit: contain;
        /* object-position: center bottom; */
        flex-shrink: 0;
        bottom: auto;
        right: auto;
    }

   .trex-hero-section .hero-bone-img {
        top: auto;
        left: auto;
        bottom: clamp(285px, 43vw, 460px);
        right: 14px;
        width: clamp(44px, 7vw, 70px);
    }
}

@media (max-width: 580px) {
    .trex-hero-section {
        min-height: 100svh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 0;
        overflow: hidden;
    }

    .trex-hero-section .container {
        padding-top: 90px;
        padding-bottom: 16px;
        flex-shrink: 0;
    }

    .trex-hero-section .hero-sub {
        max-width: 100%;
        font-size: 13px;
    }

    .trex-hero-section .hero-cta {
        gap: 12px;
    }

    .trex-hero-section .hero-dog-img {
        position: relative;
        display: block;
        height: clamp(260px, 68vw, 380px);
        width: 100%;
        object-fit: contain;
        /* object-position: center bottom; */
        flex-shrink: 0;
        bottom: auto;
        right: auto;
    }

    .trex-hero-section .hero-bone-img {
        top: 3%;
        left: 60%;
        bottom: clamp(250px, 65vw, 370px);
        right: 16px;
        width: clamp(40px, 11vw, 62px);
    }
}

@media (max-width: 380px) {
    .trex-hero-section .container {
        padding-top: 80px;
    }

    .trex-hero-section .hero-dog-img {
        height: 240px;
    }

    /* 380px small phones */
    .trex-hero-section .hero-bone-img {
        width: 36px;
        bottom: 232px;
        right: 10px;
    }
}

/* Hero / Pet Shop Section */
.main-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.pet-shop-section .pet-card {
    background-color: var(--white);
    border-radius: 30px;
    padding: 30px;
    min-height: 479px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pet-shop-section .pet-card h2 {
    margin-bottom: 15px;
    color: #0A0A0A;
}

.pet-shop-section .pet-card p {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 25px;
}

.pet-shop-section .image-container {
    border-radius: 40px;
    margin: 30px 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 180px;
    width: 100%;
}

.pet-shop-section .image-container img {
    max-width: 110%;
    height: 210px;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    z-index: 1;
}


/* Essentials Section */
.trex-pets-essentials {
    background-color: #fff;
    overflow: hidden;
        padding: 50px 0;
}

.trex-pets-essentials .image-flip-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trex-pets-essentials h2{
    padding-right:3px;
}
.trex-pets-essentials p{
    font-size:20px !important;
}
.trex-pets-essentials .cards-wrapper {
    position: relative;
    max-width: 580px;
    width: 100%;
    aspect-ratio: 580 / 500;
    margin: 0 auto;
    transform-origin: center center;
}

.trex-pets-essentials .flip-card {
    position: absolute;
    width: 77.58%;
    height: 90%;
    border-radius: 48px;
    overflow: hidden;
    background: #FFFFFF01;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0px 0px #000000;
    opacity: 1;
}

.trex-pets-essentials .flip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trex-pets-essentials .card-1 {
    z-index: 2;
    top: 0;
    left: 0;
    transform: translate(0, 0) rotate(-6.57deg) scale(1);
    transform-origin: center;
    animation: cardOneShuffle 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.trex-pets-essentials .card-2 {
    z-index: 1;
    top: 10.08%;
    left: 22.66%;
    transform: translate(0, 0) rotate(6.57deg) scale(1);
    transform-origin: center;
    animation: cardTwoShuffle 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes cardOneShuffle {

    0%,
    40% {
        z-index: 2;
        top: 0;
        left: 0;
        transform: rotate(-6.57deg) scale(1);
    }

    45% {
        z-index: 1;
    }

    50%,
    90% {
        z-index: 1;
        top: 10.08%;
        left: 22.66%;
        transform: rotate(6.57deg) scale(1);
    }

    95% {
        z-index: 2;
    }

    100% {
        z-index: 2;
        top: 0;
        left: 0;
        transform: rotate(-6.57deg) scale(1);
    }
}

@keyframes cardTwoShuffle {

    0%,
    40% {
        z-index: 1;
        top: 10.08%;
        left: 22.66%;
        transform: rotate(6.57deg) scale(1);
    }

    45% {
        z-index: 2;
    }

    50%,
    90% {
        z-index: 2;
        top: 0;
        left: 0;
        transform: rotate(-6.57deg) scale(1);
    }

    95% {
        z-index: 1;
    }

    100% {
        z-index: 1;
        top: 10.08%;
        left: 22.66%;
        transform: rotate(6.57deg) scale(1);
    }
}

@media (max-width: 991px) {
.trex-pets-essentials .image-flip-container {
    height: auto;
    margin-top: 40px;
    position: relative;
    display: flex;
}

.trex-pets-essentials .cards-wrapper {
    position: relative;
    width: 65%;
    left: auto;
    top: auto;
    margin-left: 10px;
    margin-top: 0;
    transform: none;
}
}

@media (max-width: 575px) {
.trex-pets-essentials .cards-wrapper {
    width: 75%;
}
.trex-pets-essentials{
    padding: 50px 20px;
}
}

@media (max-width: 400px) {
.trex-pets-essentials .cards-wrapper {
    width: 95%;
}

}

/* Everything for Cats */
    .pet-accessories .cat-card {
        background: var(--white);
        border-radius: 40px;
        padding: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: visible;
    }

        .pet-accessories .cat-card h2 {
        font-family: var(--font-anton);
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 80px;
        text-transform: uppercase;
        color: var(--black);
        text-align: left;
    }

    .pet-accessories .cat-img-wrapper {
        border-radius: 50px;
        height: 180px;
        position: relative;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

        .pet-accessories .cat-img-wrapper img {
        position: absolute;
        bottom: 0;
        height: 253px;
        width: auto;
        object-fit: contain;
        pointer-events: none;
        transition: all 0.3s ease;
    }

/* Responsive Global */
@media (max-width: 768px) {
.section-py {
    padding: var(--section-padding-mobile) !important;
}

h1,
.h1-style {
    font-size: 40px !important;
}

h2,
.h2-style {
    font-size: 36px !important;
}

h3,
.h3-style {
    font-size: 24px !important;
}

.main-title {
    margin-bottom: 30px !important;
}

.section-header {
    margin-bottom: 30px !important;
}

    .pet-accessories .cat-card h2 {
    margin-bottom: 60px !important;
}

.pet-accessories .cat-img-wrapper {
    height: 140px !important;
}

    .pet-accessories .cat-img-wrapper img {
    height: 200px !important;
}
}


/* Brand / Exclusive Section */
.brand-swiper {
padding: 20px 0;
}

.brand-swiper .swiper-slide {
opacity: 0.7;
transition: opacity 0.3s;
}

.brand-swiper .swiper-slide:hover {
opacity: 1;
}

.brand-swiper img {
max-height: 80px;
object-fit: contain;
}

/* Marquee Continuous Effect */
.brand-swiper .swiper-wrapper {
transition-timing-function: linear !important;
}

/* Live Food Section */
.live-food-section .section-header {
margin-bottom: 60px;
}

.live-food-section .section-header h2 {
font-size: 64px;
margin-bottom: 15px;
}

.live-food-section .section-header .description {
font-size: 18px;
max-width: 600px;
line-height: 1.4;
color: var(--grey-text);
}

.live-food-section .food-card .food-img-container {
aspect-ratio: 1/1;
border-radius: 20px;
border: 2px solid var(--black);
box-shadow: 6px 6px 0px 0px #0A0A0A;
overflow: hidden;
margin-bottom: 20px;
}

.live-food-section .food-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.live-food-section .food-card:hover img {
transform: scale(1.1);
}

.live-food-section .food-info {
display: flex;
justify-content: space-between;
align-items: center;
}

.live-food-section .food-info h3 {
font-size: 28px;
margin: 0;
}

.live-food-section .price-pill {
background-color: var(--vibrant-blue);
font-weight: 700;
padding: 6px 15px;
border-radius: 50px;
font-size: 14px;
}

/* Slider Controls */
.live-food-section .slider-controls {
margin-top: 50px;
display: flex;
justify-content: space-between;
align-items: center;
}

.live-food-section .nav-btn {
width: 54px;
height: 54px;
border-radius: 50%;
border: 3px solid var(--primary-brown);
display: flex;
justify-content: center;
align-items: center;
background: var(--white);
box-shadow: 6px 6px 0px 0px var(--black);
cursor: pointer;
transition: 0.2s;
}

.live-food-section .nav-btn:hover {
background: var(--primary-brown);
color: var(--white);
box-shadow: none;
}

.live-food-section .swiper-button-disabled {
opacity: 0.5;
cursor: not-allowed;
}

/* video section homepage */

.t-rex-video {
    padding: 150px 20px 40px;
    overflow: hidden;
}


/* TEXT */
.t-rex-video .content{
        max-width: 550px;
    margin: 0 auto;
    padding-bottom: 40px;
}
.t-rex-video .content h2 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.t-rex-video .content p {
  font-size: 18px;
  color: #0A0A0A;
  margin-bottom: 25px;
}

.t-rex-video .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* VIDEO SECTION */
.t-rex-video .video-wrapper {
  position: relative;
  margin-top: 60px;
}

/* BACKGROUND SHAPE */
.t-rex-video .bg-shape {
position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t-rex-video .bg-shape img {
    width: 100%;
    max-width: 1230px;
}

/* VIDEO BOX */
.t-rex-video .video-box {
  position: relative;
  z-index: 2;
  max-width: 1136px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
}

.t-rex-video .video-box video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    max-width: 1040px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .t-rex-video .content h2 {
    font-size: 30px;
  }

  .t-rex-video .video-box {
    border-radius: 20px;
  }
}

/* expend-family-zipcode */
.trex-zip__subscribe-field {
    margin-bottom: 15px;
    max-width: 400px;
        padding-top: 20px;
}
.zip-code-input {
width: 100%;
background: #301e13;
border-radius: 30px;
color: #fff;
padding: 9px 16px;
font-size: 13px;
outline: none;
transition: border-color 0.2s ease;
border: 3px solid #ffffff;
box-shadow: 4px 4px 0 0 #ffffff;
}
.zip-code-input::placeholder {
color:rgba(255, 255, 255, 0.85);
font-size: 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-family: 'Anton';
}
.zip-code-btn {
    display: inline-block;
    background: #301e13;
    border: 3px solid #ffffff;
    box-shadow: 4px 4px 0 0 #ffffff;
    border-radius: 30px;
    color: #fff;
    padding: 11px 22px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Anton';
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* product-css-hp */

/* Top Sellers Section */
        .top-sellers-section {
            background-color: var(--cream-bg);
            padding: var(--section-padding);
        }
        .top-sellers-section .section-header h2 {
    font-size: 64px;
    margin-bottom: 50px;
}

        .top-sellers-section .seller-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .top-sellers-section .seller-img-box {
            aspect-ratio: 1 / 1;
            border-radius: 20px;
            border: 2px solid var(--black);
            box-shadow: 6px 6px 0px 0px #0A0A0A;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .top-sellers-section .seller-img-box img {
            width: 100%;
            height: 100%;
            object-fit: center;
            transition: transform 0.3s ease;
        }

        .top-sellers-section .seller-card:hover .seller-img-box img {
            transform: scale(1.05);
        }

        .top-sellers-section .rating-stars {
            color: var(--black);
            font-size: 20px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .top-sellers-section .product-name-title {
            font-family: var(--font-anton);
            font-size: 32px;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 15px;
            color: var(--black);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 70px;
        }

        .top-sellers-section .product-footer-links {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
        }

        .top-sellers-section .price-details {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .top-sellers-section .price-pill-new {
            background-color: var(--vibrant-blue);
            color: var(--black);
            font-family: var(--font-anton);
            padding: 5px 15px;
            border-radius: 12px;
            font-size: 14px;
            width: fit-content;
        }

        .top-sellers-section .unit-price-text {
            font-size: 14px;
            color: var(--grey-text);
            margin: 0;
            font-weight: 600;
        }

        .top-sellers-section .top-sellers-controls {
            margin-top: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-sellers-section .nav-arrows-new {
            display: flex;
            gap: 15px;
        }
       .top-sellers-section .nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid var(--primary-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    box-shadow: 6px 6px 0 0 var(--black);
    cursor: pointer;
    transition: .2s;
}
.top-sellers-section .swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}

        @media (max-width: 768px) {
            .top-sellers-section .product-name-title {
                font-size: 24px;
                height: 55px;
            }

            .top-sellers-section .top-sellers-controls {
                flex-direction: column;
                gap: 30px;
                align-items: center;
            }

            .top-sellers-section .nav-arrows-new {
                order: 2;
            }
/* 
            .top-sellers-section .btn-base {
                order: 1;
                width: 100%;
            } */
        }


/* Button System */
.product-form__submit {
border-radius: 50px;
padding: 8px 24px;
font-family: var(--font-anton);
text-transform: uppercase;
transition: all 0.2s ease;
cursor: pointer;
border: 3px solid var(--primary-brown);
box-shadow: 4px 4px 0px 0px var(--primary-brown);
background: transparent;
color: var(--primary-brown);
font-size: 25px;
width: fit-content;
text-decoration: none;
transition: transform .2s, box-shadow .2s;
width:100%;
}

.btn-base:hover {
box-shadow: 6px 6px 0px 0px var(--primary-brown);

}
.product-form__submit {
background-color: transparent;
transition: transform .2s, box-shadow .2s;

}

.product-form__submit:hover {
background-color: var(--accent-orange);
box-shadow: none;
}

div#shopify-block-AaGVKRE9hK0ZLWWt0K__1768834845299682660 {
    display: none !important;
}
.toggle_card{
        border: 3px solid var(--primary-brown);
    box-shadow: 8px 3px 0 0 var(--primary-brown);
    border-radius: 30px !important;
}

.toggle_card .tab_label{
        padding:20px !important;
}

.product-descriptions {
    padding: 100px 0px 20px;
}
.product-descriptions h2{
    text-align:center;
    padding-bottom:50px;
}

/* testimonials */
.section_testimonials {
    background-color: var(--cream-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:100px;
}

.section_testimonials .stars-box {
    color: #FE5E3A;
    font-size: 28px;
    margin-bottom: 15px;
}

.section_testimonials h2 {
    font-family: var(--font-anton);
    font-size: clamp(36px, 10vw, 64px);
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.section_testimonials .cards-inner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;

}

.section_testimonials .testimonial-item {
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: 4px 4px 0px 0px var(--primary-brown);
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section_testimonials .item-left {
    position: relative;
    top: 3rem;
    transform: rotate(-4deg);
    z-index: 2;
    width: clamp(300px, 100%, 410px);
}

.section_testimonials .item-left:hover {
    transform: scale(1.05) rotate(-7deg);
}

.section_testimonials .item-center {
    background-color: #FDF1AA;
    z-index: 1;
    width: clamp(300px, 100%, 384px);
    margin-left: -2.5rem;
    margin-right: -2.5rem;
}

.section_testimonials .item-center:hover {
    z-index: 4;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
}

.section_testimonials .item-right {
    width: clamp(300px, 100%, 410px);
    transform: rotate(4deg);
    z-index: 3;
}

.section_testimonials .item-right:hover {
    z-index: 3;
    transform: scale(1.05) rotate(6deg);
}

.section_testimonials .user-thumb {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000;
    margin-bottom: 25px;
}

.section_testimonials .user-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_testimonials .user-quote {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 30px;
    font-family: var(--font-inter);
    color: #000;
    text-align: center;
}

.section_testimonials .user-info-box {
    text-align: center;
}

.section_testimonials .user-name-text {
    font-weight: 800;
    margin: 0;
    font-size: 17px;
}

.section_testimonials .user-role-text {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .section_testimonials .cards-inner-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 50px;
        padding-bottom: 50px;
    }

    .section_testimonials .item-left {
        top: 0;
    }

    .section_testimonials .testimonial-item {
        position: relative;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}


/* inner-hero-banner */


.about-us-sec {
  padding: 50px 40px 0;
  overflow: hidden; 
}

.about-us-sec .pet-container {
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center; 
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.about-us-sec .pet-content {
  flex: 1;
}

.about-us-sec .pet-content h1 {
  font-size: 70px;
  font-weight: 900;
      color: #0A0A0A;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-us-sec .pet-content p {
  font-size: 18px;
  color: #333;
  max-width: 420px;
  line-height: 1.6;
  padding-bottom:10px;
}
.about-us-sec .hero-cta {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 16px;
}
/* RIGHT IMAGE */
.about-us-sec .pet-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-us-sec .pet-image img {
  display: block; /* 🔥 removes inline gap */
  width: 130%; /* 🔥 bigger image */
  max-width: none;
  height: auto;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {
  .about-us-sec .pet-content h1 {
    font-size: 50px;
  }

  .about-us-sec .pet-image img {
    width: 115%;
  }
}

@media (max-width: 768px) {
  .about-us-sec .pet-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

 .about-us-sec .pet-content h1 {
    font-size: 38px;
  }

  .about-us-sec .pet-content p {
    margin: 0 auto;
  }

  .about-us-sec .pet-image {
    justify-content: center;
  }

  .about-us-sec .pet-image img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-us-sec {
    padding: 40px 20px 0;
  }

  .about-us-sec .pet-content h1 {
    font-size: 30px;
  }

  .about-us-sec .pet-content p {
    font-size: 16px;
  }

