/* ========================================= */
/*         EFFORTMART SELLERZONE FOOTER      */
/*           YOUR COLOR THEME SYSTEM         */
/* ========================================= */

:root {
    --primary: #E97C43;
    --primary-dark: #973B14;
    --primary-light: #FFEFE5;
    --secondary: #6366F1;
    --dark: #1E293B;
    --light: #FFFFFF;
    --gray: #64748B;
    --gray-light: #F8FAFC;
    --gray-border: #E2E8F0;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
}

/* =========================== */
/*        GLOBAL FOOTER        */
/* =========================== */
footer.sz-footer {
    background: linear-gradient(135deg, var(--dark) 0%, #0F172A 100%);
    color: var(--light);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* Animated Background Elements */
footer.sz-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 124, 67, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sz-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* =========================== */
/*   BRAND + SOCIAL SECTION    */
/* =========================== */
.sz-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sz-brand-box {
    flex: 1.5;
    max-width: 400px;
}

.brand-logo{
    background: white !important;
}

.sz-brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sz-brand-logo img {
    height: 56px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sz-brand-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(233, 124, 67, 0.3);
}

.sz-brand-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.sz-brand-desc {
    font-size: 16px;
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Social Icons */
.sz-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sz-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.sz-social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 124, 67, 0.4);
    border-color: var(--primary);
}

/* =========================== */
/*       MENU GRID LAYOUT      */
/* =========================== */
.sz-menu-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.sz-menu-col {
    padding: 0 10px;
}

.sz-menu-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sz-menu-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--warning));
    border-radius: 2px;
}

.sz-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sz-menu-col ul li {
    margin-bottom: 12px;
}

.sz-menu-col ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #CBD5E1;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.sz-menu-col ul li a::before {
    content: '›';
    margin-right: 10px;
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sz-menu-col ul li a:hover {
    color: var(--light);
    transform: translateX(8px);
}

.sz-menu-col ul li a:hover::before {
    transform: translateX(3px);
    color: var(--warning);
}

/* =========================== */
/*       FOOTER BOTTOM         */
/* =========================== */
.sz-footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94A3B8;
    font-size: 14px;
}

.sz-powered {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sz-powered::before {
    content: '⚡';
    font-size: 16px;
}

/* =========================== */
/*      TABLET LAYOUT          */
/* =========================== */
@media (max-width: 1024px) {
    .sz-container {
        padding: 0 30px;
    }
    
    .sz-footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .sz-brand-box {
        max-width: 100%;
    }
    
    .sz-brand-logo {
        justify-content: center;
    }
    
    .sz-social-icons {
        justify-content: center;
    }
    
    .sz-menu-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sz-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================== */
/*       MOBILE LAYOUT         */
/* =========================== */
@media (max-width: 768px) {
    footer.sz-footer {
        padding: 40px 0 0;
    }
    
    .sz-container {
        padding: 0 20px;
    }
    
    .sz-footer-top {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .sz-brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .sz-brand-title {
        font-size: 24px;
    }
    
    .sz-brand-desc {
        font-size: 15px;
    }
    
    .sz-menu-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sz-menu-col {
        border: none;
        padding: 0;
        margin-bottom: 0;
        background: transparent;
    }
    
    .sz-menu-col h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 20px 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }
    
    .sz-menu-col h4::after {
        content: '›';
        font-size: 24px;
        font-weight: 300;
        background: none;
        width: auto;
        height: auto;
        position: static;
        transition: transform 0.3s ease;
        color: var(--primary);
    }
    
    .sz-menu-col.active h4::after {
        transform: rotate(90deg);
        color: var(--warning);
    }
    
    .sz-menu-col ul {
        display: none;
        padding: 15px 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .sz-menu-col.active ul {
        display: block;
    }
    
    .sz-menu-col ul li a {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .sz-footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
}

/* =========================== */
/*     SMALL MOBILE LAYOUT     */
/* =========================== */
@media (max-width: 480px) {
    .sz-container {
        padding: 0 15px;
    }
    
    .sz-brand-logo img {
        height: 48px;
    }
    
    .sz-brand-title {
        font-size: 22px;
    }
    
    .sz-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .sz-footer-bottom {
        font-size: 13px;
    }
}

/* =========================== */
/*     ANIMATION KEYFRAMES     */
/* =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sz-menu-col {
    animation: fadeInUp 0.6s ease-out;
}

.sz-menu-col:nth-child(1) { animation-delay: 0.1s; }
.sz-menu-col:nth-child(2) { animation-delay: 0.2s; }
.sz-menu-col:nth-child(3) { animation-delay: 0.3s; }
.sz-menu-col:nth-child(4) { animation-delay: 0.4s; }

/* =========================== */
/*     ACCESSIBILITY SUPPORT   */
/* =========================== */
@media (prefers-reduced-motion: reduce) {
    .sz-brand-logo img,
    .sz-social-icons a,
    .sz-menu-col ul li a {
        transition: none;
    }
    
    .sz-menu-col {
        animation: none;
    }
}

/* =========================== */
/*     HIGH CONTRAST MODE      */
/* =========================== */
@media (prefers-contrast: high) {
    footer.sz-footer {
        background: #000000;
        border-top: 3px solid #ffffff;
    }
    
    .sz-menu-col h4::after {
        background: var(--primary);
    }
    
    .sz-social-icons a {
        border: 2px solid var(--primary);
    }
    
    .sz-social-icons a:hover {
        background: var(--primary);
    }
}

/* =========================== */
/*     PRINT STYLES            */
/* =========================== */
@media print {
    footer.sz-footer {
        background: #ffffff !important;
        color: #000000 !important;
        border-top: 2px solid #000000;
    }
    
    .sz-social-icons,
    .sz-brand-logo img {
        display: none;
    }
    
    .sz-menu-col ul li a {
        color: #000000 !important;
    }
    
    .sz-powered {
        color: #000000 !important;
    }
}