/* POST OFFICE MIS VS BANK FD CALCULATOR STYLESHEET (Final) */

/* --- Core Variables & Base Styles --- */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --card-bg-color: #ffffff;
    --text-color: #212529;
    --label-color: #495057;
    --body-bg-color: #f4f7f6;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* --- Page Header --- */
.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--label-color);
    max-width: 700px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--label-color);
    margin-top: 0.5rem;
    font-style: italic;
}

/* --- Main Layout --- */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: flex-start;
}
.calculator-column {
    position: sticky;
    top: 2rem;
}
.content-column {
    min-width: 0;
}

/* --- Calculator Form Styles --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.radio-label {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.radio-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
    font-weight: 600;
}
.radio-label input[type="radio"]:checked + .radio-custom {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}
.radio-label input[type="radio"]:focus + .radio-custom {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.input-wrapper .icon {
    padding: 0 12px;
    background-color: var(--light-gray);
    align-self: stretch;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color);
    color: var(--label-color);
}

.input-wrapper input[type="number"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px;
    width: 100%;
    background-color: var(--card-bg-color);
    color: var(--text-color);
    font-size: 1rem;
}

.slider-group {
    margin-top: 0.75rem;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.static-value {
    background-color: var(--light-gray);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--label-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}
.btn-secondary {
    background-color: var(--light-gray);
    color: var(--text-color);
    border-color: var(--border-color);
}
.btn-secondary:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

/* --- Results Section --- */
.results-card h2, .info-section h2 {
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}
.info-section h2 .icon, .results-card h2 .icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.edit-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-edit {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.btn-edit:hover {
    background-color: var(--light-gray);
}

.results-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--label-color);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background-color: var(--light-gray);
    padding: 1.25rem;
    border-radius: 8px;
}
.result-item p {
    margin: 0 0 0.5rem 0;
    color: var(--label-color);
    font-weight: 600;
}
.result-item .value {
    font-weight: 700;
    font-size: 1.5rem;
    word-break: break-all;
    color: var(--primary-color);
}

.chart-container {
    max-width: 350px;
    min-height: 350px; 
    margin: 0 auto;
    position: relative;
}

/* --- Info & FAQ Sections --- */
.feature-list {
    list-style: none;
    padding-left: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.feature-list .feature-icon {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.calculation-step {
    margin-bottom: 1.5rem;
}
.calculation-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.formula-box {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    font-family: monospace;
}

.faq-item {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-item[open] {
    background-color: #fff;
}
.faq-item summary {
    font-weight: 600;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary:hover {
    background-color: var(--light-gray);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease-in-out;
    color: var(--primary-color);
}
.faq-item[open] > summary {
    border-bottom: 1px solid var(--border-color);
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-item div {
    padding: 1.25rem;
    line-height: 1.8;
}

/* --- Language Switcher --- */
.section-lang-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.section-lang-switcher .lang-btn {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    color: var(--label-color);
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.section-lang-switcher .lang-btn:first-child { border-top-left-radius: 6px; border-bottom-left-radius: 6px; }
.section-lang-switcher .lang-btn:last-child { border-top-right-radius: 6px; border-bottom-right-radius: 6px; border-left: none; }
.section-lang-switcher .lang-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.card > .section-lang-switcher { margin-top: -0.5rem; }

/* --- Full Width Content Section Styles --- */
.full-width-container {
    grid-column: 1 / -1;
}
.card.info-card-full {
    width: 100%;
}
.table-container { overflow-x: auto; border: 1px solid var(--border-color); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--border-color); }
th { background-color: #f8f9fa; font-weight: 600; color: var(--primary-color); }
tr:last-child td { border-bottom: none; }
.scenario-box { background-color: #e6f7ff; border-left: 5px solid var(--primary-color); padding: 1.5rem; border-radius: 8px; margin-top: 1rem; }
.scenario-box h3 { color: #0056b3; margin-top: 0; }
.scenario-box ul { list-style-position: inside; padding-left: 0; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.tip-card { background-color: #f8f9fa; padding: 1.5rem; border-radius: 12px; }
.tip-card h4 { color: var(--primary-color); margin-top: 0; margin-bottom: 0.5rem; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .main-container { grid-template-columns: 1fr; }
    .calculator-column { position: static; }
}
@media (max-width: 768px) {
    .container { padding-left: 0; padding-right: 0; }
    .card {
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        padding: 1.5rem 1rem;
    }
    .results-card { padding-left: 1rem; padding-right: 1rem; }
    .result-item .value { font-size: 1.2rem; }
    .page-header h1 { font-size: 2rem; }
}

/* ========== ADVANCED CALCULATOR EXTRA FEATURES ========== */

/* --- Premium Form Section --- */
.form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid #e2eaff;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 4px 0 0 4px;
}
.form-section:hover {
    border-color: #c5d5ff;
    box-shadow: 0 6px 20px rgba(102,126,234,0.12);
    transform: translateY(-1px);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3730a3;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #e2eaff;
}
.form-section-title i {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* --- Colorful Input Icons per field type --- */
/* Investment Amount → green */
.form-group.field-investment .input-wrapper .icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border-right-color: #6ee7b7;
    font-size: 1.05rem;
}
.form-group.field-investment .input-wrapper {
    border-color: #6ee7b7;
}
.form-group.field-investment .input-wrapper:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.form-group.field-investment .slider-label span {
    color: #059669;
    font-weight: 700;
}

/* POMIS Rate → orange */
.form-group.field-mis-rate .input-wrapper .icon {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #9a3412;
    border-right-color: #fdba74;
    font-size: 1.05rem;
}
.form-group.field-mis-rate .input-wrapper {
    border-color: #fdba74;
}
.form-group.field-mis-rate .input-wrapper:focus-within {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-group.field-mis-rate .slider-label span {
    color: #ea580c;
    font-weight: 700;
}
.form-group.field-mis-rate input[type="range"]::-webkit-slider-thumb {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 2px 6px rgba(249,115,22,0.4);
}
.form-group.field-mis-rate input[type="range"]::-moz-range-thumb {
    background: #f97316;
}
.form-group.field-mis-rate input[type="range"] {
    background: linear-gradient(to right, #fed7aa 0%, #fdba74 100%);
}
.form-group.field-mis-rate .stepper-btn {
    color: #f97316;
}

/* FD Rate → indigo/blue */
.form-group.field-fd-rate .input-wrapper .icon {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    border-right-color: #a5b4fc;
    font-size: 1.05rem;
}
.form-group.field-fd-rate .input-wrapper {
    border-color: #a5b4fc;
}
.form-group.field-fd-rate .input-wrapper:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form-group.field-fd-rate .slider-label span {
    color: #4f46e5;
    font-weight: 700;
}
.form-group.field-fd-rate input[type="range"]::-webkit-slider-thumb {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 2px 6px rgba(99,102,241,0.4);
}
.form-group.field-fd-rate input[type="range"]::-moz-range-thumb {
    background: #6366f1;
}
.form-group.field-fd-rate input[type="range"] {
    background: linear-gradient(to right, #c7d2fe 0%, #a5b4fc 100%);
}
.form-group.field-fd-rate .stepper-btn {
    color: #6366f1;
}

/* Investment slider → green */
.form-group.field-investment input[type="range"]::-webkit-slider-thumb {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 6px rgba(16,185,129,0.4);
}
.form-group.field-investment input[type="range"]::-moz-range-thumb {
    background: #10b981;
}
.form-group.field-investment input[type="range"] {
    background: linear-gradient(to right, #a7f3d0 0%, #6ee7b7 100%);
}
.form-group.field-investment .stepper-btn {
    color: #059669;
}
.form-group.field-investment .stepper-btn:hover {
    background: #d1fae5;
}

/* --- Premium Radio Pill Buttons for account type --- */
.type-selector {
    gap: 0.75rem;
}
.type-selector .radio-label {
    flex: 1;
}
.type-selector .radio-custom {
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 2px solid #e2eaff;
    background: #f8f9ff;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
    width: 100%;
}
.type-selector .radio-label input[type="radio"]:checked + .radio-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 12px rgba(102,126,234,0.35);
    transform: translateY(-1px);
}
.type-selector .radio-label input[type="radio"]:not(:checked) + .radio-custom:hover {
    border-color: #667eea;
    color: #667eea;
    background: #eef2ff;
}

/* --- Premium Calculate Button --- */
.btn-primary.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    flex: 1;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.35);
    transition: all 0.3s ease;
}
.btn-primary.btn-submit:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    box-shadow: 0 6px 20px rgba(102,126,234,0.5);
    transform: translateY(-2px);
}

/* Combo Highlight Box */
.combo-highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.highlight-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.highlight-comparison {
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Custom Stepper Buttons */
.input-wrapper input[type="number"] {
    -moz-appearance: textfield;
}

.input-wrapper input[type="number"]::-webkit-outer-spin-button,
.input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stepper-group {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex-shrink: 0;
}

.stepper-btn {
    background-color: var(--light-gray);
    border: none;
    border-left: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 36px;
    height: 50%;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper-btn:hover {
    background-color: #e2e6ea;
}

.stepper-btn.stepper-up {
    border-bottom: 1px solid var(--border-color);
}

/* CUSTOM STYLING OVERRIDES FOR POMIS VS BANK FD CALCULATOR */
.result-item .value {
    white-space: nowrap !important;
    word-break: normal !important;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Dynamic Swiper-like Section for related tools --- */
.swiper-like-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
}
.swiper-like-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.swiper-like-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
}
.swiper-like-header .stack-icon {
    color: #4c51bf;
    font-size: 1.6rem;
    background: #ebf4ff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.swiper-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 2rem 0.5rem;
    scroll-snap-type: x mandatory;
    margin: -0.5rem;
}
/* Custom Scrollbar */
.swiper-track::-webkit-scrollbar {
    height: 8px;
}
.swiper-track::-webkit-scrollbar-track {
    background: #edf2f7;
    border-radius: 4px;
}
.swiper-track::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
    transition: background 0.2s;
}
.swiper-track::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}
.swiper-slide-custom {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.swiper-slide-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e2e8f0;
}
.slide-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ebf4ff 0%, #e1e7ff 100%);
    color: #4c51bf;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    transition: transform 0.3s;
}
.swiper-slide-custom:hover .slide-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4c51bf 0%, #6366f1 100%);
    color: white;
}
.swiper-slide-custom h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}
.swiper-slide-custom p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.swiper-slide-custom .btn-try {
    font-size: 0.95rem;
    color: #4c51bf;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}
.swiper-slide-custom:hover .btn-try {
    gap: 0.75rem;
    color: #3c366b;
}

/* Smart Badges for CTR */
.badge-ctr {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.badge-hot { background: #fff5f5; color: #e53e3e; }
.badge-new { background: #ebf8ff; color: #3182ce; }
.badge-top { background: #f0fff4; color: #38a169; }

@media (max-width: 768px) {
    .swiper-like-container { padding: 1.5rem; }
}
