/* Mobile Breakpoint - 768px and below */
@media screen and (max-width: 768px) {
    
    body {
        padding-top: 40px; /* Reduced top padding for mobile */
    }

    .tci-wrapper {
        padding: 0 20px;
    }

    /* 1. Header Adjustments */
    .tci-title {
        font-size: 28px; /* Slightly smaller to prevent text wrapping */
        line-height: 1.2;
    }

    .tci-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* 2. Dropdown Adjustments */
    .tci-dropdown-container {
        max-width: 100%; /* Take full width on mobile */
    }

    .tci-select-box {
        padding: 10px 15px; /* Tighter padding */
        max-height: 45px;
    }

    /* 3. Detail Card - Vertical Stack */
    .tci-card-info {
        flex-direction: column; /* Stack button below text */
        align-items: flex-start; /* Align text to the right (RTL) */
        padding: 20px;
        gap: 20px; /* Space between text group and button */
    }

    /* Primary Button takes full width or remains left-aligned */
    .tci-btn-catalog {
        width: 100%; /* Standard mobile pattern for better thumb reach */
        max-width: 140px; /* Or keep it fixed as per JPG */
        padding: 0px 0;
        text-align: center;
        height: 42px;
    }

    .tci-text-group {
        width: 100%;
        text-align: right;
    }

    .tci-model-name {
        font-size: 20px;
        margin: 4px 0;
    }

    /* 4. Visual Adjustments */
    .tci-content-box {
        min-height: auto;
    }

    .tci-card-visual {
        padding: 30px 10px;
    }

    .tci-car-image {
        max-width: 100%; /* Responsive scaling */
        height: auto;
    }
}

/* Small Mobile Breakpoint - 480px and below */
@media screen and (max-width: 480px) {
    .tci-title {
        font-size: 32px;
    }
    
    .tci-card-info {
        padding: 15px;
        flex-flow: row;
        align-items: center;
    }
}