
    @font-face {
      font-family: "DTNightingale";
      src: url("icons/Nightingale.ttf") format("truetype");
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

/* Scoped styles for the Vessa navigation menu */
body{
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    overflow-x: hidden !important;
}h1.pet-wellness-title{
    font-family: "Plus Jakarta Sans";
    font-size: 53.76px;
    font-weight: 700;
}
span.pet-wellness-highlight {
    font-family: 'DTNightingale';
    font-weight: 400;
    line-height: .8em;
}
.vessa-header {
    width: 100%;
    background-color: #fff;
    padding: 7px 2%;
    box-sizing: border-box;
}

.vessa-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vessa-logo a {
    text-decoration: none;
    color: #000;
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: -2px;
}

.vessa-nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.vessa-nav-links li {
    margin: 0 15px;
}

.vessa-nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 1px;
        text-transform: uppercase;
    flex-flow: column;
    height: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}

.vessa-nav-icons-desktop {
    display: flex;
    align-items: center;
}

.vessa-search-container {
    position: relative;
    margin-right: 20px;
}

.vessa-search-input {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 30px 8px 15px;
    width: 200px;
}

.vessa-search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
}

.vessa-icon {
    color: #000;
    font-size: 1.2em;
    margin-left: 15px;
}

.vessa-nav-icons-mobile,
.vessa-hamburger,
.vessa-mobile-menu {
    display: none;
}

.vessa-bar {
    display: block;
    width: 28px;
    height: 2px;
    margin: 3.5px auto;
    background-color: #000;
}

/* Responsive styles for mobile */
@media (max-width: 992px) {
    .vessa-menu-desktop,
    .vessa-nav-icons-desktop {
        display: none;
    }

    .vessa-nav-icons-mobile,
    .vessa-hamburger {
        display: flex;
        align-items: center;
    }

    .vessa-hamburger {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 20px;
    }
    
    .vessa-mobile-menu {
        display: none; /* Initially hidden */
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }

    .vessa-mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .vessa-mobile-menu li {
        padding: 15px 0;
    }

    .vessa-mobile-menu a {
        text-decoration: none;
        color: #000;
        font-weight: 600;
    }
    
    /* Javascript would be needed to toggle this class on hamburger click */
    .vessa-mobile-menu.active {
        display: block;
    }
}    .menu-bar {
        background-color: #000;
        margin-bottom: 0;
    }.menu-bar {
    background-color: #000;
    width: 30px;
    height: 2px;
    margin-bottom: 6px;
}button.vessa-hamburger {
    display: flex
;
    flex-direction: column;
}















/* Scoped styles for the Collection Section */

.collection-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 40px 20px;
    text-align: left;
}

.collection-container {
    max-width: 1200px;
    margin: 0 auto;
}

.collection-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.collection-subtitle .categories-icon {
    color: #000;
}

.collection-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 30px 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Optional: adds rounded corners to images */
}

.collection-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 17 / 13;
    display: block;
    transition: transform 0.3s ease;
        object-fit: cover;

}

.collection-item:hover img {
    transform: scale(1.05); /* Optional: slight zoom on hover */
}

.collection-item-name-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    color: #333;
    transition: opacity 0.3s ease;
}

.collection-item-name-below {
    display: none; /* Hidden by default */
}

/* --- RESPONSIVE STYLES --- */

/* For tablets and smaller devices where the text moves below the image */
@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .collection-title {
        font-size: 2.4rem;
    }

    .collection-item-name-overlay {
        display: none; /* Hide the overlay text */
    }

    .collection-item-name-below {
        display: block; /* Show the text below the image */
        text-align: left;
        margin-top: 15px;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
    }

    .collection-item {
       border-radius: 0;
    }

    .collection-item img {
        border-radius: 8px;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .collection-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }

    .collection-title {
        font-size: 2rem;
    }
}











/* Scoped styles for the Featured Products Section */

.featured-products-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    text-align: left;
}

.featured-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.featured-products-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 40px 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-product-link {
    text-decoration: none;
    color: inherit;
}

.featured-product-image-wrapper {
    position: relative;
    background-color: #f5f5f5; /* Light grey background for images */
    overflow: hidden;
}

.featured-product-image {
border-radius: 10px;
aspect-ratio: 5/4;
    object-fit: cover;

    width: 100%;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

.product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Hidden by default */
}

/* Hover effect for the image */
.featured-product-item:hover .product-image-secondary {
    opacity: 1; /* Show secondary image on hover */
}

.featured-product-item:hover .product-image-primary {
    opacity: 0; /* Hide primary image on hover */
}

.featured-product-details {
    padding-top: 20px;
}

.featured-product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
}

.featured-product-price {
    font-size: 1rem;
    color: #555;
    margin: 0;
}


/* --- RESPONSIVE STYLES --- */

/* For tablets */
@media (max-width: 992px) {
    .featured-products-grid {
        /* On tablets, we change to a vertical layout with image on left, text on right */
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .featured-product-item .featured-product-link {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 equal columns */
        align-items: center;
        gap: 25px;
    }

    .featured-product-details {
        padding-top: 0;
    }

     .featured-products-title {
        font-size: 2.4rem;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .featured-products-grid {
        gap: 40px;
    }

    /* On mobile, we stack the image on top of the text */
    .featured-product-item .featured-product-link {
        grid-template-columns: 1fr; /* single column */
        gap: 20px; /* space between image and text */
    }

    .featured-products-title {
        font-size: 2rem;
    }

    .featured-product-name {
        font-size: 1rem;
    }
}












/* Scoped styles for the Features Section */

.features-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Image takes up less space than the text grid */
    align-items: center;
    gap: 60px;
}

.features-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: adds slightly rounded corners to the image */
    aspect-ratio: 3/4;
    object-fit: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for the features */
    gap: 40px 30px; /* Vertical and horizontal gap */
}

.feature-item {
    display: flex;
    align-items: flex-start; /* Aligns icon to the top of the text block */
    gap: 15px;
    position: relative;
    padding-bottom: 40px; /* Space for the line */
}

/* Creates the horizontal line, but only for the top two items */
.feature-item:nth-child(1)::after,
.feature-item:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #333;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px 0;
}

.feature-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}


/* --- RESPONSIVE STYLES --- */

/* For tablets and smaller devices */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr; /* Stack image on top of features grid */
        gap: 50px;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr; /* Stack features in a single column */
        gap: 30px;
    }
    
    .feature-item {
        padding-bottom: 30px;
    }

    /* Apply the dividing line to all items except the very last one */
    .feature-item::after {
        content: '' !important;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #e0e0e0;
    }

    .feature-item:last-child::after {
        content: none !important; /* Remove line from the last item */
    }
}










/* Scoped styles for the Mission Section */

.mission-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff; /* Assuming a white background */
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Text column is 1.5 times wider than image */
    align-items: center;
    gap: 80px; /* Increased gap for more white space */
}

.mission-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: adds a subtle curve to the image corners */
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #222;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.mission-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.mission-text:last-of-type {
    margin-bottom: 40px; /* More space before the button */
}

.mission-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50px; /* Creates the pill shape */
    padding: 10px 15px 10px 25px; /* More padding on the left for balance */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mission-button-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-left: 15px;
    background-color: #f5f5f5; /* Light grey circle */
    border-radius: 50%;
    color: #777;
    font-size: 1.2rem;
    line-height: 1; /* Helps with vertical alignment */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mission-button:hover {
    background-color: #f5f5f5; /* Light grey background on hover */
}

.mission-button:hover .mission-button-icon {
    background-color: #e0e0e0;
    color: #333;
}


/* --- RESPONSIVE STYLES --- */

/* For tablets and smaller devices */
@media (max-width: 992px) {
    .mission-container {
        grid-template-columns: 1fr; /* Stack image on top of text */
        gap: 50px;
    }

    .mission-title {
        font-size: 1.8rem;
    }

    /* Centers the text content when stacked */
    .mission-content {
        text-align: center;
    }

    /* Adjust button alignment for centered text */
     .mission-button {
        margin: 0 auto;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .mission-title {
        font-size: 1.5rem;
    }

    .mission-text {
        font-size: 0.95rem;
    }

    .mission-content {
        text-align: left; /* Return to left-align on mobile for readability */
    }

     .mission-button {
        margin: 0; /* Remove auto margin */
    }
}





/* Scoped styles for the Latest Products Section */

.latest-products-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff;
}

.latest-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.latest-products-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.latest-products-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 40px 0;
}

.latest-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 30px;
}

.latest-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.latest-product-image-wrapper {
    position: relative; /* This is crucial for positioning the hover image */
    background-color: #f7f5f3;
    overflow: hidden;
    margin-bottom: 20px;

}

.latest-product-image {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1.25;

    object-fit: cover;
    transition: opacity 0.4s ease-in-out; /* Smooth fade transition */
}

/* Style for the hover image */
.product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Hidden by default */
}

/* --- The New Hover Effect --- */
.latest-product-link:hover .product-image-secondary {
    opacity: 1; /* Show the secondary image */
}

.latest-product-link:hover .product-image-primary {
    opacity: 0; /* Hide the primary image */
}

.latest-product-details {
    text-align: left;
}

.latest-product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
}

.latest-product-price {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}


/* --- RESPONSIVE STYLES (Unchanged) --- */

/* For tablets */
@media (max-width: 992px) {
    .latest-products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .latest-products-title {
        font-size: 2.4rem;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .latest-products-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }

     .latest-products-title {
        font-size: 2rem;
    }
}












/* Scoped styles for the Vessa Footer Section */

.vessa-footer {
    background-color: #000;
    color: #a0a0a0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 80px 20px 20px 20px;
}

.vessa-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vessa-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr; /* Custom columns for the layout */
    gap: 50px;
    padding-bottom: 50px;
}

.vessa-footer-brand {
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 15px 0;
}

.vessa-footer-about p {
    line-height: 1.6;
    margin-bottom: 30px;
}

.vessa-footer-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
}

.vessa-footer-email-input {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.vessa-footer-email-input::placeholder {
    color: #a0a0a0;
}

.vessa-footer-submit-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 0 0 10px;
}

.vessa-footer-title {
    color: #777;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
}

.vessa-footer-email-link {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    word-break: break-all; /* Prevents overflow on small screens */
}

.vessa-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vessa-footer-links li {
    margin-bottom: 15px;
}

.vessa-footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vessa-footer-links a:hover {
    color: #fff;
}

.vessa-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
}

.vessa-footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
}
.vessa-footer-legal a:hover {
    color: #fff;
}

.vessa-footer-legal span {
    margin: 0 10px;
    color: #555;
}


/* --- RESPONSIVE STYLES --- */

/* For tablets */
@media (max-width: 992px) {
    .vessa-footer-main {
        grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
        gap: 40px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .vessa-footer-main {
        grid-template-columns: 1fr; /* 1 column for mobile */
        text-align: center;
    }

    .vessa-footer-email-link {
        font-size: 1.2rem;
    }
    
    .vessa-footer-form {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .vessa-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vessa-footer-legal {
        display: flex;
        flex-wrap: wrap; /* Allows legal links to wrap if needed */
        justify-content: center;
    }
}




/* Scoped styles for the Connect Section */

.connect-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff;
}

.connect-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Form column is slightly wider */
    gap: 60px;
    align-items: flex-start; /* Aligns items to the top */
}

.connect-image-wrapper img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
}

.connect-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.connect-title {
    font-size: 3rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 50px 0;
}

.connect-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px; /* Vertical and horizontal gap */
}

.connect-form-group {
    position: relative;
}

.connect-full-width {
    grid-column: 1 / -1; /* Makes the element span both columns */
}

.connect-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.connect-input,
.connect-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 1rem;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.connect-input:focus,
.connect-textarea:focus {
    outline: none;
    border-color: #000;
}

.connect-input::placeholder,
.connect-textarea::placeholder {
    color: #999;
}

.connect-textarea {
    min-height: 120px;
    resize: vertical; /* Allows user to resize vertically only */
}

.connect-form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows items to wrap on small screens */
    gap: 20px;
}

.connect-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.connect-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #000;
}

.connect-checkbox-label {
    font-size: 0.9rem;
    color: #555;
}

.connect-checkbox-label a {
    color: #000;
    text-decoration: underline;
}

.connect-submit-btn {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.connect-submit-btn:hover {
    background-color: #000;
    color: #fff;
}

/* --- RESPONSIVE STYLES --- */

@media (max-width: 992px) {
    .connect-container {
        grid-template-columns: 1fr; /* Stack columns vertically */
        gap: 50px;
    }

    .connect-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .connect-form-grid {
        grid-template-columns: 1fr; /* Stack form fields vertically */
        gap: 30px;
    }

    .connect-title {
        font-size: 2.2rem;
    }
    
    .connect-form-footer {
        flex-direction: column; /* Stack checkbox and button */
        align-items: flex-start; /* Align to the left */
        gap: 25px;
    }
}


/* Scoped styles for the Contact Information Section */

.contact-info-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text column is slightly wider */
    align-items: center;
    gap: 60px;
}

.contact-info-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: adds a subtle curve to the image corners */
}

.contact-info-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.contact-info-intro {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 50px 0;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
}

.contact-info-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #f5f2f0; /* Light beige background */
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.contact-info-link:hover {
    background-color: #e9e5e1; /* Slightly darker on hover */
}

.contact-info-link svg {
    color: #555;
}


/* --- RESPONSIVE STYLES --- */

/* For tablets and smaller devices */
@media (max-width: 992px) {
    .contact-info-container {
        grid-template-columns: 1fr; /* Stack columns vertically */
        gap: 50px;
    }

    .contact-info-image-wrapper {
        order: -1; /* Moves the image to the top on mobile/tablet */
    }

    .contact-info-intro {
        font-size: 1.1rem;
    }
}

/* Scoped styles for the FAQ Section */

.faq-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 80px 20px;
    background-color: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left column is smaller */
    gap: 60px;
}

/* --- Left Column: Intro --- */
.faq-intro {
    border-right: 1px solid #e0e0e0;
    padding-right: 60px;
}

.faq-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin: 0 0 15px 0;
}

.faq-title {
    font-size: 3rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 25px 0;
}

.faq-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.faq-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}
.faq-contact-link:hover {
    color: #000;
}

/* --- Right Column: Accordion --- */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #222;
    transition: transform 0.3s ease;
}
/* Horizontal bar */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
}
/* Vertical bar */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease;
    padding: 0;
}
.faq-answer p {
    margin: 0;
    padding-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

/* Active state for accordion item */
.faq-item.active .faq-question {
    color: #000;
}
.faq-item.active .faq-icon::before {
    transform: rotate(180deg); /* Horizontal bar flips, but looks same */
}
.faq-item.active .faq-icon::after {
    transform: rotate(90deg); /* Vertical bar rotates to become horizontal */
}
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if your answers are very long */
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 50px;
    }

    .faq-intro {
        border-right: none; /* Remove vertical divider */
        padding-right: 0;
        text-align: center;
    }
    .faq-contact-link, .faq-subtitle {
        justify-content: center;
    }

    .faq-title {
        font-size: 2.5rem;
    }
}




/* Scoped styles for the Shop Page Section */

.shop-page-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 40px 20px;
}

.shop-page-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.shop-page-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    margin: 0 0 10px 0;
}

.shop-page-title {
    font-size: 4rem;
    font-weight: 400;
    color: #222;
    margin: 0;
    line-height: 1;
}

.shop-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar and main content */
    gap: 40px;
    align-items: flex-start;
}

/* --- Sidebar --- */
.shop-page-sidebar {
    position: sticky;
    top: 20px; /* Adjust this value based on your header's height */
    height: calc(100vh - 40px);
}

.shop-page-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-page-nav-link, .shop-page-accordion-toggle {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
}
.shop-page-nav-link:hover, .shop-page-nav-link.active {
    color: #000;
}

/* --- Accordion --- */
.shop-page-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.shop-page-accordion-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out;
}
.shop-page-accordion.active .shop-page-accordion-icon {
    transform: rotate(-135deg);
}

.shop-page-submenu {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.shop-page-submenu a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #555;
}
.shop-page-submenu a::before {
    content: '•';
    margin-right: 10px;
    color: #ccc;
}

/* --- Products Grid --- */
.shop-page-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-page-product-item a {
    text-decoration: none;
    color: inherit;
}
.shop-page-image-wrapper {
    position: relative;
    background-color: #f5f5f5;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}
.shop-page-product-image {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    transition: opacity 0.4s ease;
}
.shop-page-product-image.secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.shop-page-product-item:hover .shop-page-product-image.secondary {
    opacity: 1;
}
.shop-page-product-item:hover .shop-page-product-image.primary {
    opacity: 0;
}
.shop-page-product-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.shop-page-product-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .shop-page-container {
        grid-template-columns: 1fr; /* Stack sidebar on top of products */
    }
    .shop-page-sidebar {
        position: static; /* Remove sticky behavior */
        height: auto;
        margin-bottom: 40px;
    }
    .shop-page-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shop-page-title {
        font-size: 3rem;
    }
    .shop-page-products {
        grid-template-columns: 1fr;
    }
}




    /* Scoped styles for the Product Detail Section */
    .product-detail-section {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        padding: 40px 20px;
        background-color: #fff;
    }

    .product-detail-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr; /* Default to 1 column for mobile-first */
        gap: 30px;
    }

    .product-detail-breadcrumb {
        grid-column: 1 / -1; /* Span full width */
        margin-bottom: 20px;
        font-size: 0.9rem;
        color: #555;
    }
    .product-detail-breadcrumb a {
        color: #555;
        text-decoration: none;
    }
    .product-detail-breadcrumb span {
        color: #222;
    }

    .product-detail-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-detail-gallery img {
        width: 100%;
        display: block;
        border-radius: 8px; /* Optional: adds rounded corners */
    }

    .product-detail-title {
        font-size: 2.5rem;
        font-weight: 500;
        margin: 0 0 15px 0;
    }
    .product-detail-price {
        font-size: 1.5rem;
        color: #333;
        margin: 0 0 25px 0;
    }
    .product-detail-description {
        line-height: 1.7;
        color: #555;
        margin: 0 0 40px 0;
    }

    .product-detail-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .product-detail-quantity {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .product-detail-quantity label {
        font-weight: 500;
    }
    .product-detail-quantity input {
        width: 60px;
        padding: 8px;
        text-align: center;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
    }
    .product-detail-add-to-cart {
        width: 100%;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 15px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    .product-detail-add-to-cart:hover {
        opacity: 0.85;
    }

    /* Accordion Styling */
    .product-detail-accordion-item {
        border-bottom: 1px solid #e0e0e0;
    }
    .product-detail-accordion-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        padding: 20px 0;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
    }
    .product-detail-accordion-icon {
        width: 10px;
        height: 10px;
        border-right: 2px solid #555;
        border-bottom: 2px solid #555;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }
    .product-detail-accordion-item.active .product-detail-accordion-icon {
        transform: rotate(-135deg); /* Points up */
    }
    .product-detail-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .product-detail-accordion-content p {
        padding-bottom: 20px;
        color: #555;
        line-height: 1.7;
    }

    /* --- DESKTOP STYLES --- */
    @media (min-width: 992px) {
        .product-detail-container {
            grid-template-columns: 1.2fr 1fr; /* Image column is wider */
            gap: 60px;
        }
        .product-detail-breadcrumb {
            grid-row: 1;
            grid-column: 1 / -1; /* Span both columns */
        }
        .product-detail-gallery {
            grid-row: 2;
            grid-column: 1;
        }
        .product-detail-info-wrapper {
            grid-row: 2;
            grid-column: 2;
            /* **MODIFICATION**: Changed from sticky to relative for JS control */
            position: relative; 
        }
    }

/* Scoped styles for the Our News Section */

.our-news-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff;
}

.our-news-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header --- */
.our-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.our-news-title {
    font-size: 3rem;
    font-weight: 500;
    color: #222;
    margin: 0;
}
.our-news-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 1px;
    margin: 10px 0 0 0;
}
.our-news-view-all-btn {
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.our-news-view-all-btn:hover {
    background-color: #f5f5f5;
}

/* --- Grid Layout --- */
.our-news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Featured post is wider */
    gap: 40px;
}

/* --- Common Post Styles --- */
.our-news-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}
.our-news-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
    aspect-ratio: 137 / 104;
    object-fit: cover;
}
.our-news-featured-post a:hover .our-news-image-wrapper img,
.our-news-small-post a:hover .our-news-image-wrapper img {
    transform: scale(1.05);
}
.our-news-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}
.our-news-post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
}
.our-news-post-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.our-news-featured-post a, .our-news-small-post a {
    text-decoration: none;
}

/* --- Featured Post (Left) --- */
.our-news-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.our-news-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.our-news-author-details {
    display: flex;
    flex-direction: column;
}
.our-news-author-name {
    font-weight: 600;
    color: #333;
}
.our-news-author-title {
    font-size: 0.9rem;
    color: #777;
}
.our-news-post-meta {
    margin-left: auto;
    font-size: 0.9rem;
    color: #777;
}

/* --- Small Posts (Right) --- */
.our-news-post-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.our-news-small-post a {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Image and text columns */
    gap: 20px;
    align-items: flex-start;
}
.our-news-small-post .our-news-image-wrapper {
    margin-bottom: 0;
}
.our-news-small-post .our-news-post-title {
    font-size: 1.1rem;
}
.our-news-small-post .our-news-post-excerpt {
    font-size: 0.9rem;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .our-news-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .our-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .our-news-title {
        font-size: 2.5rem;
    }
    .our-news-post-title {
        font-size: 1.3rem;
    }
    .our-news-author-info {
        flex-wrap: wrap; /* Allow author info to wrap */
        gap: 10px;
    }
    .our-news-post-meta {
        margin-left: 0;
        width: 100%;
        margin-top: 5px;
    }
    .our-news-small-post a {
       grid-template-columns: 1fr; /* Stack image and text in small cards */
    }
     .our-news-small-post .our-news-image-wrapper {
        margin-bottom: 20px;
    }
}
/* Scoped styles for the Articles & Resources Section */

.articles-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fff; /* Assuming a white background */
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header --- */
.articles-header {
    margin-bottom: 40px;
    text-align: left;
}
.articles-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}
.articles-title {
    font-size: 3rem;
    font-weight: 500;
    color: #222;
    margin: 0;
}

/* --- Grid Layout --- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 30px;
}

/* --- Card Styles --- */
.articles-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.articles-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}
.articles-image-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10; /* Common aspect ratio for blog thumbnails */
    object-fit: cover;
    transition: transform 0.3s ease;
}
.articles-card:hover .articles-image-wrapper img {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}
.articles-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.articles-content {
    text-align: left;
}
.articles-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
}
.articles-post-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
    .articles-header {
        text-align: center; /* Center header on smaller screens */
    }
    .articles-subtitle {
        justify-content: center;
    }
    .articles-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
        gap: 40px;
    }
    .articles-title {
        font-size: 2.2rem;
    }
}

/* Scoped styles for the Footer2 Section */

.footer2-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #e0e0e0;
    padding: 80px 20px 20px 20px;
    position: relative; /* Crucial for positioning the background text */
    overflow: hidden; /* Prevents background text from creating scrollbars */
}

.footer2-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensures content stays above the background text */
}

/* --- Top Section --- */
.footer2-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.footer2-contact-info a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 15px;
}
.footer2-brand {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 25px 0;
}
.footer2-social-links {
    display: flex;
    gap: 10px;
}
.footer2-social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #222;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.footer2-social-links a:hover {
    background-color: #444;
}
.footer2-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.footer2-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer2-nav-list li a {
    color: #e0e0e0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}
.footer2-nav-list li a:hover {
    color: #fff;
}

/* --- Newsletter Section --- */
.footer2-newsletter {
    margin-bottom: 80px;
}
.footer2-newsletter-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 20px 0;
}
.footer2-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
}
.footer2-newsletter-form input,
.footer2-newsletter-form button {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 15px 25px;
    color: #fff;
    font-size: 1rem;
}
.footer2-newsletter-form input::placeholder {
    color: #888;
}
.footer2-newsletter-form button {
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.footer2-newsletter-form button:hover {
    background-color: #2a2a2a;
}

/* --- Giant Background Text --- */
.footer2-background-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18vw; /* Scales with viewport width */
    font-weight: 700;
    line-height: 1;
    z-index: 1;
    text-align: center;
    user-select: none;
    pointer-events: none;
    /* The gradient text effect */
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Bottom Credits --- */
.footer2-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}
.footer2-bottom a {
    color: #ccc;
    text-decoration: none;
}
.footer2-bottom a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .footer2-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer2-newsletter-form {
        grid-template-columns: 1fr; /* Stack form elements */
    }
    .footer2-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
        padding-top: 60px; /* Add space so it doesn't overlap the giant text */
    }
    .footer2-background-text {
        font-size: 25vw; /* Make it larger relative to the screen on mobile */
        bottom: 120px;
    }
}

/* Scoped styles for the Pet Wellness Section */

.pet-wellness-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #f5f2f0; /* Light beige background */
    overflow: hidden; /* Prevents overflow from decorative elements */
}

.pet-wellness-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* --- Left Column: Content --- */
.pet-wellness-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}
.pet-wellness-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4d4d; /* Red dot color */
    border-radius: 50%;
}
.pet-wellness-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    margin: 0 0 25px 0;
}
.pet-wellness-highlight {
    position: relative;
    display: inline-block;
}
/* The pink underline effect */
.pet-wellness-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 12"><path d="M0,6 C15,0 30,12 50,6 S85,0 100,6" stroke="%23ffc0cb" fill="none" stroke-width="4" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    filter: hue-rotate(179deg);
}
.pet-wellness-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 0 40px 0;
}
.pet-wellness-cta-group {
    display: flex;
    align-items: center;
    gap: 25px;
}
.pet-wellness-button-primary {
    display: inline-flex
;
    align-items: center;
    text-decoration: none;
    background-color: #FF9800;
    border-radius: 50px;
    padding-left: 25px;
}
.pet-wellness-button-text {
    color: #fff;
    font-weight: 500;
}
.pet-wellness-button-icon {
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #FF9800;
    border-radius: 50%;
    margin-left: 15px;
    border: 3px solid #ffffff;
    color: #fadd4e;
}
.pet-wellness-button-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: #ffffff;
}
.pet-wellness-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* --- Right Column: Images --- */
.pet-wellness-image-composition {
    position: relative;
}
.pet-wellness-image-main-wrapper {
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}
.pet-wellness-image-main-wrapper img {
    aspect-ratio: 452/597;
    object-fit: cover;
    width: 100%;
    display: block;
    mix-blend-mode: multiply; /* Helps blend the image with the background color */
    border-radius: 15px;
}
.pet-wellness-image-secondary-wrapper {
position: absolute;
    top: 110px;
    left: -60px;
    width: 200px;
    height: 200px;
    background-color: #ff9800;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pet-wellness-image-secondary-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .pet-wellness-container {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }
    .pet-wellness-subtitle, .pet-wellness-cta-group {
        justify-content: center;
    }
    .pet-wellness-description {
        margin-left: auto;
        margin-right: auto;
    }
    .pet-wellness-title {
        font-size: 2.8rem;
    }
    .pet-wellness-image-composition {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .pet-wellness-title {
        font-size: 2.2rem;
    }
    .pet-wellness-cta-group {
        flex-direction: column;
        gap: 20px;
    }
    .pet-wellness-image-secondary-wrapper {
        width: 150px;
        height: 150px;
        top: -20px;
        left: 20px;
    }
}.latest-product-image-wrapper {
    border-radius: 10px;
}/* --- CART & WISHLIST BADGES & DRAWERS --- */

/* Notification Badges */
.vessa-icon-btn { position: relative; }
.cm-badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #EF4444; /* Red */
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.cm-badge-count.visible { opacity: 1; }

/* Drawer Overlay */
.cm-drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 2000; opacity: 0; pointer-events: none;
    transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.cm-drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* Drawer Container */
.cm-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 400px; max-width: 90%;
    background: #ffffff;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.cm-drawer.open { transform: translateX(0); }

/* Drawer Header */
.cm-drawer-header {
    padding: 20px; border-bottom: 1px solid #E2E8F0;
    display: flex; justify-content: space-between; align-items: center;
}
.cm-drawer-title { font-size: 1.25rem; font-weight: 700; margin: 0; }
.cm-drawer-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #64748B; }

/* Drawer Body (Scrollable) */
.cm-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }

/* Drawer Footer */
.cm-drawer-footer {
    padding: 20px; border-top: 1px solid #E2E8F0; background: #F8FAFC;
}

/* Cart/Wishlist Items */
.cm-cart-item {
    display: flex; gap: 15px; margin-bottom: 20px; position: relative;
}
.cm-cart-img {
    width: 80px; height: 80px; border-radius: 8px; object-fit: cover;
    background: #F1F5F9;
}
.cm-cart-details { flex: 1; }
.cm-cart-title { font-weight: 600; font-size: 0.95rem; margin: 0 0 5px 0; color: #0F172A; }
.cm-cart-price { color: #64748B; font-size: 0.9rem; }
.cm-cart-remove {
    position: absolute; top: 0; right: 0;
    background: none; border: none; color: #EF4444; cursor: pointer;
}
.cm-cart-remove:hover { text-decoration: underline; }

/* Empty State */
.cm-empty-state { text-align: center; padding-top: 50px; color: #94A3B8; }
.cm-empty-state i { font-size: 3rem; margin-bottom: 15px; display: block; }

/* Buttons */
.cm-checkout-btn {
    display: block; width: 100%; padding: 15px;
    background: #111; color: white; text-align: center;
    font-weight: 700; border-radius: 50px; text-decoration: none;
    transition: background 0.3s;
}
.cm-checkout-btn:hover { background: #333; }
.cm-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 15px; }

/* Hide hamburger menu on screens larger than 992px (Laptops/Desktops) */
@media screen and (min-width: 992px) {
    .vessa-hamburger {
        display: none !important;
    }
}