/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Noto Sans Devanagari", sans-serif;
    background: #eef1f5;
    color: #1d2939;
    min-height: 100vh;
}


/* =========================================================
   GLOBAL
========================================================= */

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

.app-wrapper {
    width: 100%;
    min-height: 100vh;
}


/* =========================================================
   PAGE SYSTEM
========================================================= */

.page {
    display: none !important;
    width: 100%;
    min-height: 100vh;
    background: #f5f6f8;
}

.page.active-page {
    display: block !important;
}


/* =========================================================
   MAIN PRODUCT VERIFICATION PAGE
========================================================= */

.verification-page {
    max-width: 520px;
    margin: 0 auto;
    background: #f7f7f8;
    border: 1px solid #cbd0d8;
    min-height: 100vh;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    width: 100%;

    /* Banner aspect ratio */
    aspect-ratio: 2.5 / 1;

    min-height: 0;

    padding: 28px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;

    background-image: url("../images/speedy_publication.jpeg");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    box-sizing: border-box;
}

@media (max-width: 768px) {

    .main-header {
        width: 100%;
        aspect-ratio: 2.5 / 1;

        padding: 20px 18px;

        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

}

@media (max-width: 480px) {

    .main-header {
        width: 100%;
        aspect-ratio: 2.5 / 1;

        padding: 16px 12px;

        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

}

.brand-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.company-logo {
    width: 60px;
    height: 72px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 2px solid #d7d7d7;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-name h1,
.company-name h2 {
    font-family: Georgia, serif;
    color: #f5e57b;
    line-height: 1.05;
}

.company-name h1 {
    font-size: 24px;
    font-weight: 700;
}

.company-name h2 {
    font-size: 24px;
    font-weight: 700;
}

.company-name p {
    font-size: 9px;
    letter-spacing: 1px;
    margin-top: 8px;
    color: #ffffff;
}

.author-section {
    display: flex;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    clip-path: polygon(
        50% 0%,
        61% 12%,
        75% 6%,
        82% 20%,
        97% 20%,
        94% 35%,
        100% 50%,
        88% 60%,
        92% 75%,
        76% 80%,
        70% 96%,
        55% 88%,
        40% 100%,
        30% 85%,
        15% 88%,
        14% 72%,
        0% 62%,
        12% 48%,
        4% 35%,
        20% 30%,
        23% 14%,
        39% 18%
    );
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   VERIFICATION CONTENT
========================================================= */

.verification-content {
    padding: 28px 36px 18px;
}

.section-heading {
    text-align: center;
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: 20px;
    font-weight: 800;
    color: #344054;
}

.section-heading p {
    margin-top: 5px;
    font-size: 11px;
    color: #667085;
}


/* =========================================================
   FORM
========================================================= */

.verification-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #475467;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #cbd2dc;
    background: #f8fafc;
    border-radius: 10px;
    outline: none;
    color: #344054;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.form-group input {
    height: 48px;
    padding: 0 15px;
    font-size: 13px;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
    padding: 18px;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #315ebf;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(49, 94, 191, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #98a2b3;
}


/* =========================================================
   MOBILE INPUT + OTP BUTTON
========================================================= */

.mobile-input-wrapper {
    display: flex;
    align-items: stretch;
}

.mobile-input-wrapper input {
    border-radius: 10px 0 0 10px;
}

.send-otp-btn {
    border: none;
    background: #293d70;
    color: #fff;
    padding: 0 18px;
    min-width: 90px;
    border-radius: 0 10px 10px 0;
    font-size: 11px;
    font-weight: 700;
    transition: 0.25s ease;
}

.send-otp-btn:hover {
    background: #1e315f;
}


/* =========================================================
   OTP SECTION
========================================================= */

.otp-section {
    margin: 14px 0 22px;
}

.otp-section > label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #4d6f68;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.otp-input {
    width: 50px;
    height: 48px;
    border: 1.5px solid #6fb3a5;
    border-radius: 9px;
    background: #eefaf7;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    outline: none;
}

.otp-input:focus {
    border-color: #16866f;
    box-shadow: 0 0 0 3px rgba(22, 134, 111, 0.1);
}

.otp-footer {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #667085;
}

.resend-btn {
    border: none;
    background: transparent;
    color: #344054;
    font-size: 10px;
    font-weight: 700;
}

.otp-timer {
    font-weight: 700;
    color: #667085;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.primary-btn,
.submit-btn {
    width: 100%;
    border: none;
    min-height: 52px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}

.verify-btn {
    background: #14856d;
    color: #fff;
    box-shadow: 0 7px 15px rgba(20, 133, 109, 0.22);
}

.verify-btn:hover {
    background: #0e6f5a;
    transform: translateY(-1px);
}

.verify-btn:active,
.action-btn:active,
.submit-btn:active,
.purchase-btn:active {
    transform: scale(0.98);
}


/* =========================================================
   SECURITY FEATURES
========================================================= */

.security-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    padding-top: 13px;
    border-top: 1px solid #e4e7ec;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    color: #667085;
    white-space: nowrap;
}

.security-item i {
    font-size: 8px;
}

.security-item:nth-child(1) i {
    color: #16a34a;
}

.security-item:nth-child(2) i {
    color: #d4a514;
}

.security-item:nth-child(3) i {
    color: #475467;
}


/* =========================================================
   SMALL FOOTER
========================================================= */

.small-footer {
    text-align: center;
    margin: 0 28px 20px;
    padding: 13px;
    border-top: 1px solid #d9dde3;
    border-bottom: 1px solid #d9dde3;
    color: #667085;
    font-size: 9px;
}


/* =========================================================
   COMMON RESULT PAGE
========================================================= */

.fake-product-page,
.genuine-product-page {
    max-width: 520px;
    margin: 0 auto;
    background: #f8f9fb;
    border: 1px solid #cbd0d8;
    position: relative;
}


/* =========================================================
   STATUS HEADER
========================================================= */

.status-header {
    min-height: 245px;
    color: #fff;
    padding: 28px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fake-header {
    background: linear-gradient(
        180deg,
        #ee2225 0%,
        #d70e24 45%,
        #a91644 100%
    );
}

.fake-header::after {
    content: "!";
    position: absolute;
    right: -15px;
    bottom: -80px;
    font-size: 220px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
}

.genuine-header {
    background: linear-gradient(
        180deg,
        #0d886c 0%,
        #177c6d 55%,
        #277b76 100%
    );
}

.status-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.03),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.status-badge {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 14px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.status-header h1 {
    font-size: 25px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.status-header p {
    font-size: 11px;
    margin-top: 7px;
    opacity: 0.92;
    position: relative;
    z-index: 2;
}


/* =========================================================
   RESULT CONTENT
========================================================= */

.result-content {
    padding: 22px 26px 25px;
}


/* =========================================================
   ALERT CARD
========================================================= */

.alert-card,
.success-card {
    border-radius: 18px;
    padding: 20px 17px;
    margin-bottom: 22px;
}

.alert-card {
    border: 1px solid #f1c9c9;
    background: linear-gradient(
        135deg,
        #fffafa,
        #fff3f3
    );
}

.success-card {
    border: 1px solid #b6dfd3;
    background: linear-gradient(
        135deg,
        #f4fffb,
        #edf9f6
    );
}

.alert-card h3,
.success-card h3 {
    font-size: 12px;
    font-weight: 800;
    color: #344054;
    margin-bottom: 9px;
}

.alert-card h4 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #344054;
}

.alert-card p,
.success-card p {
    font-size: 11px;
    line-height: 1.7;
    color: #667085;
}

.alert-card hr,
.success-card hr {
    border: none;
    border-top: 1px solid #dce3e7;
    margin: 14px 0;
}


/* =========================================================
   COMMON ACTION BUTTON
========================================================= */

.action-btn {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}

.action-btn i {
    margin-right: 8px;
}

.action-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   REPORT BUTTON
========================================================= */

.report-btn {
    background: #eb2225;
    color: #fff;
    box-shadow: 0 6px 13px rgba(235, 34, 37, 0.2);
}


/* =========================================================
   SELLER BUTTON
========================================================= */

.seller-btn {
    background: #104c42;
    color: #fff;
    box-shadow: 0 6px 13px rgba(16, 76, 66, 0.2);
}


/* =========================================================
   SOCIAL SECTION
========================================================= */

.social-section {
    text-align: center;
    margin: 18px 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.social-section h4 {
    font-size: 10px;
    color: #667085;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 48px;
    color: #667085;
    font-size: 9px;
}

.social-link i {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

.whatsapp i {
    background: #17a884;
}

.telegram i {
    background: #229ed9;
}

.facebook i {
    background: #3566b8;
}

.youtube i {
    background: #e62227;
}

.website i {
    background: #5142b7;
}


/* =========================================================
   OTHER BUTTONS
========================================================= */

.feedback-btn {
    background: #172235;
    color: #fff;
}

.app-btn {
    background: linear-gradient(
        90deg,
        #16a57e,
        #148d73
    );
    color: #fff;
}

.ebook-btn {
    background: linear-gradient(
        90deg,
        #5141bd,
        #4d40bd
    );
    color: #fff;
}

.buy-btn {
    background: #ffa000;
    color: #161616;
}


/* =========================================================
   PROTECTION FOOTER
========================================================= */

.protection-footer {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #dce1e7;
    color: #8a94a6;
    font-size: 10px;
}

.protection-footer i {
    color: #16a085;
    margin-right: 4px;
}


/* =========================================================
   SELLER / REPORT FORM PAGE
========================================================= */

.seller-form-page,
.report-form-page {
    background: #f5f6f8;
    padding: 20px 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #f9fafb;
    border-radius: 25px;
    padding: 30px;
    border: 1px solid #d9dee6;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   BADGES
========================================================= */

.verified-badge,
.report-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.verified-badge {
    background: #effaf5;
    border: 1px solid #bde3d6;
    color: #2c6d5d;
}

.report-badge {
    background: #fff5f5;
    border: 1px solid #f1cccc;
    color: #963d3d;
}

.verified-badge i {
    color: #16856d;
}

.report-badge i {
    color: #d62828;
}


/* =========================================================
   FORM HEADING
========================================================= */

.form-container > h1 {
    font-size: 27px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #243447;
}


/* =========================================================
   DETAIL FORM GRID
========================================================= */

.detail-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

.detail-form .form-group {
    margin-bottom: 18px;
}

.detail-form .form-group label {
    font-size: 13px;
    text-transform: none;
    margin-bottom: 8px;
}

.detail-form .form-group input {
    height: 54px;
    background: #fff;
}

.detail-form .full-field {
    grid-column: 1 / -1;
}


/* =========================================================
   UPLOAD AREA
========================================================= */

.upload-area {
    grid-column: 1 / -1;
    border: 2px dashed #c7cfd9;
    border-radius: 15px;
    min-height: 150px;
    padding: 22px;
    text-align: center;
    margin-bottom: 24px;
    background: #f8fafc;
}

.upload-area h3 {
    font-size: 17px;
    color: #344054;
    margin-bottom: 5px;
}

.upload-area p {
    font-size: 12px;
    color: #667085;
    margin-bottom: 14px;
}

.upload-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.upload-option {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #d7dde5;
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: #475467;
    cursor: pointer;
    transition: 0.25s ease;
}

.upload-option:hover {
    background: #f1f5f9;
    border-color: #9ba8b7;
}

.image-preview {
    margin-top: 15px;
}

.image-preview img {
    max-width: 180px;
    max-height: 140px;
    border-radius: 10px;
    border: 1px solid #d9dee6;
}


/* =========================================================
   SUBMIT BUTTONS
========================================================= */

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 8px;
    color: #fff;
    font-size: 15px;
}

.seller-submit-btn {
    background: #315fc2;
    box-shadow: 0 8px 16px rgba(49, 95, 194, 0.22);
}

.seller-submit-btn:hover {
    background: #244da4;
}

.report-submit-btn {
    background: #e62525;
    box-shadow: 0 8px 16px rgba(230, 37, 37, 0.2);
}

.report-submit-btn:hover {
    background: #c91b1b;
}


/* =========================================================
   FEEDBACK PAGE
========================================================= */

.feedback-page {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    background: #f6f7f9;
}

.feedback-page.active-page {
    display: flex;
}

.feedback-container {
    width: 100%;
    max-width: 650px;
    background: #fafbfc;
    border-radius: 25px;
    padding: 45px 35px;
    border: 1px solid #dce1e8;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.feedback-heading {
    text-align: center;
}

.feedback-heading h1 {
    font-size: 32px;
    color: #1d2b3d;
}

.feedback-heading p {
    margin-top: 8px;
    color: #667085;
    font-size: 16px;
}


/* =========================================================
   STAR RATING
========================================================= */

.rating-section {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 32px 0;
}

.star-btn {
    border: none;
    background: transparent;
    color: #fdb515;
    font-size: 45px;
    transition: transform 0.2s ease;
}

.star-btn:hover {
    transform: scale(1.12);
}


/* =========================================================
   FEEDBACK FORM
========================================================= */

.feedback-page .form-group label {
    font-size: 14px;
    margin-bottom: 10px;
}

.feedback-page .form-group label i {
    color: #315fc2;
    margin-right: 6px;
}

.submit-feedback-btn {
    width: 100%;
    height: 65px;
    border: none;
    border-radius: 15px;
    background: #315fc2;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 8px 16px rgba(49, 95, 194, 0.25);
    transition: 0.25s ease;
}

.submit-feedback-btn:hover {
    background: #254da5;
    transform: translateY(-2px);
}

.feedback-thanks {
    text-align: center;
    margin-top: 28px;
    color: #667085;
    font-size: 14px;
}


/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-page {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
}

.product-page.active-page {
    display: flex;
}

.product-container {
    width: 100%;
    max-width: 620px;
    background: #fafafa;
    border-radius: 25px;
    padding: 28px;
    border: 1px solid #dce1e8;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image-wrapper {
    width: 100%;
    height: 330px;
    border-radius: 16px;
    background: #f1f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-category {
    font-size: 12px;
    font-weight: 800;
    color: #667085;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.product-title {
    font-size: 25px;
    line-height: 1.35;
    color: #27364a;
    margin-bottom: 18px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
}

.sale-price {
    color: #16856d;
    font-size: 30px;
    font-weight: 800;
}

.original-price {
    color: #98a2b3;
    font-size: 18px;
    text-decoration: line-through;
}

.discount-badge {
    color: #267463;
    background: #ecf9f5;
    border: 1px solid #bde3d6;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   PURCHASE BUTTONS
========================================================= */

.buy-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.purchase-btn {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.25s ease;
}

.purchase-btn i {
    margin-right: 9px;
}

.purchase-btn:hover {
    transform: translateY(-2px);
}

.official-buy {
    background: #315fc2;
    color: #fff;
}

.amazon-buy {
    background: #ff9900;
    color: #1d1d1d;
}

.flipkart-buy {
    background: #2d64c6;
    color: #fff;
}


/* =========================================================
   DESKTOP RESPONSIVE
========================================================= */

@media (min-width: 769px) {

    body {
        padding: 30px;
    }

    .verification-page,
    .fake-product-page,
    .genuine-product-page {
        max-width: 1100px;
        border-radius: 22px;
        overflow: hidden;
        min-height: auto;
    }


    /* Verification Desktop */

    .main-header {
        min-height: 170px;
        padding: 25px 60px;
    }

    .verification-content {
        max-width: 750px;
        margin: 0 auto;
        padding: 40px 40px 25px;
    }

    .verification-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
    }

    .verification-form .form-group {
        margin-bottom: 18px;
    }

    .verification-form .mobile-group,
    .verification-form .otp-section,
    .verification-form .verify-btn {
        grid-column: 1 / -1;
    }

    .security-features {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }


    /* Result Desktop */

.fake-product-page.active-page,
.genuine-product-page.active-page {
    display: grid !important;
    grid-template-columns: 40% 60%;
    min-height: 650px;
}

    .status-header {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .result-content {
        padding: 40px;
    }

    .protection-footer {
        grid-column: 1 / -1;
    }


    /* Seller Form */

    .seller-form-page,
    .report-form-page {
        padding: 45px;
    }

    .form-container {
        padding: 45px;
    }


    /* Product */

    .product-container {
        max-width: 950px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .detail-form {
        grid-template-columns: 1fr;
    }

    .detail-form .full-field {
        grid-column: auto;
    }

    .form-container {
        border-radius: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    body {
        background: #f4f5f7;
    }

    /* Verification */

    .main-header {
        min-height: 135px;
        padding: 20px 26px;
    }

    .company-logo {
        width: 48px;
        height: 60px;
    }

    .company-name h1,
    .company-name h2 {
        font-size: 19px;
    }

    .company-name p {
        font-size: 7px;
    }

    .author-image {
        width: 58px;
        height: 58px;
    }

    .verification-content {
        padding: 22px 24px 16px;
    }

    .section-heading h2 {
        font-size: 17px;
    }

    .section-heading p {
        font-size: 9px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 9px;
    }

    .form-group input {
        height: 43px;
        font-size: 11px;
    }

    .send-otp-btn {
        min-width: 72px;
        padding: 0 10px;
        font-size: 9px;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-input {
        width: 42px;
        height: 42px;
    }

    .primary-btn {
        min-height: 46px;
        font-size: 11px;
    }

    .security-item {
        font-size: 7px;
    }


    /* Status Header */

    .status-header {
        min-height: 220px;
        padding: 25px 18px;
    }

    .status-header h1 {
        font-size: 21px;
    }

    .status-header p {
        font-size: 9px;
    }

    .status-icon {
        width: 62px;
        height: 62px;
        font-size: 28px;
    }

    .status-badge {
        font-size: 8px;
    }

    .result-content {
        padding: 20px 22px;
    }

    .alert-card,
    .success-card {
        padding: 17px 13px;
        border-radius: 15px;
    }

    .alert-card h3,
    .success-card h3 {
        font-size: 10px;
    }

    .alert-card p,
    .success-card p {
        font-size: 10px;
    }

    .action-btn {
        min-height: 47px;
        font-size: 11px;
        margin-bottom: 10px;
    }


    /* Social */

    .social-icons {
        gap: 10px;
    }

    .social-link i {
        width: 39px;
        height: 39px;
        font-size: 18px;
        border-radius: 11px;
    }

    .social-link {
        font-size: 8px;
        min-width: 42px;
    }


    /* Forms */

    .seller-form-page,
    .report-form-page {
        padding: 0;
    }

    .form-container {
        padding: 25px;
        border-radius: 20px;
        min-height: 100vh;
    }

    .form-container > h1 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .verified-badge,
    .report-badge {
        font-size: 10px;
        padding: 7px 12px;
    }

    .upload-area {
        min-height: 130px;
        padding: 18px 10px;
        margin-bottom: 20px;
    }

    .upload-area h3 {
        font-size: 15px;
    }

    .upload-area p {
        font-size: 10px;
    }

    .upload-option {
        font-size: 12px;
        padding: 8px 13px;
    }

    .detail-form .form-group {
        margin-bottom: 15px;
    }

    .detail-form .form-group label {
        font-size: 12px;
    }

    .detail-form .form-group input {
        height: 48px;
    }

    .submit-btn {
        min-height: 50px;
        font-size: 13px;
    }


    /* Feedback */

    .feedback-page {
        padding: 0;
    }

    .feedback-container {
        min-height: 100vh;
        border-radius: 20px;
        padding: 55px 35px;
    }

    .feedback-heading h1 {
        font-size: 28px;
    }

    .feedback-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .rating-section {
        gap: 8px;
        margin: 28px 0;
    }

    .star-btn {
        font-size: 37px;
    }

    .feedback-page .form-group textarea {
        min-height: 180px;
    }

    .submit-feedback-btn {
        height: 58px;
        font-size: 16px;
    }


    /* Product */

    .product-page {
        padding: 0;
    }

    .product-container {
        min-height: 100vh;
        border-radius: 20px;
        padding: 28px;
    }

    .product-image-wrapper {
        height: 290px;
    }

    .product-title {
        font-size: 21px;
    }

    .sale-price {
        font-size: 27px;
    }

    .purchase-btn {
        min-height: 52px;
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .main-header {
        padding: 18px;
    }

    .verification-content {
        padding: 20px 18px;
    }

    .otp-inputs {
        gap: 5px;
    }

    .otp-input {
        width: 38px;
        height: 40px;
    }

    .security-features {
        gap: 5px;
    }

    .security-item {
        font-size: 6px;
    }

    .result-content {
        padding: 18px 16px;
    }

    .social-icons {
        gap: 6px;
    }

    .form-container {
        padding: 20px;
    }

}