:root {
    --light-gray: #e5e7eb;
}

.scrolling-text-banner {
    background-color: var(--primary-green);
    padding: 10px 0;
    overflow: hidden;
}

.scrolling-text-content {
    display: flex;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

.scrolling-text-content span {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-right: 30px;
    font-family: 'Nohemi', sans-serif !important;
}

.scrolling-text-content img {
    height: 1em;
    max-height: 20px;
    vertical-align: middle;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

body {
    margin: 0;
    overflow-x: hidden;
}

.body-font {
	 font-family: 'Articulat CF', sans-serif;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #333;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide-1 .slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.135), rgba(0, 0, 0, 0.171));
}

.slide-2 .slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.slide-3 .slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.slide-4 .slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.slide-5 .slide-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.slide-content {
    color: white;
    padding: 0 8%;
    max-width: 500px;
    transform: translateY(-30px);
    position: relative;
    z-index: 3;
}

.slide-content h1 {
    font-size: 46px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.3;
}

.slide-content p {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.slide-content .cta-button {
    background-color: var(--light-yellow);
    color: #333;
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.slide-content .cta-button:hover {
    background-color: var(--primary-green);
    color: white;
}

.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    z-index: 10;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.slider-controls button:hover {
    background-color: white;
}

.slider-controls button svg {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 2;
}

.slide-indicator {
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

.scrolling-text-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-green);
    color: white;
    padding: 15px 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 5;
}

.scrolling-text-content {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.scrolling-text-content span {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 50px;
    letter-spacing: 1px;
}

.scrolling-text-content .logo-text {
    font-weight: bold;
    font-style: italic;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 50vh;
    }

    .slide-content {
        text-align: center;
        padding: 0 5%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-2 .slide-content {
        justify-content: flex-start;
        padding-top: 50px;
    }
}

:root {
    --text-light: #ffffff;
    --text-dark: #333333;
}

.grooming-essentials-module {
    padding: 40px 20px;
}

.card-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 40%;
    z-index: 0;
}

.card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.content-block {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    padding: 0 6%;
    max-width: 525px;
}

.content-block h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px;
}

.content-block .cta-button {
    background-color: var(--light-yellow);
    color: var(--text-dark);
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.content-block .cta-button:hover {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .grooming-essentials-module {
        padding: 20px 15px;
    }

    .card-container {
        height: 600px;
        align-items: flex-end;
    }

    .card-container::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    }

    .content-block {
        max-width: 100%;
        text-align: center;
        padding: 0 25px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .content-block p {
        font-size: 1rem;
    }
}

.brand-features-module {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-main-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
    line-height: 1.8;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 75px;
    height: 75px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-green);
    fill: var(--primary-green);
    stroke-width: 1.5;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 10px;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.2;
    color: #555;
    max-width: 320px;
    margin: 0 auto 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-button {
    background-color: #f8bf5d;
    margin-top: 10px;
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .features-main-title {
        font-size: 34px;
        font-weight: 600;
    }
}

.collection-module {
    background-color: var(--background-beige);
    padding: 80px 20px;
    text-align: center;
}

.collection-container {
    max-width: 1200px;
    margin: 0 auto;
}

.collection-sub-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collection-main-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 0 auto 60px;
}

.collection-grid {
    display: grid;
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-image-wrapper {
    width: 80%;
    /* border-radius: 20px; */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #ffffff;
    aspect-ratio: 1 / 1;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.card-title {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin: 0 0 20px;
    flex-grow: 1;
    line-height: 1.2;
    font-family: 'Articulat CF', sans-serif;
}

.card-button {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    letter-spacing: 1px;
}

.all-products-button-wrapper {
    margin-top: 60px;
}

.all-products-button {
    display: inline-block;
    background-color: #f8bf5d;
    color: var(--text-dark);
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.all-products-button:hover {
    background-color: white;
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

@media (min-width: 769px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .collection-main-title {
        font-size: 3.2rem;
    }
}

.b-corp-module {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-green);
}

.b-corp-content {
    background-color: var(--primary-green);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
}

.content-wrapper {
    max-width: 450px;
}

.b-corp-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.b-corp-title {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 20px;
}

.b-corp-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px;
    opacity: 0.9;
}

.b-corp-button {
    background-color: var(--light-yellow);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.b-corp-button:hover {
    background-color: #fdd870;
    transform: scale(1.05);
}

.b-corp-image {
    position: relative;
    min-height: 400px;
    background-color: #f8bf5d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.b-corp-image img {
    max-width: 80%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.b-corp-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    opacity: 0.85;
}

.b-corp-logo-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 992px) {
    .b-corp-module {
        flex-direction: row;
        min-height: 550px;
    }

    .b-corp-content,
    .b-corp-image {
        width: 50%;
    }

    .b-corp-content {
        justify-content: center;
        padding: 50px 0;
    }

    .b-corp-title {
        font-size: 32px;
    }
}

.newsletter-form-embedded {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.newsletter-form-embedded input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form-embedded input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-embedded input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form-embedded button {
    background-color: var(--light-yellow);
    border: 1px solid var(--light-yellow);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-embedded button:hover {
    background-color: #fdd870;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .newsletter-form-embedded {
        flex-direction: row;
    }

    .newsletter-form-embedded input[type="email"] {
        flex-grow: 1;
    }
}

.testimonial-module-revised {
    padding: 80px 0;
    background-color: var(--background-beige);
    overflow: hidden;
}

.testimonial-module-revised .testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonial-module-revised .testimonial-main-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-green);
    line-height: 1.4;
    margin: 0 auto 10px;
}

.testimonial-module-revised .testimonial-sub-title {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto 60px;
    max-width: 450px;
    line-height: 1.5;
}

.testimonial-module-revised .testimonial-carousel {
    width: 100%;
    display: flex;
}

.testimonial-module-revised .carousel-track {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    animation: infinite-scroll 40s linear infinite;
}

.testimonial-module-revised .testimonial-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes infinite-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-module-revised .testimonial-card {
    width: 350px;
    flex-shrink: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.testimonial-module-revised .card-staggered {
    margin-top: 60px;
}

.testimonial-module-revised .testimonial-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.testimonial-module-revised .card-content {
    padding: 0 10px;
}

.testimonial-module-revised .stars {
    color: var(--light-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-module-revised .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 20px;
}

.testimonial-module-revised .reviewer-name {
    font-weight: bold;
    color: var(--primary-green);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .testimonial-module-revised .testimonial-main-title {
        font-size: 2.2rem;
    }

    .testimonial-module-revised .testimonial-card {
        width: 300px;
    }

    .testimonial-module-revised .carousel-track {
        animation-duration: 30s;
    }

    .testimonial-module-revised .card-staggered {
        margin-top: 40px;
    }

    .newsletter-form-embedded input[type="email"] {
        width: 90%;
    }
}