* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Nunito', Arial, sans-serif;
    color: #1A1A1A;
}

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

/* Promo Banner */
.promo-banner {
    background-color: #a30303;
    padding: 12px 0;
    color: white;
    text-align: center;
    font-weight: 700;
    position: relative;
    animation: slideDown 0.5s ease;
}

.promo-banner p {
    font-size: 1.1rem;
}

.close-promo {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.close-promo:hover {
    opacity: 1;
}

/* Header Styles */
header {
    background-color: #f29f05;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 75px;
    height: 60px;
    animation: pulse 3s infinite ease-in-out;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
}

.logo span {
    color: #A60303;
}

.nav-quiz img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 160px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-quiz img:hover {
    transform: scale(1.05) translateY(-3px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Pet Selector */
.pet-selector {
    padding: 30px 0;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none; 
}

.pet-selector h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #6E5842;
    margin-bottom: 25px;
}

.pet-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pet-option {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
}

.pet-option:hover {
    transform: translateY(-5px);
}

.pet-option.active {
    position: relative;
}

.pet-option.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 30px;
    height: 3px;
    background-color: #A60303;
    transform: translateX(-50%);
    border-radius: 10px;
}

.pet-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    position: relative;
}

.pet-icon img, .pet-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #287C7B;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    transform: rotate(10deg);
    z-index: 5;
}

.pet-option h3 {
    font-size: 1.2rem;
    color: #6E5842;
}

/* Hero Section */
.hero {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #A60303;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #6E5842;
}

.cta-button img {
    width: 280px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.cta-button img:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 300px;
}

.mascot {
    width: 220px;
    height: 170px;
    position: relative;
    z-index: 2;
    animation: bounce 3s infinite ease-in-out;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating {
    position: absolute;
    width: 30px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.paw1 {
    top: 20%;
    left: 20%;
    animation: float 4s infinite ease-in-out;
}

.bone1 {
    top: 50%;
    right: 20%;
    animation: float 6s infinite ease-in-out;
}

.heart1 {
    bottom: 30%;
    left: 30%;
    animation: float 5s infinite ease-in-out;
}

.paw2 {
    top: 10%;
    right: 30%;
    animation: float 7s infinite ease-in-out;
}

.bone2 {
    bottom: 20%;
    right: 40%;
    animation: float 8s infinite ease-in-out;
}

/* Stamp Section */
.stamp-section {
    padding: 60px 0;
    background-color: #FFF2DF;
    position: relative;
    text-align: center;
    display:none;
}

.stamp-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.stamp-img {
    width: 180px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.stamp-text {
    max-width: 400px;
    text-align: left;
}

.stamp-text h3 {
    font-size: 1.8rem;
    color: #287C7B;
    margin-bottom: 15px;
}

.stamp-text p {
    font-size: 1.1rem;
    color: #6E5842;
}

.stamp-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stamp-icon {
    width: 40px;
    opacity: 0.8;
    animation: pulse 3s infinite ease-in-out;
}

/* Mascot Gallery */
.mascot-gallery {
    padding: 70px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.mascot-gallery::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('tiled_back2.png');
    background-size: 300px;
    opacity: 0.15;
    z-index: 0;
}

.mascot-gallery .container {
    position: relative;
    z-index: 1;
}

.mascot-gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: #A60303;
    margin-bottom: 20px;
    position: relative;
}

.mascot-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #A60303;
    border-radius: 3px;
}

.mascot-gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.mascot-gallery-intro p {
    font-size: 1.1rem;
    color: #6E5842;
    margin-bottom: 15px;
}

.mascots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.mascot-card {
    background-color: white; 
    border-radius: 20px;
    text-align: center;
    padding: 30px 30px 20px 30px;
    width: 280px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.mascot-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 7px;
    top: 0;
    left: 0;
    background-color: #A60303;
    border-radius: 20px 20px 0 0;
}

.mascot-card:nth-child(2)::before {
    background-color: #A60303;
}

.mascot-card:nth-child(3)::before {
    background-color: #A60303;
}

.mascot-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.mascot-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mascot-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.mascot-card:hover .mascot-image img {
    transform: scale(1.1);
}

.mascot-speech-bubble {
    position: absolute;
    top: -20px;
    right: -10px;
    background-color: white;
    border-radius: 15px;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #A60303;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: all 0.3s ease 0.1s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mascot-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 15px;
    height: 15px;
    background-color: white;
    transform: rotate(45deg);
    z-index: -1;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.mascot-card:hover .mascot-speech-bubble {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.mascot-card p {
    font-size: 1.1rem;
    color: #6E5842;
    font-weight: 700;
    margin-bottom: 15px;
}

.mascot-card .mascot-description {
    font-size: 0.95rem;
    color: #6E5842;
    font-weight: normal;
    min-height: 60px;
}

.mascot-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.rating-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mascot-card:hover .rating-icon {
    transform: scale(1.2);
    opacity: 1;
}

/* Products Section */
.products-section {
    padding: 70px 0;
    background-color: white;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h2 {
    font-size: 2.2rem;
    color: #A60303;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 1.1rem;
    color: #6E5842;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #f29f05;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.product-badge {
    position: absolute;
    top: 0px; 
    right: 0; 
    background-color: #A60303;
    color: white;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 0 20px 0 20px; 
    font-size: 0.9rem;
    transform: none; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin:10px;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    margin: -30px -30px 20px -30px;
    height: 200px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.product-card img.product-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border-radius: 0; 
    filter: none; 
    transition: none; 
}

.product-icons {
    position: absolute;
    bottom: 15px; 
    left: 15px; 
    display: flex; 
    gap: 5px; 
}

.product-icon {
    width: 30px;
    animation: float 3s infinite ease-in-out;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #287C7B;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 1rem;
    color: #6E5842;
    margin-bottom: 25px;
    min-height: 50px;
}

.product-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #A60303;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: auto;
    flex-grow: 1;
    align-items: flex-start;
}

.price s {
    font-size: 1.1rem;
    color: #6E5842;
    opacity: 0.8;
    margin-right: 5px;
    text-decoration: line-through;
}

.product-actions .btn-buy-css {
    background-color: #A60303; /* Dark-red */
    color: white;
    padding: 10px 20px;
    border-radius: 50px; /* Rounded-rectangular */
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Remove underline for links */
    display: inline-block; /* Allow padding and width */
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem; /* Adjust font size if needed */
    white-space: nowrap; /* Prevent text wrapping */
   box-shadow: 2px 2px 0px 2px #8c1f1f5c;
}

.product-actions .btn-buy-css:hover {
    background-color: #8D0202; /* Darker red on hover */
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.see-more {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

.see-more-button {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    width: 200px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.see-more-button:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.floating-paws {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-paw {
    position: absolute;
    width: 25px;
    opacity: 0.7;
}

.floating-paw.left {
    top: 50%;
    left: 25%;
    transform: translateY(-50%) rotate(-20deg);
    animation: float 4s infinite ease-in-out;
}

.floating-paw.right {
    top: 50%;
    right: 25%;
    transform: translateY(-50%) rotate(20deg);
    animation: float 5s infinite ease-in-out;
}

/* Search Section */
.search-section {
    padding: 60px 0;
    background-color: #a60303;
}

.search-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.search-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    outline: none;
}

.search-button {
    background-color: #f29f05;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: white;
}

.search-button img {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.tag {
    background-color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6E5842;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tag:hover {
    background-color: #A60303;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    padding: 70px 0 30px;
    color: #1A1A1A;
    background-color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-logo span {
    color: #A60303;
}

.footer-logo p {
    color: #6E5842;
    font-size: 1rem;
    line-height: 1.5;
}

/* Consolidated h4 styles */
.footer-links h4, 
.footer-newsletter h4, 
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #A60303;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, 
.footer-newsletter h4::after, 
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #A60303;
    border-radius: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #a60303 !important; /* Added color for the social icon container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #A60303;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background-color: #A60303;
    transform: translateY(-5px);
}

.social-icon:hover svg {
    fill: white;
}

.social-icon i {
    font-size: 18px;
    color: #A60303; /* Kept for Font Awesome icons */
}

/* Specific CSS for Cloudflare logo */
.cloudflare-logo {
    width: 100px;
    height: 40px;
    transition: all 0.3s ease;
}

.cloudflare-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 150, 136, 0.7));
}

.security-icons, .payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 44px;
    height: 44px;
    background-color: #FFF2DF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.payment-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.payment-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.security-icon {
    width: auto;
    height: auto;
    background-color: transparent; 
    border-radius: 0; 
    box-shadow: none; 
    transition: none; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #6E5842;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #A60303;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #287C7B;
    text-decoration: underline;
}

.footer-icons {
    display: flex;
    gap: 15px;
}

.footer-icons img {
    width: 25px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-icons img:hover {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Subscription specific styles */
.subscription-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #287C7B;
    color: white;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        gap: 40px;
    }

    /* Consolidated h4::after centering */
    .footer-links h4::after, 
    .footer-newsletter h4::after, 
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .security-icons, .payment-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Ensure footer-text-group still stacks within the column */
    .footer-text-group {
        text-align: center; 
    }

    /* New rules for footer-contact and footer-newsletter for mobile */
    .footer-contact, .footer-newsletter {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        display: none;
    }

    .nav-quiz img {
        width: 200px;
    }

    .pet-options {
        gap: 15px;
    }

    .pet-icon {
        width: 80px;
        height: 80px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .cta-button img {
        width: 320px;
    }

    .stamp-img {
        width: 140px;
    }

    .stamp-text h3 {
        font-size: 1.5rem;
    }

    .mascots {
        flex-direction: column;
        align-items: center;
    }

    .mascot-card {
        width: 90%;
        max-width: 280px;
    }

    .product-image {
        width: 130px;
    }

    .result-stamp {
        width: 60px;
        top: -15px;
        right: -15px;
    }

    .product-actions .buy-button {
        width: 140px;
    }

    .security-section, .payment-section {
        width: 100%;
        text-align: center;
    }

    .security-icons, .payment-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    /* Hide default hero on mobile */
    .hero {
        display: none;
    }
    /* Show mobile hero on mobile */
    .hero-mobile {
        display: block !important;
        text-align: center;
        position: relative; 
    }
    .hero-mobile img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .hero-buttons-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }
    .hero-buttons {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        left: 22px;
        position: absolute;
        top: -75px;
    }

    .cta-button {
        display: block;
        width: 200px;
        text-align: center;
        font-size: 18px;
        padding: 10px 15px;
        border-radius: 40px;
        text-decoration: none;
        font-family: 'Nunito', Arial, sans-serif;
        font-weight: bold;
        box-shadow: #fecb7e 0px 2px 0px 0px; 
    }
    .quiz-button {
        background: #a60303;
        color: white;
        box-shadow: none;
    }
    .how-works-button {
        background: #ffffff;
        color: #3c251a;
        box-shadow: none;
        border: 2px solid #3c251a;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .stamp-content {
        flex-direction: column;
        text-align: center;
    }
    .stamp-text {
        text-align: center;
    }
    .mascots {
        gap: 20px;
    }
    .mascot-card {
        width: calc(50% - 20px);
        min-width: 160px;
    }
    .mascot-image {
        width: 120px;
        height: 120px;
    }
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        display: none;
    }

    .nav-quiz img {
        width: 200px;
    }

    .pet-options {
        gap: 15px;
    }

    .pet-icon {
        width: 80px;
        height: 80px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .cta-button img {
        width: 320px;
    }

    .stamp-img {
        width: 140px;
    }

    .stamp-text h3 {
        font-size: 1.5rem;
    }

    .mascots {
        flex-direction: column;
        align-items: center;
    }

    .mascot-card {
        width: 90%;
        max-width: 280px;
    }

    .product-image {
        width: 130px;
    }

    .result-stamp {
        width: 60px;
        top: -15px;
        right: -15px;
    }

    .product-actions .buy-button {
        width: 140px;
    }

    .security-section, .payment-section {
        width: 100%;
        text-align: center;
    }

    .security-icons, .payment-icons {
        justify-content: center;
    }
}