/* ============================================
   OOREDOO TUNISIA - HOMEPAGE CLONE
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ============================================
   HEADER TOP BAR  
   ============================================ */
.header-top {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    height: 44px;
}

.header-top .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Left tabs */
.top-left-header ul {
    display: flex;
    gap: 0;
    height: 100%;
}

.top-left-header ul li a {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    height: 100%;
}

.top-left-header ul li a:hover,
.top-left-header ul li a.active {
    color: #ed1c24;
    font-weight: 600;
}

/* Right area */
.top-right-header {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.top-right-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.top-right-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-right-links li a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.top-right-links li a:hover { color: #ed1c24; }
.top-right-links li a svg { flex-shrink: 0; }

/* Eddenyalive button */
.btn-eddenyalive {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 8px;
}

.btn-eddenyalive a {
    background: #ed1c24;
    color: #fff !important;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-eddenyalive a:hover {
    background: #c41219;
    box-shadow: 0 3px 10px rgba(237,28,36,0.3);
}

/* My Account */
.header-top-account {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 20px;
}

.header-top-account a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #ed1c24;
    transition: color 0.3s ease;
}

.header-top-account a:hover { color: #c41219; }
.header-top-account a svg { color: #ed1c24; }

/* Language selector */
.lang-selector {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 18px;
    position: relative;
    cursor: pointer;
}

.lang-selector > a {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.lang-selector svg { width: 14px; height: 14px; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    min-width: 155px;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown { display: block; }

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 13px;
    transition: background 0.2s ease;
}

.lang-dropdown li a:hover { background: #f5f5f5; }
.lang-dropdown li a img { width: 16px; height: 11px; }

/* Search toggle */
.search-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    transition: color 0.3s ease;
    height: 100%;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
}

.search-toggle-btn:hover { color: #ed1c24; border-color: #ed1c24; }

.search-toggle-btn svg {
    width: 16px;
    height: 16px;
    color: #999;
}

/* ============================================
   HEADER NAV BAR
   ============================================ */
.header-nav {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid #ed1c24;
}

.header-nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
}

.header-logo { flex: 0 0 200px; }
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 42px; width: auto; }

/* Main Menu */
.main-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 0;
    height: 68px;
}

.main-menu > ul > li {
    position: relative;
    height: 100%;
}

.main-menu > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 24px;
    height: 100%;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.main-menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ed1c24;
    transition: width 0.3s ease;
}

.main-menu > ul > li:hover > a::after { width: 80%; }
.main-menu > ul > li:hover > a { color: #ed1c24; }
.main-menu > ul > li > a.red-text { color: #ed1c24; }

.main-menu > ul > li > a .arrow-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.main-menu > ul > li:hover > a .arrow-icon { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 3px solid #ed1c24;
    min-width: 780px;
    padding: 28px 35px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    border-radius: 0 0 10px 10px;
}

.main-menu > ul > li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-row {
    display: flex;
    gap: 35px;
}

.mega-menu-col {
    flex: 1;
    min-width: 160px;
}

.mega-menu-col h4 {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.5px;
}

.mega-menu-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    transition: all 0.2s ease;
}

.mega-menu-col ul li a:hover {
    color: #ed1c24;
    padding-left: 6px;
}

.mega-menu-col ul li a .tag {
    color: #ed1c24;
    font-weight: 700;
    font-size: 12px;
}

/* Quick links in mega */
.mega-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.mega-quick-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.mega-quick-links a:hover {
    background: #ed1c24;
    color: #fff;
    border-color: #ed1c24;
}

/* Header Right */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.btn-eligibility {
    color: #ed1c24;
    padding: 9px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #ed1c24;
    background: transparent;
}

.btn-eligibility:hover {
    background: #ed1c24;
    color: #fff;
    box-shadow: 0 4px 16px rgba(237,28,36,0.3);
    transform: translateY(-1px);
}

.btn-eligibility svg { stroke: currentColor; }

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
    position: relative;
}

.header-icon-btn:hover { background: #f5f5f5; }
.header-icon-btn svg { width: 22px; height: 22px; color: #333; }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ed1c24;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    backdrop-filter: blur(4px);
}

.search-overlay.active { display: flex; }

.search-form-wrapper {
    background: #fff;
    padding: 16px 24px;
    width: 100%;
    max-width: 650px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.search-form-wrapper form { display: flex; width: 100%; align-items: center; }
.search-form-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 16px;
    color: #333;
}

.search-form-wrapper input::placeholder { color: #bbb; }

.search-form-wrapper button[type="submit"] {
    background: #ed1c24;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-form-wrapper button[type="submit"]:hover { background: #c41219; }

.search-close-btn {
    margin-left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 8px;
    transition: color 0.3s ease;
    display: flex;
}

.search-close-btn:hover { color: #ed1c24; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.slide a { display: block; }

.slide img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 250px;
    object-fit: cover;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: #ed1c24;
    border-color: #ed1c24;
    transform: scale(1.2);
}

.slider-dot:hover { border-color: #ed1c24; }

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border: none;
}

.slider-arrow:hover {
    background: #ed1c24;
    color: #fff;
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-arrow svg { width: 20px; height: 20px; }

/* ============================================
   QUICK ACCESS SECTION
   ============================================ */
.quick-access {
    position: relative;
    padding: 45px 0 55px;
    background: #fff;
}

.quick-access .section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-access-wrapper {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.quick-access-image {
    position: absolute;
    left: -220px;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
    z-index: 2;
}

.quick-access-image img { width: 100%; height: auto; }

/* The card box */
.quick-access-box {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 10px 30px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    position: relative;
}

/* Discount badge */
.discount-badge {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.discount-badge span {
    display: inline-block;
    background: #ffd700;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    position: relative;
    animation: pulse 2s infinite;
}

.discount-badge span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffd700;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* Tabs */
.quick-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid #e8e8e8;
    margin-top: 8px;
}

.quick-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ed1c24;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-tab.active { color: #ed1c24; }
.quick-tab.active::after { transform: scaleX(1); }
.quick-tab:hover { color: #ed1c24; }

.quick-tab svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 30px 20px;
    animation: fadeIn 0.3s ease;
}

.tab-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    width: 100%;
}

.input-row input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: #fff;
}

.input-row input:focus { border-color: #ed1c24; }
.input-row input::placeholder { color: #bbb; }

.btn-confirm {
    background: #ed1c24;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-confirm:hover {
    background: #c41219;
    box-shadow: 0 4px 16px rgba(237,28,36,0.3);
}

.tab-info {
    font-size: 13px;
    color: #888;
}

.tab-info a {
    color: #333;
    text-decoration: underline;
}

.tab-info a:hover { color: #ed1c24; }

/* Recharge Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.popup-overlay.active { display: flex; }

.popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.popup-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
}

.popup-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.popup-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.popup-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-option:hover,
.popup-option.selected {
    border-color: #ed1c24;
    background: #fff5f5;
}

.popup-option input[type="radio"] { accent-color: #ed1c24; width: 18px; height: 18px; }
.popup-option label { font-size: 14px; font-weight: 500; cursor: pointer; }

.popup-btn-confirm {
    width: 100%;
    background: #ed1c24;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn-confirm:hover { background: #c41219; }

/* ============================================
   FOOTER 
   ============================================ */
.footer {
    background: #1a1a1a;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

/* Curved separator */
.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50% 50% 0 0;
}

.footer-main {
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col.logo-col {
    flex: 0 0 320px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-about-text {
    color: #aaa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #999;
    font-size: 13.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ed1c24;
    transform: translateX(4px);
}

/* App Badges */
.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badges a img {
    height: 36px;
    width: auto;
    transition: opacity 0.3s ease;
}

.app-badges a:hover img { opacity: 0.8; }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 12px;
    color: #777;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ed1c24;
    transform: translateY(-3px);
}

.social-links a svg {
    width: 17px;
    height: 17px;
    fill: #999;
}

.social-links a:hover svg { fill: #fff; }

/* Social icon images (downloaded SVGs) */
.social-links a .social-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: brightness(0) invert(0.6);
    transition: filter 0.3s ease;
}

.social-links a:hover .social-icon {
    filter: brightness(0) invert(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .quick-access-image { display: none; }
    .mega-menu { min-width: 600px; }
    .footer-col.logo-col { flex: 0 0 250px; }
}

@media (max-width: 992px) {
    .top-right-links,
    .btn-eddenyalive { display: none; }
    
    .main-menu > ul > li > a { padding: 0 14px; font-size: 13px; }
    .mega-menu { min-width: 100%; left: 0; transform: none; }
    .footer-col.logo-col { flex: 0 0 100%; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .mobile-menu-toggle { display: flex; }
    .main-menu { display: none; }
    
    .main-menu.mobile-open {
        display: flex;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        background: #fff;
        z-index: 999;
        flex-direction: column;
        overflow-y: auto;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    
    .main-menu.mobile-open > ul {
        flex-direction: column;
        height: auto;
    }
    
    .main-menu.mobile-open > ul > li {
        height: auto;
    }
    
    .main-menu.mobile-open > ul > li > a {
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
        height: auto;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 15px 20px;
        opacity: 1;
        visibility: visible;
        display: none;
        min-width: auto;
    }
    
    .main-menu.mobile-open > ul > li:hover .mega-menu { display: block; }
    
    .header-logo img { height: 34px; }
    .header-right-actions .btn-eligibility { display: none; }
    
    .slider-arrow { width: 36px; height: 36px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    
    .quick-access { padding: 30px 0 40px; }
    .quick-access .section-title { font-size: 22px; }
    .quick-tabs { gap: 0; }
    .quick-tab { padding: 12px 20px; font-size: 13px; }
    
    .input-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .input-row input { border-radius: 8px; width: 100%; }
    .btn-confirm { border-radius: 50px; width: 100%; }
    
    .footer-columns { flex-direction: column; }
    .footer-col { min-width: 100%; }
    .footer-bottom .inner { flex-direction: column; text-align: center; }
    .social-links { justify-content: center; }
}

@media (max-width: 480px) {
    .quick-tab { padding: 10px 12px; font-size: 12px; }
    .quick-access-box { padding: 10px 15px 20px; }
    .btn-confirm { padding: 12px 24px; font-size: 13px; }
}
