/* ============================================
   KRANTHI HIGH SCHOOL - RESPONSIVE STYLES
   ============================================
   Mobile-first responsive breakpoints
   ============================================ */

/* ============================================
   EXTRA LARGE SCREENS (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    .hero-content h2 {
        font-size: 4rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }
}

/* ============================================
   LARGE DESKTOP (max 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 12px 10px;
        font-size: 0.8rem;
    }

    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h2 {
        font-size: 3rem;
    }
}

/* ============================================
   LAPTOP (max 992px)
   ============================================ */
@media (max-width: 992px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 0 30px;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: calc(var(--z-header) + 1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 14px 25px;
        font-size: 0.92rem;
        border-bottom: 1px solid var(--light-gray);
    }

    [data-theme="dark"] .nav-menu > li > a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    /* Mobile Mega Dropdown */
    .mega-dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        background: var(--bg-secondary);
    }

    .nav-menu > li.dropdown-open .mega-dropdown {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        padding: 8px;
    }

    .mega-dropdown-inner {
        grid-template-columns: 1fr;
        padding: 15px 25px;
        gap: 5px;
    }

    .mega-col {
        margin-bottom: 10px;
    }

    .btn-admission-header {
        display: none;
    }

    /* Hero */
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Image Grid */
    .about-image-grid {
        grid-template-columns: 1fr;
    }

    .about-img:first-child {
        grid-row: auto;
        height: 250px;
    }

    /* Footer */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Lightbox */
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    /* Fee Table */
    .fee-table {
        font-size: 0.78rem;
    }

    .fee-table thead th,
    .fee-table tbody td {
        padding: 10px 8px;
    }

    /* Page Banner */
    .page-banner {
        padding: 120px 0 60px;
    }

    .page-banner-content h1 {
        font-size: 2.2rem;
    }

    /* Event Cards */
    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Admission Steps */
    .admission-step::after {
        display: none;
    }

    /* Mobile Overlay */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: var(--z-header);
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    /* Sticky Admission Bar */
    .sticky-admission-bar {
        display: block;
    }

    /* Adjust floating buttons for sticky bar */
    .floating-whatsapp,
    .floating-call,
    .back-to-top {
        bottom: calc(var(--bottom-offset, 0px) + 60px);
    }

    .floating-whatsapp { bottom: 120px; }
    .floating-call { bottom: 185px; }
    .back-to-top { bottom: 70px; }
}

/* ============================================
   TABLET (max 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    /* Top Bar */
    .top-bar-content {
        justify-content: center;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-left a:nth-child(3),
    .top-bar-left a:nth-child(4) {
        display: none;
    }

    /* Header */
    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text span {
        display: none;
    }

    .logo-icon {
        font-size: 34px;
    }

    /* Hero */
    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 100px 0 40px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.92rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .counter-card {
        padding: 20px 15px;
    }

    .counter-card .counter-number {
        font-size: 1.8rem;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title .subtitle {
        font-size: 0.75rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Chat Widget */
    .chat-window {
        width: 300px;
        left: -10px;
    }

    /* About Features */
    .about-features-list {
        grid-template-columns: 1fr;
    }

    /* Forms */
    .form-control-custom {
        padding: 12px 15px;
    }

    /* Cards */
    .premium-card,
    .glass-card {
        padding: 25px 20px;
    }

    /* Page Banner */
    .page-banner {
        padding: 110px 0 50px;
    }

    .page-banner-content h1 {
        font-size: 1.8rem;
    }

    /* Message Card */
    .message-card {
        padding: 30px 25px;
    }

    /* Timeline */
    .timeline {
        padding-left: 30px;
    }

    /* Download Cards */
    .download-card {
        flex-direction: column;
        text-align: center;
    }

    /* Notice Board */
    .notice-ticker {
        flex-direction: column;
        gap: 10px;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card .quote {
        font-size: 0.92rem;
    }
}

/* ============================================
   MOBILE (max 576px)
   ============================================ */
@media (max-width: 576px) {
    :root {
        --section-padding: 40px 0;
    }

    /* Body */
    body {
        font-size: 14px;
    }

    /* Top Bar */
    .top-bar {
        padding: 6px 0;
        font-size: 0.72rem;
    }

    .top-bar-left {
        display: none;
    }

    /* Header */
    .main-header {
        padding: 10px 0;
    }

    .logo-text h1 {
        font-size: 0.95rem;
    }

    .logo-icon {
        font-size: 28px;
    }

    .dark-mode-toggle {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero-section {
        min-height: 70vh;
    }

    .hero-content {
        padding: 90px 0 30px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .btn-primary-gradient,
    .btn-accent-gradient,
    .btn-outline,
    .btn-outline-primary {
        padding: 11px 22px;
        font-size: 0.82rem;
    }

    /* Counter */
    .counters-section {
        margin-top: -40px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .counter-card {
        padding: 15px 10px;
    }

    .counter-card .counter-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .counter-card .counter-number {
        font-size: 1.5rem;
    }

    .counter-card .counter-label {
        font-size: 0.7rem;
    }

    /* Section Titles */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.78rem;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        border-radius: var(--radius-full);
    }

    .newsletter-form button {
        border-radius: var(--radius-full);
        padding: 12px;
    }

    /* Floating Widgets */
    .floating-whatsapp,
    .floating-call {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    .floating-whatsapp { right: 15px; }
    .floating-call { right: 15px; }
    .back-to-top { right: 15px; }

    /* Chat Widget */
    .ai-chat-widget {
        left: 15px;
        bottom: 70px;
    }

    .chat-bubble {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chat-window {
        width: calc(100vw - 30px);
        left: 0;
        bottom: 65px;
    }

    /* Notice Popup */
    .notice-popup {
        padding: 35px 25px;
    }

    .notice-content h3 {
        font-size: 1.1rem;
    }

    /* Cards */
    .premium-card,
    .glass-card {
        padding: 20px 15px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    /* Faculty */
    .faculty-avatar {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    /* Page Banner */
    .page-banner {
        padding: 100px 0 40px;
    }

    .page-banner-content h1 {
        font-size: 1.5rem;
    }

    /* Tables */
    .fee-table-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }

    .fee-table {
        font-size: 0.72rem;
    }

    .fee-table thead th {
        padding: 10px 6px;
        font-size: 0.7rem;
    }

    .fee-table tbody td {
        padding: 10px 6px;
    }

    /* Payment Tabs */
    .payment-tabs {
        gap: 6px;
    }

    .payment-tab {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    /* Event Card */
    .event-card {
        padding: 20px;
    }

    .event-date-box {
        min-width: 60px;
    }

    /* Message Card */
    .message-card {
        padding: 25px 20px;
    }

    .message-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    /* Topper Card */
    .topper-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .topper-card .percentage {
        font-size: 1.2rem;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card .quote {
        font-size: 0.85rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }

    /* Contact */
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .map-container {
        height: 300px;
    }

    /* Download Card */
    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    /* Blog Meta */
    .blog-meta {
        flex-wrap: wrap;
    }

    /* Job Card */
    .job-tags {
        justify-content: center;
    }

    /* Hostel Feature */
    .hostel-feature {
        flex-direction: column;
        text-align: center;
    }

    .hostel-feature .feature-icon {
        margin: 0 auto;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (max 375px)
   ============================================ */
@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 1.3rem;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .counter-card .counter-number {
        font-size: 1.3rem;
    }

    .section-title h2 {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .top-bar,
    .main-header,
    .floating-whatsapp,
    .floating-call,
    .back-to-top,
    .ai-chat-widget,
    .notice-popup-overlay,
    .sticky-admission-bar,
    .admission-counter-bar {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .page-banner {
        background: #f0f0f0 !important;
        padding: 30px 0;
    }

    .page-banner-content h1 {
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .premium-card,
    .glass-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 60px 0 30px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   HIGH DPI / RETINA DISPLAYS
   ============================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp rendering on retina */
    .logo-icon,
    .counter-icon,
    .icon-box {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .notice-scroll {
        animation: none;
    }

    .floating-whatsapp,
    .chat-bubble {
        animation: none;
    }
}

/* ============================================
   DARK MODE SPECIFIC RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 768px) {
    [data-theme="dark"] .top-bar {
        background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    }
}

@media (max-width: 480px) {

    .main-nav {
        width: 88vw;
        max-width: 320px;
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.88rem;
    }

    .mega-dropdown {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .mega-dropdown-inner {
        width: 100%;
        max-width: 100%;
        padding: 12px 18px;
        box-sizing: border-box;
    }

    .mega-col {
        width: 100%;
        max-width: 100%;
    }

    .mega-col ul {
        width: 100%;
    }

    .mega-col ul li {
        width: 100%;
    }

    .mega-col ul li a {
        width: 100%;
        white-space: normal;
    }
}

/* =========================================================
   FINAL MOBILE NAVIGATION FIX
   ========================================================= */

@media (max-width: 992px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden !important;
    }

    /* Header */
    .header-content {
        width: 100%;
        min-width: 0;
        gap: 10px;
    }

    .logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 60px);
        overflow: hidden;
    }

    .logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .logo-text h1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hamburger */
    .mobile-menu-toggle {
        display: flex !important;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10002;
    }

    /* Mobile Navigation Panel */
    .main-nav {
        position: fixed !important;
        top: 0;
        right: 0 !important;

        width: min(300px, 85vw) !important;
        max-width: 300px !important;
        height: 100dvh;

        margin: 0;
        padding: 80px 0 30px;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;

        background: #ffffff;
        overflow-x: hidden !important;
        overflow-y: auto;

        transform: translateX(100%);
        transition: transform 0.35s ease;

        z-index: 10001;
    }

    .main-nav.active {
        right: 0 !important;
        transform: translateX(0);
    }

    /* Menu */
    .nav-menu {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li {
        width: 100%;
        position: relative;
    }

    .nav-menu > li > a {
        width: 100%;
        min-height: 48px;
        padding: 14px 20px !important;

        display: flex !important;
        align-items: center;
        justify-content: flex-start;

        box-sizing: border-box;

        white-space: normal;
        overflow: hidden;

        border-bottom: 1px solid #eeeeee;
    }

    /* Remove desktop underline */
    .nav-menu > li > a::after {
        display: none !important;
    }

    /* Dropdown */
    .mega-dropdown,
    .mega-dropdown.small-dropdown {
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        margin: 0;
        padding: 0 !important;

        transform: none !important;

        display: block;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        max-height: 0;
        overflow: hidden;

        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .nav-menu > li.dropdown-open > .mega-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        max-height: 1000px;

        padding: 8px 0 !important;
    }

    .mega-dropdown-inner,
    .mega-dropdown-inner-small {
        width: 100% !important;
        max-width: 100% !important;

        display: block !important;

        padding: 10px 20px !important;
        box-sizing: border-box;
    }

    .mega-col {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px;
    }

    .mega-col ul {
        width: 100%;
    }

    .mega-col ul li {
        width: 100%;
    }

    .mega-col ul li a {
        width: 100%;
        box-sizing: border-box;
        padding: 9px 5px !important;
        white-space: normal;
    }

    /* Overlay */
    .mobile-nav-overlay {
        position: fixed !important;
        inset: 0;
        width: 100vw !important;
        height: 100dvh !important;

        z-index: 10000;

        background: rgba(0, 0, 0, 0.35);
    }

    .mobile-nav-overlay.active {
        display: block !important;
    }
}


/* Smaller phones */
@media (max-width: 576px) {

    .main-nav {
        width: 85vw !important;
        max-width: 300px !important;
    }

    .logo {
        max-width: calc(100% - 55px);
    }

    .logo-text h1 {
        font-size: 0.9rem !important;
    }

    .nav-menu > li > a {
        padding: 13px 18px !important;
        font-size: 0.88rem !important;
    }
}


/* Very small phones */
@media (max-width: 375px) {

    .main-nav {
        width: 88vw !important;
        max-width: 280px !important;
    }

    .nav-menu > li > a {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* =========================================================
   MOBILE DROPDOWN CLICK SUPPORT
   ========================================================= */

@media (max-width: 992px) {

    .nav-menu > li > .mega-dropdown {
        display: block !important;

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        transform: none !important;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease;
    }


    /* OPEN DROPDOWN */

    .nav-menu > li.dropdown-open > .mega-dropdown {

        max-height: 1200px;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

    }


    /* Disable desktop hover dropdown on mobile */

    .nav-menu > li:hover > .mega-dropdown {

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: none !important;

    }


    .nav-menu > li.dropdown-open:hover > .mega-dropdown {

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

    }


    /* Dropdown contents */

    .mega-dropdown-inner {
        display: block !important;
        width: 100% !important;
        padding: 8px 18px !important;
        box-sizing: border-box;
    }


    .mega-dropdown-inner-small {
        display: block !important;
        width: 100% !important;
        padding: 8px 18px !important;
        box-sizing: border-box;
    }


    .mega-col {
        width: 100% !important;
    }


    .mega-col ul {
        width: 100%;
        margin: 0;
        padding: 0;
    }


    .mega-col ul li {
        width: 100%;
    }


    .mega-col ul li a {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 5px !important;
    }

}
/* =========================================================
   FINAL MOBILE MENU STACKING FIX
   ========================================================= */

@media (max-width: 992px) {

    /* Dark overlay MUST stay BELOW the header */
    .mobile-nav-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;

        z-index: 999 !important;

        background: rgba(0, 0, 0, 0.5) !important;
    }

    /* Header remains above overlay */
    .main-header {
        position: sticky !important;
        z-index: 1000 !important;
    }

    /* Mobile menu is above overlay */
    .main-nav {
        position: fixed !important;

        top: 0 !important;
        right: -100% !important;

        width: min(300px, 85vw) !important;
        height: 100dvh !important;

        z-index: 1001 !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        background: var(--bg-card) !important;

        padding: 80px 0 30px !important;

        transition: right 0.35s ease !important;
    }

    /* OPEN MENU */
    .main-nav.active {
        right: 0 !important;
    }

    /* Hamburger above everything */
    .mobile-menu-toggle {
        position: relative !important;
        z-index: 1002 !important;
    }

    /* Navigation list */
    .nav-menu {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;
        justify-content: flex-start !important;

        gap: 0 !important;
    }

    .nav-menu > li {
        width: 100% !important;
    }

    .nav-menu > li > a {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}