/* ================================
   INDEX PAGE STYLES
   Olana - Main Landing Page
   ================================ */

/* Mobile overflow prevention */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Ensure all elements respect box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Popup/Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid #e0e0e0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modal-buttons button {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    border-radius: 10px;
    border: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.btn-primary:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), 0 3px 6px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.btn-secondary:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

/* Orange accent button (for critical actions like copy ID) */
.btn-orange {
    background: #ff9800;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.5), 0 2px 4px rgba(255, 152, 0, 0.4);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-orange:hover {
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.6), 0 3px 6px rgba(255, 152, 0, 0.5);
    transform: translateY(-2px);
}

.btn-orange:active {
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.4), 0 1px 2px rgba(255, 152, 0, 0.3);
    transform: translateY(0);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== FIXED HEADER ========== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
}

.header-logo {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo .logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-btn {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header-btn-lost {
    background: #ff9800;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.header-btn-lost:hover {
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.header-btn-found {
    background: #ff9800;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.header-btn-found:hover {
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.header-btn-results {
    background: transparent;
    color: #ff9800;
    border: 2px solid #ff9800;
    box-shadow: none;
}

.header-btn-results:hover {
    background: #ff9800;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fixed-header {
        height: auto;
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .header-logo {
        font-size: 20px;
    }

    .header-logo .logo-image {
        height: 40px;
    }

    .header-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .header-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        font-size: 18px;
    }

    .header-logo .logo-image {
        height: 35px;
    }

    .header-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 350px;
    max-height: 450px;
    background-image: url('/static/img/header_image.jpeg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
    text-align: left;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 100px;
    }

    .hero-overlay {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 120px;
        height: calc(100vh - 120px);
        min-height: 300px;
        max-height: 400px;
    }

    .hero-overlay {
        padding: 30px 20px;
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

/* ========== FLOATING STATS CARD ========== */
.floating-stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.floating-stats-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 32px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.floating-stat-item {
    text-align: center;
}

.floating-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 10px;
    line-height: 1;
}

.floating-stat-label {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .floating-stats-wrapper {
        padding: 0 30px;
    }

    .floating-stats-card {
        padding: 28px;
        margin-top: -40px;
    }

    .floating-stats-grid {
        gap: 30px;
    }

    .floating-stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .floating-stats-wrapper {
        padding: 0 20px;
    }

    .floating-stats-card {
        padding: 24px;
        margin-top: -30px;
    }

    .floating-stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .floating-stat-number {
        font-size: 40px;
    }

    .floating-stat-label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .floating-stats-wrapper {
        padding: 0 15px;
    }

    .floating-stats-card {
        padding: 20px;
        margin-top: -25px;
    }

    .floating-stats-grid {
        gap: 20px;
    }

    .floating-stat-number {
        font-size: 36px;
    }

    .floating-stat-label {
        font-size: 14px;
    }
}

/* Form styles within modals */
.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.modal-content textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #667eea;
}

.modal-content input[type="file"] {
    padding: 8px;
}

/* Date input with calendar button */
.date-input-container {
    position: relative;
    width: 100%;
}

.date-input-container input[type="text"] {
    width: 100% !important;
    padding-right: 45px !important;
    box-sizing: border-box;
}

.date-input-container .calendar-btn {
    position: absolute !important;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px !important;
    width: auto !important;
    z-index: 10;
}

.date-input-container .calendar-btn:hover {
    transform: translateY(-50%);
}

.date-input-container .hidden-date-picker {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    pointer-events: none;
    z-index: -1;
    color: transparent;
    background: transparent;
}

.date-input-container .hidden-date-picker.show-picker {
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Tablets portrait (max 768px) */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        max-width: 95%;
    }

    .modal-content h2,
    .modal-content h3 {
        font-size: 1.1em;
    }

    .modal-buttons button {
        font-size: 14px;
        padding: 12px;
    }

    .modal-content textarea {
        min-height: 110px;
    }

    .modal-title-icon {
        height: 24px;
    }
}

/* Mobile devices (max 480px) */
@media (max-width: 480px) {
    /* Stats grid - single column on mobile */
    .modal-content {
        padding: 20px;
        max-width: 95%;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .modal-buttons button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .date-input-container input[type="text"] {
        padding-right: 40px !important;
    }

    /* Textarea adjustments for mobile */
    .modal-content textarea {
        font-size: 14px;
        min-height: 100px;
    }

    .modal-title-icon {
        height: 20px;
    }
}

/* ========== CAROUSEL STYLES ========== */

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-item {
    min-width: 420px;
    flex-shrink: 0;
}

.pet-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: row;
    height: 240px;
}

/* Success effect for found pets - Orange accent */
.carousel-item.pet-success .pet-card {
    border: 3px solid #ff9800;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.success-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff9800;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.4);
}

.pet-image {
    width: 294px;  /* 70% of 420px */
    min-width: 294px;
    height: 240px;
    object-fit: cover;
}

.pet-info {
    padding: 16px 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex: 1;
    width: 126px;  /* 30% of 420px */
}

.pet-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.pet-city,
.pet-species-small,
.pet-date {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.3;
}

/* Carousel navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-52%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 3px 6px rgba(0, 0, 0, 0.5);
}

.carousel-btn:active {
    transform: translateY(-48%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: -15px;
}

.carousel-next {
    right: -15px;
}

/* Mobile carousel responsive */
@media (max-width: 768px) {
    .carousel-item {
        min-width: 320px;
    }

    .pet-card {
        height: 180px;
    }

    .pet-image {
        width: 224px;  /* 70% of 320px */
        min-width: 224px;
        height: 180px;
    }

    .pet-info {
        padding: 12px 12px;
        gap: 3px;
        width: 96px;  /* 30% of 320px */
    }

    .pet-name {
        font-size: 16px;
    }

    .pet-city,
    .pet-species-small,
    .pet-date {
        font-size: 13px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .carousel-prev {
        left: -5px;
    }

    .carousel-next {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        min-width: 280px;
    }

    .pet-card {
        height: 160px;
    }

    .pet-image {
        width: 196px;  /* 70% of 280px */
        min-width: 196px;
        height: 160px;
    }

    .pet-info {
        padding: 10px 10px;
        gap: 3px;
        width: 84px;  /* 30% of 280px */
    }

    .pet-name {
        font-size: 15px;
    }

    .pet-city,
    .pet-species-small,
    .pet-date {
        font-size: 12px;
    }
}

/* ========== DESKTOP OPTIMIZED LAYOUT ========== */
/* Minimalista Moderno - Independent Block Grid System */

/* Main grid container for landing page */
.landing-grid {
    max-width: 1400px;
    width: 100%;
    margin: 40px auto 0 auto;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column by default */
    gap: 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Individual block base styles */
.block {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Ensure images don't overflow */
.block img {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
.block * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Pet Image Blocks (with background images) */
.pet-image-block {
    position: relative;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 4 / 3;  /* Ratio 4:3 para bloques de imagen */
}

/* Responsive titles inside blocks */
.block h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.block .subtitle {
    font-size: 1em;
    margin-bottom: 25px;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.background-image.fade-out {
    opacity: 0;
}

.background-image.fade-in {
    opacity: 1;
}

/* Overlay for text on background images */
.pet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    padding: 30px 25px;
    color: white;
    z-index: 10;
}

.pet-overlay-content h4 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pet-overlay-content p {
    margin: 4px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Success Story Testimonial Enhancement */
.testimonial-text {
    font-style: italic;
    opacity: 0.95;
    margin-top: 8px;
    line-height: 1.6;
}

/* Stats Block (Full Width on Desktop) */
.stats-block {
    /* Will span full width on desktop via grid-column */
}

/* Remove border and shadow from upload-form inside stats-block */
.stats-block .upload-form {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Donation Block */
.donation-block {
    padding: 0 !important;
    overflow: hidden;
}

/* Donation card styling */
.donation-card {
    background-image: url('/static/img/info_system3.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: white !important;
    padding: 40px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid #333 !important;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.donation-card h3 {
    width: 100%;
    margin: 0 0 8px 0;
    font-size: 19px;
    font-weight: 600;
    color: #ff9800 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.donation-card p {
    width: 100%;
    margin: 0 0 6px 0;
    line-height: 1.4;
    font-size: 14px;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.donation-card p:nth-of-type(2) {
    margin: 6px 0 4px 0;
}

.donation-card ul {
    width: 100%;
    margin: 4px 0 8px 0;
    padding-left: 18px;
    line-height: 1.3;
    font-size: 13px;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.donation-card li {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.donation-card strong {
    font-size: 14px;
    color: #ff9800 !important;
}

.donation-card .yape-info-box {
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 152, 0, 0.3) !important;
}

.donation-card .yape-info-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.donation-card .yape-info-box p {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .donation-card {
        padding: 30px !important;
    }
}

/* ========== GRID 2x2 BLOQUES FINALES ========== */
.bottom-blocks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.bottom-blocks-grid .block-wrapper {
    width: 100%;
}

.bottom-blocks-grid .block-wrapper .block {
    width: 100%;
}

/* Desktop Layout (≥ 1024px) */
@media (min-width: 1024px) {
    .landing-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 30px;
        padding: 40px;
    }

    .block {
        padding: 25px;
        border-radius: 20px;
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para desktop */
    }

    .pet-image-block {
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para bloques de imagen en desktop */
    }

    /* Stats block NO debe tener aspect ratio fijo */
    .stats-block {
        aspect-ratio: auto;  /* Permite altura dinámica */
        min-height: auto;    /* Sin altura mínima fija */
    }

    .block h1 {
        font-size: 2em;
        margin-bottom: 6px;
    }

    .block .subtitle {
        font-size: 1em;
        margin-bottom: 15px;
    }

    /* Stats block spans full width */
    .stats-block {
        grid-column: 1 / -1; /* Span from column 1 to last column */
    }

    /* Adjust carousel for wider stats container */
    .stats-block .carousel-item {
        min-width: 400px;
    }

    /* ========== GRID 2x2 BLOQUES FINALES ========== */
    .bottom-blocks-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        width: 100%;
    }

    .bottom-blocks-grid .block {
        aspect-ratio: 4 / 3;
        width: 100%;
    }

    .block-wrapper .block {
        aspect-ratio: 4 / 3;
        width: 100%;
    }
}

/* ================================
   COMMUNITY SECTION STYLES
   Official Colors: Orange #ff9800, Black #000000, Gray #e0e0e0, White #ffffff
   ================================ */

.community-section {
    padding: 40px 0;
    margin-top: 20px;
    width: 100%;
}

/* ================================
   SECTION TITLES - Unified styles
   ================================ */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff9800;
    margin: 15px auto 0;
    border-radius: 2px;
}

.block-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.block-wrapper .block {
    width: 100%;
    flex: 1;
}

.block-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    border-left: 4px solid #ff9800;
    padding-left: 12px;
}

/* Desktop adjustments for community section */
@media (min-width: 1024px) {
    .community-section {
        padding: 50px 0;
        margin-top: 30px;
        grid-column: 1 / -1;  /* Span full width in landing-grid */
        width: 100%;
    }

    .community-section .bottom-blocks-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        width: 100%;
    }

    .community-section .block-wrapper {
        width: 100%;
    }

    .community-section .block-wrapper .block {
        width: 100%;
        min-width: 100%;
    }

    .community-section .block-wrapper .pet-image-block,
    .community-section .block-wrapper .donation-block {
        width: 100%;
        min-width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .block-subtitle {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
}

/* Tablet adjustments (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .community-section {
        padding: 40px 0;
        margin-top: 20px;
        width: 100%;
    }

    .community-section .bottom-blocks-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .block-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .community-section {
        padding: 30px 0;
        margin-top: 15px;
        width: 100%;
    }

    .community-section .bottom-blocks-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .block-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .block-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
}

/* ================================
   UTILITY CLASSES (to replace inline styles)
   ================================ */

/* Stats title - flex layout for icon (inherits from .section-title) */
.stats-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.stats-title::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.stats-title .title-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* Loading text */
.loading-text {
    color: #666;
    margin-top: 10px;
}

/* Modal title */
.modal-title {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.modal-title-orange {
    color: #ff9800;
}

.modal-title-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.modal-title-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* ================================
   CAROUSEL SECTION STYLES
   ================================ */

.carousel-section {
    margin-top: 20px;
}

.carousel-section-spacing {
    margin-top: 40px;
}

.carousel-section-title {
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.stats-timestamp {
    text-align: center;
    margin-bottom: 30px;
    color: #9e9e9e;
    font-size: 12px;
}

.loading-text-gray {
    color: #9e9e9e;
    margin-top: 10px;
}

/* ================================
   ERROR & EMPTY STATE STYLES
   ================================ */

.error-state {
    text-align: center;
    padding: 40px;
    color: #f5576c;
}

.error-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.error-state-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.error-state-message {
    color: #999;
}

.error-state-detail {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.empty-state-title {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Modal content small variant */
.modal-content-small {
    max-width: 400px;
}

/* Loading title in modals */
.loading-title {
    color: #667eea;
    margin: 0;
}

/* Required asterisk */
.required-asterisk {
    color: red;
}

/* Form hints */
.form-hint {
    color: #666;
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
}

/* Pet ID display box */
.pet-id-display {
    background: #000000;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pet-id-display h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.pet-id-display-code {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.pet-id-display code {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000000;
}

/* Pet Info Box (informative message in confirmation modal) */
.pet-info-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ff9800;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}

.pet-info-box p {
    margin: 0;
    color: #5d4e37;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.pet-info-box p strong {
    color: #e65100;
    font-style: normal;
}

@media (max-width: 480px) {
    .pet-info-box {
        padding: 14px 16px;
    }

    .pet-info-box p {
        font-size: 13px;
    }
}

/* Copy ID button styles */
.btn-copy-id {
    background: #ff9800;
    border: none;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.5), 0 2px 4px rgba(255, 152, 0, 0.4);
    transition: all 0.2s ease;
}

.btn-copy-id:hover {
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.6), 0 3px 6px rgba(255, 152, 0, 0.5);
    transform: translateY(-2px);
}

.btn-copy-id:active {
    box-shadow: 0 2px 6px rgba(255, 152, 0, 0.4), 0 1px 2px rgba(255, 152, 0, 0.3);
    transform: translateY(0);
}

/* Donation card footer override */
.donation-card .footer {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.donation-card .footer p {
    font-size: 11px;
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .landing-grid {
        grid-template-columns: 1fr; /* Single column on tablet */
        gap: 25px;
        padding: 30px;
    }

    .block {
        padding: 30px;
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para tablet */
    }

    .pet-image-block {
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para bloques de imagen en tablet */
    }

    /* Stats block NO debe tener aspect ratio fijo */
    .stats-block {
        aspect-ratio: auto;  /* Permite altura dinámica */
        min-height: auto;    /* Sin altura mínima fija */
    }

    .block h1 {
        font-size: 2em;
    }

    .block .subtitle {
        font-size: 1.05em;
        margin-bottom: 30px;
    }

    /* Reducir tamaño de letra en donation-section para tablets */
    .donation-section h3 {
        font-size: 1.2em !important;
    }

    .donation-section p {
        font-size: 0.95em !important;
    }

    .donation-section ul {
        font-size: 0.9em !important;
    }

    .donation-section strong {
        font-size: 0.95em !important;
    }

    /* Reducir tamaño de letra/espaciado en donation-card para tablets */
    .donation-card {
        padding: 14px !important;
    }

    .donation-card h3 {
        font-size: 15px !important;
        line-height: 1.2 !important;
        margin: 0 0 5px 0 !important;
    }

    .donation-card p {
        font-size: 11px !important;
        line-height: 1.25 !important;
        margin: 3px 0 !important;
    }

    .donation-card ul {
        font-size: 10px !important;
        line-height: 1.2 !important;
        margin: 2px 0 5px 0 !important;
    }

    .donation-card .yape-info-box {
        margin-top: 7px !important;
        padding: 9px !important;
    }

    .donation-card .yape-info-box strong {
        font-size: 13px !important;
    }

    .donation-card .yape-info-box p {
        font-size: 10px !important;
    }

    .footer {
        margin-top: 8px !important;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .landing-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
        padding: 15px;
    }

    .block {
        padding: 20px;
        border-radius: 12px;
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para mobile */
    }

    /* Stats block NO debe tener aspect ratio fijo */
    .stats-block {
        aspect-ratio: auto;  /* Permite altura dinámica */
        min-height: auto;    /* Sin altura mínima fija */
    }

    .block h1 {
        font-size: 1.6em;
        margin-bottom: 8px;
    }

    .block .subtitle {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .stats-title {
        flex-direction: column;
        gap: 8px;
    }

    .stats-title .title-icon {
        height: 28px;
    }

    .modal-title-with-icon {
        flex-direction: column;
        gap: 8px;
    }

    .pet-image-block {
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para bloques de imagen en mobile */
    }

    .pet-overlay {
        padding: 20px;
    }

    .pet-overlay-content h4 {
        font-size: 17px;
    }

    .pet-overlay-content p {
        font-size: 14px;
    }

    .donation-card {
        padding: 20px !important;
    }

    /* Adjust footer in mobile */
    .footer {
        margin-top: 20px;
        font-size: 0.85em;
    }

    /* Adjust upload-form in mobile */
    .upload-form {
        padding: 18px !important;
    }
}

/* Very Small Mobile (< 480px) */
@media (max-width: 480px) {
    .landing-grid {
        padding: 10px;
        gap: 12px;
    }

    .block {
        padding: 18px;
        border-radius: 10px;
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para very small mobile */
    }

    /* Stats block NO debe tener aspect ratio fijo */
    .stats-block {
        aspect-ratio: auto;  /* Permite altura dinámica */
        min-height: auto;    /* Sin altura mínima fija */
    }

    .block h1 {
        font-size: 1.4em;
        margin-bottom: 6px;
    }

    .block .subtitle {
        font-size: 0.9em;
        margin-bottom: 18px;
    }

    .stats-title .title-icon {
        height: 24px;
    }

    .pet-image-block {
        aspect-ratio: 4 / 3;  /* Ratio 4:3 para bloques de imagen en very small mobile */
    }

    .pet-overlay {
        padding: 15px;
    }

    .pet-overlay-content h4 {
        font-size: 15px;
    }

    .pet-overlay-content p {
        font-size: 13px;
    }

    .donation-card {
        padding: 12px !important;
    }

    /* Reducir tamaño de letra/espaciado en donation-card para móviles */
    .donation-card h3 {
        font-size: 14px !important;
        margin: 0 0 4px 0 !important;
        line-height: 1.1 !important;
    }

    .donation-card p {
        font-size: 10px !important;
        margin: 2px 0 !important;
        line-height: 1.2 !important;
    }

    .donation-card ul {
        font-size: 9px !important;
        margin: 2px 0 4px 0 !important;
        padding-left: 14px !important;
        line-height: 1.15 !important;
    }

    .donation-card li {
        margin: 1px 0 !important;
    }

    .donation-card strong {
        font-size: 10px !important;
    }

    .donation-card .yape-info-box {
        margin-top: 6px !important;
        padding: 8px !important;
    }

    .donation-card .yape-info-box strong {
        font-size: 12px !important;
        margin-bottom: 3px !important;
    }

    .donation-card .yape-info-box p {
        font-size: 9px !important;
        line-height: 1.15 !important;
        margin: 0 !important;
    }

    /* Adjust footer in very small mobile */
    .footer {
        margin-top: 6px !important;
        font-size: 9px !important;
    }

    .footer p {
        font-size: 9px !important;
        margin: 0 !important;
    }

    /* Adjust upload-form in very small mobile */
    .upload-form {
        padding: 15px !important;
    }

    /* Reducir tamaño de letra en donation-section para móviles */
    .donation-section h3 {
        font-size: 1.1em !important;
    }

    .donation-section p {
        font-size: 0.9em !important;
    }

    .donation-section ul {
        font-size: 0.85em !important;
    }

    .donation-section strong {
        font-size: 0.9em !important;
    }
}

/* ========== FOOTER TRANSITION ========== */

.footer-transition {
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        #f5f5f5 0%,
        #d0d0d0 25%,
        #999999 50%,
        #4d4d4d 75%,
        #000000 100%
    );
    margin-top: 50px;
}

/* ========== FOOTER STYLES ========== */

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 30px 40px 20px;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid #ff9800;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff9800;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-transition {
        height: 60px;
        margin-top: 40px;
    }

    .site-footer {
        padding: 25px 30px 15px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-logo-image {
        height: 50px;
    }

    .footer-social {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 13px;
        padding: 8px 18px;
    }

    .footer-copyright {
        padding-top: 12px;
    }

    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-transition {
        height: 50px;
        margin-top: 30px;
    }

    .site-footer {
        padding: 20px 20px 15px;
    }

    .footer-content {
        gap: 12px;
    }

    .footer-logo-image {
        height: 45px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        font-size: 13px;
        padding: 8px 16px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-copyright {
        padding-top: 10px;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}

/* ================================
   FAQ SECTION STYLES
   Official Colors: Orange #ff9800, Black #000000, Gray #e0e0e0, White #ffffff
   ================================ */

.faq-section {
    background: #f3f3f3;
    padding: 60px 20px;
    margin-top: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* .faq-title inherits from .section-title */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #ff9800;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff9800;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-item[open] .faq-question {
    background: #ff9800;
    color: #ffffff;
}

.faq-item[open] .faq-question::after {
    color: #ffffff;
}

.faq-item[open] {
    border-color: #ff9800;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #333333;
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    margin: 0;
    padding-top: 15px;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
        margin-top: 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 10px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px 12px;
        font-size: 0.9rem;
    }
}

/* ========== PET PROFILE MODAL ========== */

.pet-profile-modal {
    max-width: 480px;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    /* Firefox minimalist scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Webkit (Chrome, Safari, Edge) minimalist scrollbar */
.pet-profile-modal::-webkit-scrollbar {
    width: 4px;
}

.pet-profile-modal::-webkit-scrollbar-track {
    background: transparent;
}

.pet-profile-modal::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.pet-profile-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
}

.pet-profile-image-section {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

.pet-profile-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

.pet-profile-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    overflow-x: auto;
    background: #ffffff;
}

.pet-profile-thumbnails:empty {
    display: none;
}

.pet-profile-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

.pet-profile-thumb.active {
    border-color: #ff9800;
}

.pet-profile-thumb:hover {
    border-color: #000000;
}

.pet-profile-details {
    padding: 16px 20px 0;
}

.pet-profile-name-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.pet-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.pet-profile-status-text {
    font-size: 14px;
    color: #666666;
}

.pet-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #666666;
}

.pet-profile-message-section {
    padding: 16px 20px;
}

.pet-profile-message-label {
    font-size: 13px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 6px;
}

.pet-profile-message {
    background: #f5f5f5;
    border-left: 3px solid #ff9800;
    border-radius: 0 8px 8px 0;
    padding: 12px 14px;
    font-size: 15px;
    color: #333333;
    line-height: 1.55;
    word-break: break-word;
}

.pet-profile-modal .modal-buttons {
    padding: 0 20px 20px;
    margin-top: 0;
}

.btn-download-state:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* "ver más" link in carousel cards */
.pet-ver-mas {
    font-size: 12px;
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.pet-ver-mas:hover {
    color: #000000;
}

/* ========== PET PROFILE MODAL RESPONSIVE ========== */

@media (max-width: 480px) {
    .pet-profile-modal {
        max-width: 100%;
        border-radius: 15px;
    }

    .pet-profile-details {
        padding: 14px 16px 0;
    }

    .pet-profile-name {
        font-size: 18px;
    }

    .pet-profile-status-text {
        font-size: 13px;
    }

    .pet-profile-meta {
        gap: 8px;
        font-size: 13px;
    }

    .pet-profile-message-section {
        padding: 14px 16px;
    }

    .pet-profile-modal .modal-buttons {
        padding: 0 16px 16px;
    }

    .pet-profile-thumb {
        width: 48px;
        height: 48px;
    }
}
