img {
    height: auto;
    max-width: 100%;
}

.page-title {
    margin: 0 0 55px 0;
}

.product-registration-page .breadcrumb-nav .home-icon {
    position: relative;  top: -0px;  
}

.hime-app-content {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    column-gap: 100px;
    padding-left: 100px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
}

.phone-images {
    --space: 150px;
    position: relative;
    display: flex;
    gap: 20px;
}

.phone-images img:first-child {
    margin-top: var(--space);
}

.phone-images img:nth-child(2) {
    margin-bottom: var(--space);
}

.phone-container {
    position: relative;
}

.phone-left {
    z-index: 2;
    align-self: flex-end;
}

.phone-right {
    z-index: 1;
    align-self: flex-start;
}

.app-info h2 {
    line-height: 1;
    margin: 0 0 10px 0;
}

.app-description {
    margin: 0 0 30px 0;
}

.app-download-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Warranty Information Section */
.warranty-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.warranty-title {
    font-family: 'HisenseSansAlfabet', Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-align: center;
}

.warranty-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 875px;
    margin: 0 auto 50px auto;
}

/* Warranty Tabs */
.warranty-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.warranty-tab {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 207px;
}

.warranty-tab:hover {
    color: #333;
}

.warranty-tab.active {
    color: #1a1a1a;
    border-bottom-color: var(--hisense-primary, #00AAA6);
}

/* Warranty Cards Grid */
.warranty-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.warranty-card {
    padding: 60px 30px 56px 30px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.warranty-label {
    font-size: 15px;
    margin-bottom: 25px;
    color: var(--hisense-primary, #00AAA6);
    display: block;
}

.warranty-card-title {
    font-family: 'HisenseSansAlfabet', Arial, sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.4;
    min-height: 46px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #333;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.download-btn:hover {
    background-color: var(--hisense-primary, #00AAA6);
    transform: translateY(-1px);
}

.download-icon {
    font-size: 16px;
    font-weight: bold;
}

/* No Warranties Found */
.no-warranties-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

.no-warranties-found p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.warranty-cards-grid .secondary-button {
    column-gap: 10px;
}

.secondary-button:hover {
    background-color: var(--hisense-primary, #00AAA6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.secondary-button:active {
    transform: scale(0.95);
}

.secondary-button .download-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Warranty Terms */
.warranty-terms {
    text-align: center;
    margin-top: 40px;
}

.warranty-terms p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hime-app-content {
        gap: 50px;
    }

    .warranty-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .warranty-card {
        padding: 40px 30px 40px 30px;
    }
}

@media (max-width: 860px) {
    .page-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hime-app-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .phone-images {
        min-height: 300px;
    }

    .phone-mockup {
        width: 150px;
        height: 300px;
    }

    .app-title {
        font-size: 28px;
    }

    .warranty-title {
        font-size: 28px;
    }

    .warranty-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .warranty-tab {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 180px;
    }

    .warranty-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .warranty-info-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .warranty-card {
        padding: 25px;
    }

    .phone-images {
        --space: 50px;
    }

    .phone-images img {
        max-width: 150px;
    }

    .hime-app-content {
        padding: 0 30px 30px 30px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .hime-app-section {
        padding: 40px 0;
    }

    .phone-left {
        margin-right: -30px;
    }

    .phone-right {
        margin-top: 20px;
    }

    .phone-mockup {
        width: 120px;
        height: 240px;
    }

    .app-title {
        font-size: 24px;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .download-badge {
        height: 40px;
    }

    .warranty-title {
        font-size: 24px;
    }

    .warranty-tab {
        padding: 10px 15px;
        font-size: 13px;
    }

    .warranty-card-title {
        font-size: 15px;
        min-height: auto;
    }

    .warranty-cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}