/* ============================================================
   SELLER PORTAL — Message Alerts
   ============================================================ */
.message {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0 0 16px !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
}
.message::before { display: none !important; }
.message > *:first-child::before { display: none !important; }

.message.error,
.message-error .message,
.message.error.error {
    background: #fff1f1 !important;
    color: #b91c1c !important;
    border-left: 4px solid #ef4444 !important;
}
.message.error::after {
    content: '✕';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    order: -1;
}

.message.success,
.message-success .message {
    background: #f0fdf4 !important;
    color: #15803d !important;
    border-left: 4px solid #22c55e !important;
}
.message.success::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    order: -1;
}

.message.notice,
.message-notice .message {
    background: #fffbeb !important;
    color: #92400e !important;
    border-left: 4px solid #f59e0b !important;
}
.message.notice::after {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f59e0b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    order: -1;
}

.message.warning,
.message-warning .message {
    background: #fff7ed !important;
    color: #9a3412 !important;
    border-left: 4px solid #f97316 !important;
}

.messages {
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================================
   MAIN SITE — hide old Magento header (replaced by soc-site-header
   inside navigation.sections).
   Seller pages get it back via .seller-portal rule below.
   ============================================================ */
.page-header {
    display: none !important;
}

/* Seller pages: show page-header (contains our soc-seller-header block) */
.seller-portal .page-header {
    display: block !important;
}

/* Seller pages: hide the default Magento panel + logo/search/cart inside it */
.seller-portal .page-header .panel.wrapper,
.seller-portal .page-header .header.content {
    display: none !important;
}

/* Seller pages: hide main site header.
   page.top has no htmlTag wrapper, so target the rendered element directly */
.seller-portal .soc-site-header,
.seller-portal .nav-sections {
    display: none !important;
}

/* ============================================================
   MAIN SITE HEADER (inside navigation.sections override)
   ============================================================ */
.soc-site-header {
    background: #0000cc;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.soc-site-header__inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    gap: 20px;
}

/* Logo */
.soc-site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.soc-site-header__logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: none;
}

/* Navigation area */
.soc-site-header__nav {
    display: flex;
    align-items: center;
}

/* Reset Magento topnav styles inside our header */
.soc-site-header__nav .navigation,
.soc-site-header__nav .nav-sections-item-content {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.soc-site-header__nav .navigation li.level0 > a {
    color: rgba(255, 255, 255, .85) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 0 14px !important;
    line-height: 64px !important;
    border: none !important;
    background: transparent !important;
    transition: color .18s ease !important;
}

.soc-site-header__nav .navigation li.level0 > a:hover,
.soc-site-header__nav .navigation li.level0.active > a {
    color: #fff !important;
    background: rgba(255, 255, 255, .1) !important;
}

.soc-site-header__nav .navigation li.level0 > .submenu {
    background: #fff !important;
    border-top: 3px solid #f97316 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12) !important;
}

.soc-site-header__nav .navigation li.level1 > a {
    color: #333 !important;
}

/* Spacer */
.soc-site-header__spacer {
    flex: 1;
}

/* Auth section */
.soc-site-header__auth {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.soc-site-header__user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.soc-site-header__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-site-header__username {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.soc-site-header__auth-link,
.soc-site-header__auth-link:visited {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 6px 4px;
    transition: color .18s ease;
    white-space: nowrap;
    opacity: 0.85;
}

.soc-site-header__auth-link:hover {
    color: #fff !important;
    opacity: 1;
}

.soc-site-header__auth-btn {
    display: inline-flex;
    align-items: center;
    background: #f97316;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .18s ease;
    white-space: nowrap;
}

.soc-site-header__auth-btn:hover {
    background: #ea6b0e;
    color: #fff;
}

@media (max-width: 767px) {
    .soc-site-header__username {
        display: none;
    }

    .soc-site-header__inner {
        padding: 0 12px;
        gap: 10px;
    }
}


/* ============================================================
   SELLER PORTAL HEADER
   ============================================================ */
.soc-seller-header {
    background: #0000cc;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    position: sticky;
    top: 0;
    z-index: 900;
}
.soc-login-page,
.soc-register-page,
.soc-otp-page,
.soc-forgot-page {
    margin-top: 48px;
}

.soc-seller-header__inner {
    display: flex;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
    gap: 16px;
}

/* Logo (shown when not logged in) */
.soc-seller-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.soc-seller-header__logo-img {
    height: 36px;
    width: auto;
    display: block;
    filter: none;
}

/* Seller identity block (replaces logo when logged in) */
.soc-seller-header__identity {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.soc-seller-header__avatar--lg {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    border-radius: 50%;
    background: #f97316;
    color: #fff !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.soc-seller-header__identity-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.soc-seller-header__role {
    color: rgba(255, 255, 255, .65) !important;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Spacer */
.soc-seller-header__spacer {
    flex: 1;
}

/* Right section */
.soc-seller-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Notification bell */
.soc-seller-header__icon-btn,
.soc-seller-header__icon-btn:visited {
    color: rgba(255, 255, 255, .8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none !important;
    transition: background .18s ease, color .18s ease;
}

.soc-seller-header__icon-btn:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
}

/* Seller avatar + name */
.soc-seller-header__user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.soc-seller-header__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-seller-header__name {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logout button */
.soc-seller-header__logout,
.soc-seller-header__logout:visited {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15) !important;
    border: 1px solid rgba(255, 255, 255, .4) !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background .18s ease;
    white-space: nowrap;
}

.soc-seller-header__logout:hover {
    background: rgba(255, 255, 255, .28) !important;
    color: #fff !important;
}

/* Auth links (shown when not logged in) */
.soc-seller-header__auth-link,
.soc-seller-header__auth-link:visited {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 6px 4px;
    transition: color .18s ease;
    white-space: nowrap;
    opacity: 0.85;
}

.soc-seller-header__auth-link:hover {
    color: #fff !important;
    opacity: 1;
}

.soc-seller-header__auth-btn {
    display: inline-flex;
    align-items: center;
    background: #f97316;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .18s ease;
    white-space: nowrap;
}

.soc-seller-header__auth-btn:hover {
    background: #ea6b0e;
    color: #fff;
}

@media (max-width: 767px) {
    .soc-seller-header__identity-text,
    .soc-seller-header__name {
        display: none;
    }

    .soc-seller-header__logout span {
        display: none;
    }

    .soc-seller-header__inner {
        max-width: 100%;
        padding: 0 12px;
    }
}

/* ============================================================
   PORTAL BACKGROUND — soft periwinkle across all seller pages
   ============================================================ */
.page-layout-seller_portal,
.page-layout-seller_portal .page-wrapper,
.page-layout-seller_portal .page-main,
.page-layout-seller_portal .columns {
    background: #eaecf5;
}

/* Sticky footer — footer always at viewport bottom */
.page-layout-seller_portal .page-wrapper {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

.page-layout-seller_portal .page-main {
    flex: 1 0 auto !important;
}

.page-layout-seller_portal .page-footer {
    flex-shrink: 0 !important;
    margin-top: auto !important;
}

@media (min-width: 768px), print {
    .page-layout-seller_portal .page-footer {
        background: #f4f4f4 !important;
        padding-top: 25px !important;
        padding-bottom: 25px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

.page-layout-seller_portal .column.main {
    background: transparent;
}

/* Expand page width — full width with tight side padding */
.page-layout-seller_portal .page-main {
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 26px;
    padding-left: 32px;
    padding-right: 32px;
}

.page-layout-seller_portal .columns {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
}

.page-layout-seller_portal .column.main {
    flex: 1 1 0 !important;
    float: none !important;
    width: auto !important;
    min-width: 0;
    order: 2;
    padding-left: 0;
}

.page-layout-seller_portal .sidebar.sidebar-main {
    flex: 0 0 220px !important;
    float: none !important;
    width: 220px !important;
    order: 1;
    margin-right: 16px;
    box-sizing: border-box;
}

/* Also handle the sidebar-additional if present */
.page-layout-seller_portal .sidebar.sidebar-additional {
    display: none;
}

@media (max-width: 767px) {
    .page-layout-seller_portal .columns {
        flex-direction: column !important;
    }

    .page-layout-seller_portal .sidebar.sidebar-main {
        flex: 1 1 100% !important;
        width: 100% !important;
        margin-right: 0;
        margin-bottom: 20px;
        order: 1;
    }

    .page-layout-seller_portal .column.main {
        width: 100% !important;
        order: 2;
    }
}

/* Seller Portal Sidebar Navigation */
.seller-sidebar-nav {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.seller-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1979c3;
}

.seller-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seller-nav-item {
    margin-bottom: 2px;
}

.seller-nav-link {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.seller-nav-link:hover {
    background: #f5f5f5;
    color: #1979c3;
    text-decoration: none;
}

.seller-nav-item.active .seller-nav-link {
    background: #1979c3;
    color: #fff;
    font-weight: 600;
}

.seller-nav-logout {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 32px;
    border-top: 1px solid #e0e0e0;
}

.seller-nav-logout .seller-nav-link {
    color: #e22626;
}

.seller-nav-logout .seller-nav-link:hover {
    background: #fef2f2;
}

/* Seller Auth Forms */
.seller-auth-container {
    max-width: 480px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.seller-auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.seller-auth-container .field {
    margin-bottom: 15px;
}

.seller-auth-container .field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.seller-auth-container .field .control input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.seller-auth-container .field .control input:focus {
    border-color: #1979c3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(25, 121, 195, 0.15);
}

.seller-auth-container .actions-toolbar {
    margin-top: 20px;
    text-align: center;
}

.seller-auth-container .action.primary {
    background: #1979c3;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.seller-auth-container .action.primary:hover {
    background: #006bb4;
}

.seller-auth-links {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.seller-auth-links a {
    color: #1979c3;
    text-decoration: none;
}

.seller-auth-links a:hover {
    text-decoration: underline;
}

/* Seller Dashboard */
.seller-dashboard {
    padding: 15px 0;
}

.seller-dashboard .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.seller-dashboard .stat-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.seller-dashboard .stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1979c3;
}

.seller-dashboard .stat-card .stat-label {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

/* Seller Data Tables */
.seller-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.seller-table th {
    background: #f8f8f8;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e0e0e0;
}

.seller-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.seller-table tr:hover td {
    background: #f9f9f9;
}

.seller-table .action-link {
    color: #1979c3;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.seller-table .action-link:hover {
    text-decoration: underline;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.approved { background: #d4edda; color: #155724; }
.status-badge.pending { background: #fff3cd; color: #856404; }
.status-badge.rejected { background: #f8d7da; color: #721c24; }
.status-badge.paid { background: #d4edda; color: #155724; }
.status-badge.dispatched { background: #cce5ff; color: #004085; }

/* Seller Forms */
.seller-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
}

.seller-form .fieldset {
    margin-bottom: 20px;
}

.seller-form .fieldset .legend {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.seller-form .field {
    margin-bottom: 12px;
}

.seller-form .field label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.seller-form .field .control input,
.seller-form .field .control select,
.seller-form .field .control textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.seller-form .field .control textarea {
    min-height: 80px;
    resize: vertical;
}

/* Pagination */
.seller-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.seller-pager a,
.seller-pager span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 13px;
    text-decoration: none;
    color: #333;
}

.seller-pager a:hover {
    background: #f5f5f5;
}

.seller-pager .current {
    background: #1979c3;
    color: #fff;
    border-color: #1979c3;
}

/* OTP Input */
.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.otp-input-group input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 2px solid #ccc;
    border-radius: 6px;
}

.otp-input-group input:focus {
    border-color: #1979c3;
    outline: none;
}

/* Registration Form Two-Column (legacy) */
.seller-register-form .form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .seller-register-form .form-columns {
        grid-template-columns: 1fr;
    }

    .seller-dashboard .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SELLER REGISTRATION PAGE — REDESIGN
   Brand palette:  navy #0b1d3a  |  orange #e87019  |  teal #1ab8b8
   ============================================================ */

/* Page wrapper: left hero + right form */
.soc-register-page {
    display: flex;
    min-height: 100vh;
    font-family: inherit;
}

/* ---- Left Hero Panel ---- */
.soc-reg-hero {
    flex: 0 0 42%;
    background: linear-gradient(160deg, #0b1d3a 0%, #132d55 60%, #0e2448 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 48px;
    display: flex;
    align-items: flex-start;
}

.soc-reg-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(232, 112, 25, 0.08);
    pointer-events: none;
}

.soc-reg-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(26, 184, 184, 0.07);
    pointer-events: none;
}

.soc-reg-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Brand logo */
.soc-reg-brand {
    margin-bottom: 32px;
}
.soc-reg-brand-logo {
    width: 200px;
    height: auto;
    display: block;
}

/* Headline */
.soc-reg-headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0 0 16px;
    color: #fff;
}

.soc-reg-subtext {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Benefits list */
.soc-reg-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.soc-reg-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.4;
}

.soc-benefit-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #e87019;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-top: 1px;
}

/* Stats bar */
.soc-reg-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 16px 20px;
}

.soc-stat-item {
    flex: 1;
    text-align: center;
}

.soc-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #e87019;
    line-height: 1;
}

.soc-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.soc-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ---- Right Form Panel ---- */
.soc-reg-form-panel {
    flex: 1 1 0;
    background: #f4f7fb;
    overflow-y: auto;
    padding: 48px 40px;
}

.soc-reg-form-inner {
    max-width: 680px;
    margin: 0 auto;
}

.soc-reg-form-header {
    margin-bottom: 28px;
}

.soc-reg-form-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0b1d3a;
    margin: 0 0 6px;
}

.soc-reg-form-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.soc-reg-form-header p a {
    color: #e87019;
    font-weight: 600;
    text-decoration: none;
}

.soc-reg-form-header p a:hover {
    text-decoration: underline;
}

/* Form sections */
.soc-form-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px 24px 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(11, 29, 58, 0.04);
}

.soc-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.soc-section-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #0b1d3a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.soc-section-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b1d3a;
    margin: 0;
    flex: 1;
}

/* Same as billing checkbox */
.soc-same-as-billing {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    margin-left: auto;
    white-space: nowrap;
}

.soc-same-as-billing input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #e87019;
}

/* Fields grid */
.soc-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
}

.soc-field {
    margin-bottom: 0 !important;
}

.soc-field--full {
    grid-column: 1 / -1;
}

.soc-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px !important;
}

.soc-field label span {
    font-weight: 600;
}

.soc-optional {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
    font-style: normal;
    background: #f1f5f9;
    padding: 1px 6px;
    border-radius: 4px;
}

.soc-field .control input.input-text {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    font-size: 14px;
    color: #1e293b;
    background: #fafbfc;
    box-sizing: border-box;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
}

.soc-field .control input.input-text::placeholder {
    color: #b0bec5;
    font-size: 13px;
}

.soc-field .control input.input-text:focus {
    border-color: #0b1d3a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 29, 58, 0.07);
}

.soc-field .control input.input-text.mage-error,
.soc-field .control input.input-text._error {
    border-color: #e53e3e;
    background: #fff5f5;
}

/* Password wrapper */
.soc-password-wrap {
    position: relative;
}

.soc-password-wrap input.input-text {
    padding-right: 44px !important;
}

.soc-pw-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    line-height: 1;
    transition: color 0.18s;
}

.soc-pw-toggle:hover,
.soc-pw-toggle--visible {
    color: #0b1d3a;
}

/* Disabled yard fields */
.soc-yard-fields--disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Footer: terms + button */
.soc-form-footer {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 1px 4px rgba(11, 29, 58, 0.04);
}

.soc-terms {
    margin-bottom: 18px;
}

.soc-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.soc-terms-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #e87019;
}

.soc-terms-label a {
    color: #e87019;
    font-weight: 600;
    text-decoration: none;
}

.soc-terms-label a:hover {
    text-decoration: underline;
}

/* Register button */
.soc-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #e87019 0%, #d4620f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.18s;
    box-shadow: 0 4px 14px rgba(232, 112, 25, 0.35);
    text-transform: uppercase;
}

.soc-register-btn:hover {
    background: linear-gradient(135deg, #d4620f 0%, #bf570d 100%);
    box-shadow: 0 6px 20px rgba(232, 112, 25, 0.45);
    transform: translateY(-1px);
}

.soc-register-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(232, 112, 25, 0.3);
}

.soc-register-btn svg {
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .soc-register-page {
        flex-direction: column;
        min-height: auto;
    }

    .soc-reg-hero {
        flex: none;
        padding: 40px 24px;
    }

    .soc-reg-headline {
        font-size: 22px;
    }

    .soc-reg-form-panel {
        padding: 32px 20px;
    }
}

@media (max-width: 600px) {
    .soc-reg-form-panel {
        padding: 24px 16px;
    }

    .soc-fields-grid {
        grid-template-columns: 1fr;
    }

    .soc-field--full {
        grid-column: 1;
    }

    .soc-form-section {
        padding: 18px 16px;
    }

    .soc-form-footer {
        padding: 16px;
    }

    .soc-reg-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .soc-stat-divider {
        display: none;
    }

    .soc-section-header {
        flex-wrap: wrap;
    }

    .soc-same-as-billing {
        margin-left: 0;
    }
}

/* ============================================================
   SELLER LOGIN PAGE
   ============================================================ */

.page-title-wrapper { display: none !important; }

.soc-login-page {
    display: flex;
    min-height: 100vh;
    font-family: inherit;
}

/* ---- Left Hero Panel ---- */
.soc-login-hero {
    flex: 0 0 40%;
    background: linear-gradient(160deg, #0b1d3a 0%, #132d55 55%, #0e2448 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 56px;
}

.soc-login-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(232, 112, 25, 0.07);
    pointer-events: none;
}

.soc-login-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(26, 184, 184, 0.06);
    pointer-events: none;
}

/* Decorative grid lines */
.soc-login-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.soc-login-headline {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    color: #fff;
    margin: 24px 0 16px;
    letter-spacing: -0.5px;
}

.soc-login-subtext {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 360px;
}

/* Feature rows */
.soc-login-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
}

.soc-login-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.soc-login-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 112, 25, 0.15);
    border: 1px solid rgba(232, 112, 25, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e87019;
}

.soc-login-feature div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

.soc-login-feature strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.soc-login-feature span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    display: block;
}

/* Hero footer */
.soc-login-hero-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.soc-login-hero-footer span {
    color: rgba(255, 255, 255, 0.5);
}

.soc-login-hero-footer a {
    color: #1ab8b8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
}

.soc-login-hero-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ---- Right Form Panel ---- */
.soc-login-form-panel {
    flex: 1 1 0;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.soc-login-form-inner {
    width: 100%;
    max-width: 420px;
}

.soc-login-form-top {
    margin-bottom: 32px;
}

.soc-login-form-top h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0b1d3a;
    margin: 0 0 8px;
}

.soc-login-form-top p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Login fields */
.soc-login-field {
    margin-bottom: 18px;
}

.soc-login-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.soc-login-field label svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.soc-login-input {
    width: 100%;
    padding: 10px 14px !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background: #fff !important;
    box-sizing: border-box !important;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.soc-login-input::placeholder {
    color: #9ca3af !important;
}

.soc-login-input:focus {
    border-color: #0033cc !important;
    box-shadow: 0 0 0 3px rgba(0,51,204,0.10) !important;
}

.soc-login-input.mage-error,
.soc-login-input._error {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

/* Password wrapper */
.soc-pw-wrap {
    position: relative;
}

.soc-pw-wrap .soc-login-input {
    padding-right: 46px;
}

.soc-pw-wrap .soc-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    line-height: 0;
    transition: color 0.18s;
}

.soc-pw-wrap .soc-pw-toggle:hover {
    color: #0b1d3a;
}

/* Forgot link below password */
.soc-login-field-meta {
    margin-top: 7px;
    text-align: right;
}

.soc-forgot-link {
    font-size: 13px;
    color: #e87019;
    font-weight: 600;
    text-decoration: none;
}

.soc-forgot-link:hover {
    text-decoration: underline;
}

/* Submit button */
.soc-login-actions {
    margin-top: 24px;
}

.soc-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #0b1d3a 0%, #132d55 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.18s;
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.3);
    text-transform: uppercase;
}

.soc-login-btn:hover {
    background: linear-gradient(135deg, #132d55 0%, #1a3d6e 100%);
    box-shadow: 0 6px 22px rgba(11, 29, 58, 0.4);
    transform: translateY(-1px);
}

.soc-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(11, 29, 58, 0.25);
}

/* Register CTA below form */
.soc-login-register-cta {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    padding: 18px 0;
    border-top: 1px solid #e2e8f0;
}

.soc-login-register-cta a {
    color: #e87019;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}

.soc-login-register-cta a:hover {
    text-decoration: underline;
}

/* Secure badge */
.soc-login-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 12px;
}

.soc-login-secure-badge svg {
    color: #4ade80;
}

/* ---- Login Responsive ---- */
@media (max-width: 900px) {
    .soc-login-page {
        flex-direction: column;
        min-height: auto;
    }

    .soc-login-hero {
        flex: none;
        padding: 40px 28px;
        align-items: flex-start;
    }

    .soc-login-headline {
        font-size: 26px;
    }

    .soc-login-form-panel {
        padding: 40px 24px;
        align-items: flex-start;
    }

    .soc-login-form-inner {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .soc-login-hero {
        padding: 32px 20px;
    }

    .soc-login-headline {
        font-size: 22px;
    }

    .soc-login-form-panel {
        padding: 28px 16px;
    }
}

/* ============================================================
   OTP PAGE
   ============================================================ */

.soc-otp-page {
    display: flex;
    min-height: 100vh;
    font-family: inherit;
}

/* ---- Left Panel ---- */
.soc-otp-hero {
    flex: 0 0 48%;
    background: linear-gradient(160deg, #0b1d3a 0%, #132d55 55%, #0e2448 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 56px;
}

.soc-otp-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(232, 112, 25, 0.07);
    pointer-events: none;
}

.soc-otp-hero::after {
    content: '';
    position: absolute;
    bottom: -70px; left: -70px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(26, 184, 184, 0.06);
    pointer-events: none;
}

.soc-otp-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.soc-otp-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(232, 112, 25, 0.15);
    border: 1px solid rgba(232, 112, 25, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e87019;
    margin: 24px 0 28px;
}

.soc-otp-headline {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.soc-otp-subtext {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.soc-otp-email {
    color: #1ab8b8;
    font-weight: 700;
    font-style: normal;
}

/* Tip steps */
.soc-otp-tips {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.soc-otp-tip {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.soc-otp-tip-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(232, 112, 25, 0.2);
    border: 1px solid rgba(232, 112, 25, 0.4);
    color: #e87019;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero footer */
.soc-otp-hero-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.soc-otp-hero-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.18s;
}

.soc-otp-hero-footer a:hover {
    color: #fff;
}

/* ---- Right Form Panel ---- */
.soc-otp-form-panel {
    flex: 1 1 0;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.soc-otp-form-inner {
    width: 100%;
    max-width: 400px;
}

.soc-otp-form-top {
    text-align: center;
    margin-bottom: 36px;
}

.soc-otp-shield {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(11, 29, 58, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1d3a;
    margin: 0 auto 16px;
}

.soc-otp-form-top h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1d3a;
    margin: 0 0 8px;
}

.soc-otp-form-top p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.soc-otp-form-top p strong {
    color: #0b1d3a;
    display: block;
    margin-top: 4px;
}

/* Temp OTP notice */
.soc-otp-temp-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff8ed;
    border: 1px solid #f5c97a;
    color: #92580a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 7px;
    padding: 9px 14px;
    margin-bottom: 16px;
}

/* OTP digit boxes */
.soc-otp-boxes-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.soc-otp-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.soc-otp-box {
    width: 52px;
    height: 60px;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #0b1d3a;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.12s;
    box-sizing: border-box;
    caret-color: transparent;
}

.soc-otp-box:focus {
    border-color: #e87019;
    box-shadow: 0 0 0 3px rgba(232, 112, 25, 0.15);
    transform: scale(1.06);
}

.soc-otp-box.soc-otp-box--filled {
    border-color: #0b1d3a;
    background: #f0f4ff;
}

.soc-otp-dash {
    font-size: 22px;
    color: #cbd5e1;
    font-weight: 300;
    padding: 0 2px;
    user-select: none;
}

/* Submit button */
.soc-otp-actions {
    margin-bottom: 20px;
}

.soc-otp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #94a3b8;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: not-allowed;
    transition: all 0.2s;
    text-transform: uppercase;
}

.soc-otp-btn--ready {
    background: linear-gradient(135deg, #e87019 0%, #d4620f 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(232, 112, 25, 0.35);
}

.soc-otp-btn--ready:hover {
    background: linear-gradient(135deg, #d4620f 0%, #bf570d 100%);
    box-shadow: 0 6px 20px rgba(232, 112, 25, 0.45);
    transform: translateY(-1px);
}

/* Resend row */
.soc-otp-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}

.soc-otp-resend-text {
    color: #64748b;
}

.soc-resend-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: #e87019;
    cursor: pointer;
    transition: color 0.18s;
}

.soc-resend-btn:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.soc-resend-btn:not(:disabled):hover {
    text-decoration: underline;
}

.soc-resend-timer {
    font-weight: 400;
}

/* Expiry note */
.soc-otp-expire-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: #94a3b8;
}

/* ---- OTP Responsive ---- */
@media (max-width: 900px) {
    .soc-otp-page {
        flex-direction: column;
        min-height: auto;
    }

    .soc-otp-hero {
        flex: none;
        padding: 40px 28px;
        align-items: flex-start;
    }

    .soc-otp-headline {
        font-size: 22px;
    }

    .soc-otp-form-panel {
        padding: 40px 24px;
        align-items: flex-start;
    }

    .soc-otp-form-inner {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .soc-otp-box {
        width: 44px;
        height: 52px;
        font-size: 22px;
    }

    .soc-otp-form-panel {
        padding: 28px 16px;
    }
}

/* ============================================================
   FORGOT PASSWORD PAGE
   ============================================================ */

.soc-forgot-page {
    display: flex;
    min-height: 100vh;
    font-family: inherit;
}

/* ---- Left Panel ---- */
.soc-forgot-hero {
    flex: 0 0 48%;
    background: linear-gradient(160deg, #0b1d3a 0%, #132d55 55%, #0e2448 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 56px;
}

.soc-forgot-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(26, 184, 184, 0.07);
    pointer-events: none;
}

.soc-forgot-hero::after {
    content: '';
    position: absolute;
    bottom: -70px; left: -70px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(232, 112, 25, 0.06);
    pointer-events: none;
}

.soc-forgot-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.soc-forgot-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(26, 184, 184, 0.15);
    border: 1px solid rgba(26, 184, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ab8b8;
    margin: 24px 0 28px;
}

.soc-forgot-headline {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.soc-forgot-subtext {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Steps */
.soc-forgot-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
}

.soc-forgot-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.soc-forgot-step-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(26, 184, 184, 0.12);
    border: 1px solid rgba(26, 184, 184, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ab8b8;
}

.soc-forgot-step div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 3px;
}

.soc-forgot-step strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.soc-forgot-step span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: block;
}

/* Hero footer */
.soc-forgot-hero-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.soc-forgot-hero-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.18s;
}

.soc-forgot-hero-footer a:hover {
    color: #fff;
}

/* ---- Right Form Panel ---- */
.soc-forgot-form-panel {
    flex: 1 1 0;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.soc-forgot-form-inner {
    width: 100%;
    max-width: 400px;
}

.soc-forgot-form-top {
    text-align: center;
    margin-bottom: 32px;
}

.soc-forgot-lock-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(11, 29, 58, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1d3a;
    margin: 0 auto 16px;
}

.soc-forgot-form-top h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1d3a;
    margin: 0 0 8px;
}

.soc-forgot-form-top p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Field */
.soc-forgot-field {
    margin-bottom: 20px;
}

.soc-forgot-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 7px;
}

.soc-forgot-field label svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.soc-forgot-input {
    width: 100%;
    padding: 10px 14px !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background: #fff !important;
    box-sizing: border-box !important;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.soc-forgot-input::placeholder {
    color: #9ca3af !important;
}

.soc-forgot-input:focus {
    border-color: #0033cc !important;
    box-shadow: 0 0 0 3px rgba(0,51,204,0.10) !important;
}

.soc-forgot-input.mage-error,
.soc-forgot-input._error {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

.soc-forgot-hint {
    margin-top: 7px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.5;
}

/* Send button */
.soc-forgot-actions {
    margin-bottom: 24px;
}

.soc-forgot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #0b1d3a 0%, #132d55 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(11, 29, 58, 0.3);
    text-transform: uppercase;
}

.soc-forgot-btn:hover {
    background: linear-gradient(135deg, #132d55 0%, #1a3d6e 100%);
    box-shadow: 0 6px 22px rgba(11, 29, 58, 0.4);
    transform: translateY(-1px);
}

.soc-forgot-btn:active {
    transform: translateY(0);
}

/* Divider */
.soc-forgot-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 12px;
    margin-bottom: 20px;
}

.soc-forgot-divider::before,
.soc-forgot-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.soc-forgot-divider span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

/* Bottom links */
.soc-forgot-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.soc-back-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 24px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1d3a;
    text-decoration: none;
    background: #fff;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    transition: border-color 0.18s, background 0.18s;
}

.soc-back-login-btn:hover {
    border-color: #0b1d3a;
    background: #f8fafc;
}

.soc-create-account-link {
    font-size: 13px;
    color: #e87019;
    font-weight: 600;
    text-decoration: none;
}

.soc-create-account-link:hover {
    text-decoration: underline;
}

/* ---- Forgot Responsive ---- */
@media (max-width: 900px) {
    .soc-forgot-page {
        flex-direction: column;
        min-height: auto;
    }

    .soc-forgot-hero {
        flex: none;
        padding: 40px 28px;
        align-items: flex-start;
    }

    .soc-forgot-headline {
        font-size: 22px;
    }

    .soc-forgot-form-panel {
        padding: 40px 24px;
        align-items: flex-start;
    }

    .soc-forgot-form-inner {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .soc-forgot-hero {
        padding: 32px 20px;
    }

    .soc-forgot-form-panel {
        padding: 28px 16px;
    }

}

/* ============================================================
   SOC SIDEBAR NAV — Steeloncall Brand
   ============================================================ */

/* Widen sidebar for new nav */
.page-layout-seller_portal .sidebar.sidebar-main {
    flex: 0 0 300px !important;
    width: 300px !important;
    margin-right: 14px;
}

/* ── Sidebar shell ──────────────────────────────────────────── */
.soc-sidebar-nav {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    padding-bottom: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #e8eaf0;
    position: sticky;
    top: 20px;
}

/* ── Header ─────────────────────────────────────────────────── */
.soc-sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px 16px;
    background: linear-gradient(135deg, #0f2860 0%, #1a3fd4 100%);
    border-bottom: none;
}
.soc-sidebar-brand a { display: flex; align-items: center; }
.soc-sidebar-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

/* Seller identity */
.soc-sidebar-identity {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
}
.soc-sidebar-avatar {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ff6600;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}
.soc-sidebar-identity-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.soc-sidebar-seller-name {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.soc-sidebar-seller-role {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    width: fit-content;
}

/* ── Group label ────────────────────────────────────────────── */
.soc-nav-group-label {
    padding: 12px 14px 3px;
    font-size: 9.5px;
    font-weight: 700;
    color: #b0b7c3;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

/* ── Nav list ───────────────────────────────────────────────── */
.soc-nav-list {
    list-style: none;
    padding: 2px 8px 4px;
    margin: 0;
}
.soc-nav-list--bottom {
    padding-top: 0;
}

/* ── Nav item ───────────────────────────────────────────────── */
.soc-nav-item {
    margin-bottom: 1px;
}
.soc-nav-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #5a6272;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.13s, color 0.13s;
}
.soc-nav-link:hover {
    background: #f0f4ff;
    color: #1a3fd4;
    text-decoration: none !important;
}
.soc-nav-link:hover .soc-nav-icon { color: #1a3fd4; }

/* Active — filled pill */
.soc-nav-item--active .soc-nav-link {
    background: #1a3fd4;
    color: #fff;
    font-weight: 600;
}
.soc-nav-item--active .soc-nav-link::before { display: none; }
.soc-nav-item--active .soc-nav-icon { color: #fff; }

/* ── Icon ───────────────────────────────────────────────────── */
.soc-nav-icon {
    flex: 0 0 16px;
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color 0.13s;
}
.soc-nav-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Divider ────────────────────────────────────────────────── */
.soc-nav-divider {
    height: 1px;
    background: #f0f2f7;
    margin: 8px 12px;
}

/* ── Logout ─────────────────────────────────────────────────── */
.soc-nav-item--logout {
    margin-bottom: 32px;
}
.soc-nav-item--logout .soc-nav-link {
    color: #e53935;
}
.soc-nav-item--logout .soc-nav-icon {
    color: #e53935;
    opacity: 0.75;
}
.soc-nav-item--logout .soc-nav-link:hover {
    background: #fff5f5;
    color: #c62828;
}
.soc-nav-item--logout .soc-nav-link:hover .soc-nav-icon {
    color: #c62828;
    opacity: 1;
}

/* ============================================================
   SOC DASHBOARD — Cards, KPI, Orders Table
   ============================================================ */

.soc-dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Welcome banner */
.soc-dash-banner {
    background: #fff;
    border: 1px solid #e8edf8;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,51,204,0.07);
    border-left: 4px solid #0033cc;
}

.soc-dash-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.soc-dash-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0033cc;
    border: 2px solid #e8efff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.soc-dash-greeting {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 3px;
}

.soc-dash-seller-name {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.soc-dash-banner-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.soc-dash-bstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.soc-dash-bstat-div {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
}

.soc-dash-bstat-num {
    font-size: 24px;
    font-weight: 700;
    color: #0033cc;
    line-height: 1.1;
}

.soc-dash-bstat-lbl {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* KPI card grid */
.soc-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.soc-kpi-card {
    border-radius: 12px;
    padding: 20px 20px 18px;
    text-decoration: none !important;
    display: block;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.soc-kpi-card::after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    opacity: 0.10;
    background: currentColor;
}

.soc-kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    text-decoration: none !important;
}

.soc-kpi-blue   { background: #e8efff; color: #0033cc; }
.soc-kpi-green  { background: #e6f9f0; color: #0a7a44; }
.soc-kpi-indigo { background: #eeeaff; color: #4b2de0; }
.soc-kpi-orange { background: #fff3e8; color: #cc5500; }
.soc-kpi-teal   { background: #e5f6f8; color: #0d7a85; }
.soc-kpi-red    { background: #ffecea; color: #b81c1c; }

.soc-kpi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.soc-kpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc-kpi-trend {
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 2px 10px;
    letter-spacing: 0.3px;
}

.soc-kpi-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.soc-kpi-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Recent orders card */
.soc-dash-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    overflow: hidden;
    border: 1px solid #dde1f0;
}

.soc-dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.soc-dash-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0033cc;
}

.soc-dash-card-title h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #0a1628;
}

.soc-view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: #0033cc;
    text-decoration: none;
    padding: 5px 12px;
    border: 1.5px solid #0033cc;
    border-radius: 20px;
    transition: background 0.15s, color 0.15s;
}

.soc-view-all-link:hover {
    background: #0033cc;
    color: #fff;
    text-decoration: none;
}

.soc-table-scroll {
    overflow-x: auto;
}

/* ── Global table header (all seller portal pages) ─────────── */
.page-layout-seller_portal table thead tr,
.soc-products-page table thead tr {
    background: #e8f4f8;
}
.page-layout-seller_portal table th,
.soc-products-page table th {
    color: #1a5f7a;
    border-bottom: 2px solid #b8dcea;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    white-space: nowrap;
}

.soc-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.soc-orders-table thead tr {
    background: #e8f4f8;
}

.soc-orders-table th {
    padding: 13px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #1a5f7a;
    border-bottom: 2px solid #b8dcea;
    white-space: nowrap;
}
.soc-orders-table th:first-child { border-radius: 8px 0 0 0; }
.soc-orders-table th:last-child  { border-radius: 0 8px 0 0; }

.soc-orders-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    vertical-align: middle;
}

.soc-orders-table tbody tr:hover {
    background: #f9fbff;
}

.soc-orders-table tbody tr:last-child td {
    border-bottom: none;
}

.soc-order-id {
    font-weight: 700;
    color: #0033cc;
    font-size: 15px;
}

.soc-cell-muted {
    color: #6b7280;
}

.soc-cell-bold {
    font-weight: 700;
    color: #111827;
}

.soc-cell-earn {
    font-weight: 700;
    color: #0a7a44;
}

/* Status badges */
.soc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.soc-badge--paid,
.soc-badge--success {
    background: #e8f5e9;
    color: #27ae60;
}

.soc-badge--pending {
    background: #fff3e8;
    color: #b85c00;
}

.soc-badge--approved {
    background: #e8f5e9;
    color: #27ae60;
}

.soc-badge--rejected {
    background: #fdecea;
    color: #e53935;
}

.soc-badge--processing {
    background: #e3f2fd;
    color: #1565c0;
}

.soc-badge--warning {
    background: #fff8e1;
    color: #f57f17;
}

.soc-badge--info {
    background: #e3f2fd;
    color: #1565c0;
}

.soc-badge--danger {
    background: #fdecea;
    color: #e53935;
}

.soc-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #1a3c6b;
    border: 1.5px solid #e0e6ef;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

.soc-icon-btn:hover {
    background: #1a3c6b;
    color: #fff;
    border-color: #1a3c6b;
}

.soc-icon-btn--pdf { color: #c0392b; border-color: #fde0de; }
.soc-icon-btn--pdf:hover { background: #c0392b; color: #fff; border-color: #c0392b; }

/* View button */
.soc-view-btn {
    display: inline-block;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #0033cc;
    border-radius: 6px;
    color: #0033cc;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.soc-view-btn:hover {
    background: #0033cc;
    color: #fff;
    text-decoration: none;
}

/* Empty state */
.soc-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 24px;
    color: #9ca3af;
    gap: 14px;
    text-align: center;
}

.soc-empty-state p {
    font-size: 14px;
    margin: 0;
    max-width: 320px;
}

/* Dashboard responsive */
@media (max-width: 900px) {
    .soc-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .soc-dash-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .soc-dash-banner-stats {
        align-self: stretch;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .soc-sidebar-nav {
        border-radius: 8px;
        position: static;
    }

    .soc-sidebar-brand {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 14px 16px;
    }

    .soc-sidebar-brand-sub {
        margin-top: 0;
        margin-left: 6px;
    }

    .soc-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .soc-dash-bstat {
        padding: 0 14px;
    }

    .soc-dash-bstat-num {
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .soc-kpi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .soc-kpi-value {
        font-size: 22px;
    }

    .soc-dash-banner {
        padding: 18px 18px;
    }

    .soc-dash-banner-stats {
        gap: 0;
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================================================
   PRODUCTS PAGE — Page Header, Tabs, Table extensions
   ============================================================ */

/* Page header */
.soc-products-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.soc-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.soc-page-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.soc-page-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #e8efff;
    color: #0033cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-page-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 2px;
    line-height: 1.2;
}

.soc-page-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.soc-page-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Shared button styles */
.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
    border: none;
    white-space: nowrap;
}

.soc-btn--primary {
    background: #2563eb;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(37,99,235,0.22);
}

.soc-btn--primary:hover {
    background: #1d4ed8;
    box-shadow: 0 5px 16px rgba(37,99,235,0.30);
    transform: translateY(-1px);
    color: #fff !important;
}

.soc-btn--outline {
    background: #fff;
    color: #374151 !important;
    border: 1.5px solid #d1d5db;
}

.soc-btn--outline:hover {
    border-color: #0033cc;
    color: #0033cc !important;
    background: #f0f4ff;
    transform: translateY(-1px);
}

/* Tab Bar */
.soc-tab-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #e8edf8;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.soc-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.soc-tab:hover {
    background: #f3f4f6;
    color: #374151;
    text-decoration: none !important;
}

.soc-tab--active {
    background: #e8efff;
    color: #0033cc;
    font-weight: 700;
}

.soc-tab-count {
    font-size: 12px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
}

.soc-tab-count--default { background: #f3f4f6; color: #6b7280; }
.soc-tab-count--green   { background: #dcfce7; color: #15803d; }
.soc-tab-count--amber   { background: #fef3c7; color: #b45309; }
.soc-tab-count--red     { background: #fee2e2; color: #dc2626; }

/* Product table specifics */
.soc-products-table .soc-product-sku {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #374151;
    background: #f3f4f6;
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-block;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.soc-special-price {
    color: #0a7a44;
    font-weight: 600;
}

.soc-qty-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    min-width: 28px;
    text-align: center;
}

.soc-qty-badge--in  { background: #e6f9f0; color: #0a7a44; }
.soc-qty-badge--out { background: #fee2e2; color: #dc2626; }

.soc-type-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: #f0f4ff;
    color: #0033cc;
    text-transform: capitalize;
}

/* Status pills (replaces old status-badge) */
.soc-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.soc-status-pill--approved  { background: #dcfce7; color: #15803d; }
.soc-status-pill--pending   { background: #fef3c7; color: #b45309; }
.soc-status-pill--rejected,
.soc-status-pill--disapproved { background: #fee2e2; color: #dc2626; }
.soc-status-pill--default   { background: #f3f4f6; color: #6b7280; }

/* Pager */
.soc-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
}

.soc-pager-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.soc-pager-item:hover {
    background: #f0f4ff;
    border-color: #0033cc;
    color: #0033cc;
    text-decoration: none;
}

.soc-pager-item--current {
    background: #0033cc;
    border-color: #0033cc;
    color: #fff;
    font-weight: 700;
}

.soc-pager-nav {
    font-size: 18px;
    font-weight: 400;
    min-width: 34px;
    color: #374151;
}

.soc-pager-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    font-size: 14px;
    color: #9ca3af;
    letter-spacing: 1px;
    user-select: none;
}

/* ============================================================
   FULL-PAGE WRAPPER + TOP NAV (products page, 1-column layout)
   ============================================================ */

.soc-fullpage-wrap {
    margin: -20px -20px 0;
}

/* Suppress Magento page title on full-page seller pages */
.page-layout-1column .soc-fullpage-wrap ~ .page-title-wrapper,
.page-layout-1column .page-title-wrapper:has(+ .soc-fullpage-wrap) {
    display: none;
}

/* Top navigation bar */
.soc-topnav {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e8edf8;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 0 28px;
    height: 54px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.soc-topnav-brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
    margin-right: 28px;
}

.soc-topnav-steel {
    font-size: 18px;
    font-weight: 900;
    color: #0033cc;
    letter-spacing: 1.5px;
}

.soc-topnav-oncall {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    letter-spacing: 0.5px;
}

.soc-topnav-oncall em {
    font-style: normal;
    color: #ff6600;
}

.soc-topnav-sep {
    color: #d1d5db;
    font-weight: 300;
    font-size: 18px;
}

.soc-topnav-portal {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.soc-topnav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.soc-topnav-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.soc-topnav-link:hover {
    background: #f3f4f6;
    color: #374151;
    text-decoration: none !important;
}

.soc-topnav-link--active {
    background: #e8efff;
    color: #0033cc;
    font-weight: 700;
}

.soc-topnav-logout {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #dc2626;
    text-decoration: none !important;
    transition: background 0.15s;
    flex-shrink: 0;
}

.soc-topnav-logout:hover {
    background: #fef2f2;
    text-decoration: none !important;
}

/* Products page content area padding under top nav */
.soc-fullpage-wrap .soc-products-page {
    padding: 28px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive for products page */
@media (max-width: 768px) {
    .soc-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .soc-page-header-actions {
        width: 100%;
    }

    .soc-btn {
        flex: 1;
        justify-content: center;
    }

    .soc-products-table .soc-product-sku {
        max-width: 160px;
    }
}

/* ============================================================
   IMPORT / EXPORT PAGE
   ============================================================ */

.soc-import-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .soc-import-grid { grid-template-columns: 1fr; }
}

/* Card shell */
.soc-import-card {
    background: #fff;
    border: 1px solid #e8edf8;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,51,204,0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card header row */
.soc-import-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f4ff;
}

.soc-import-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8efff;
    color: #0033cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-import-card-icon--export {
    background: #e6f9f0;
    color: #0a7a44;
}

.soc-import-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 3px;
}

.soc-import-card-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Drop zone */
.soc-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8faff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
    position: relative;
}

.soc-dropzone:hover,
.soc-dropzone--over {
    border-color: #0033cc;
    background: #eef2ff;
}

.soc-dropzone--selected {
    border-color: #0a7a44;
    background: #f0fdf6;
}

.soc-dropzone-icon {
    color: #9ca3af;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.soc-dropzone:hover .soc-dropzone-icon,
.soc-dropzone--over .soc-dropzone-icon {
    color: #0033cc;
}

.soc-dropzone--selected .soc-dropzone-icon {
    color: #0a7a44;
}

.soc-dropzone-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.soc-dropzone-sub {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.soc-dropzone-browse {
    color: #0033cc;
    font-weight: 600;
    text-decoration: underline;
}

.soc-dropzone-hint {
    font-size: 12px;
    color: #9ca3af;
    margin: 4px 0 0;
    font-style: italic;
}

.soc-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* CSV column guide */
.soc-csv-guide {
    background: #f8faff;
    border: 1px solid #e8edf8;
    border-radius: 8px;
    padding: 12px 14px;
}

.soc-csv-guide-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.soc-csv-cols {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.soc-csv-col {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: 700;
    background: #e8efff;
    color: #0033cc;
    padding: 3px 10px;
    border-radius: 4px;
}

/* Full-width button modifier */
.soc-btn--full {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
}

/* Export button style */
.soc-btn--export {
    background: #0a7a44;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(10,122,68,0.22);
}

.soc-btn--export:hover {
    background: #086637;
    box-shadow: 0 4px 14px rgba(10,122,68,0.3);
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none !important;
}

/* Export radio option cards */
.soc-export-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.soc-export-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: #fff;
    position: relative;
}

.soc-export-option:hover {
    border-color: #0033cc;
    background: #f8faff;
}

.soc-export-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.soc-export-radio:checked ~ .soc-export-option-label {
    color: #0033cc;
    font-weight: 600;
}

/* highlight the whole card when radio is checked */
.soc-export-option:has(.soc-export-radio:checked) {
    border-color: #0033cc;
    background: #eef2ff;
}

.soc-export-option-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-export-option-icon--blue  { background: #e8efff; color: #0033cc; }
.soc-export-option-icon--green { background: #dcfce7; color: #15803d; }
.soc-export-option-icon--amber { background: #fef3c7; color: #b45309; }

.soc-export-option-label {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.soc-export-option-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.soc-export-option:has(.soc-export-radio:checked) .soc-export-option-check {
    background: #0033cc;
    border-color: #0033cc;
    color: #fff;
}

/* Export note */
.soc-export-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
    background: #f8faff;
    border: 1px solid #e8edf8;
    border-radius: 8px;
    padding: 10px 14px;
}

/* ============================================================
   PROFILE PAGE
   ============================================================ */

/* Profile header banner */
.soc-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border: 1px solid #e8edf8;
    border-left: 4px solid #0033cc;
    border-radius: 14px;
    padding: 20px 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,51,204,0.07);
}

.soc-profile-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.soc-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0033cc;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #e8efff;
}

.soc-profile-header-info .soc-page-title { margin-bottom: 2px; }

.soc-profile-header-actions {
    flex-shrink: 0;
}

/* Two-column grid */
.soc-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 900px) {
    .soc-profile-grid { grid-template-columns: 1fr; }
}

.soc-profile-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form card */
.soc-form-card {
    background: #fff;
    border: 1px solid #dde1f0;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    overflow: clip; /* clip keeps border-radius clipping but doesn't affect select text rendering */
}

.soc-form-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-bottom: 1px solid #f0f4ff;
    background: #fafbff;
}

.soc-form-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e8efff;
    color: #0033cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-form-card-icon--amber  { background: #fef3c7; color: #b45309; }
.soc-form-card-icon--green  { background: #dcfce7; color: #15803d; }
.soc-form-card-icon--purple { background: #f3e8ff; color: #7c3aed; }

.soc-form-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.soc-form-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 2-column grid variant for address forms */
.soc-form-body--2col {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 14px 16px;
}
.soc-form-body--2col > .soc-field {
    min-width: 0;
    overflow: hidden;
}
.soc-form-body--2col .soc-field--full {
    grid-column: 1 / -1;
    overflow: visible;
}
@media (max-width: 700px) {
    .soc-form-body--2col { grid-template-columns: minmax(0,1fr); }
    .soc-form-body--2col .soc-field--full { grid-column: 1; }
}

/* Field row */
.soc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.soc-field-row--half {
    grid-template-columns: 1fr;
    max-width: 50%;
}

@media (max-width: 600px) {
    .soc-field-row { grid-template-columns: 1fr; }
    .soc-field-row--half { max-width: 100%; }
}

.soc-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.soc-field-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.soc-field-lock {
    color: #d1d5db;
}

/* Input base */
.soc-input {
    width: 100%;
    padding: 10px 14px !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #111827 !important;
    background: #fff !important;
    outline: none !important;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box !important;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.soc-input:focus {
    border-color: #0033cc !important;
    box-shadow: 0 0 0 3px rgba(0,51,204,0.10) !important;
    outline: none !important;
}

.soc-input::placeholder {
    color: #9ca3af !important;
    font-weight: 400;
}

.soc-input--readonly {
    background: #f9fafb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
    border-color: #e5e7eb !important;
}

/* Select wrapper — arrow via ::after, select has no right padding interference */
.soc-select-wrap {
    position: relative;
    display: block;
    min-width: 0;
}
/* Override soc-input padding so the wrapper doesn't add extra height */
.soc-select-wrap.soc-input {
    padding: 0 !important;
}
.soc-select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
}
.soc-select-wrap select {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    height: auto !important;
    padding: 10px 30px 10px 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    cursor: pointer;
    display: block;
}

/* Select elements using soc-input outside of wrapper (legacy) */
select.soc-input {
    -webkit-appearance: menulist !important;
    appearance: auto !important;
    background-image: none !important;
    padding-right: 14px !important;
    min-width: 0 !important;
    width: 100% !important;
    cursor: pointer;
}

.soc-input--mono {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.5px;
}

/* Input with prefix icon */
.soc-input-prefix-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.soc-input-prefix {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    pointer-events: none;
    flex-shrink: 0;
}

.soc-input-prefix--fb { color: #1877f2; }
.soc-input-prefix--tw { color: #1da1f2; }

.soc-input--prefixed {
    padding-left: 40px;
}

/* Profile save bar */
.soc-profile-save-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid #e8edf8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.soc-profile-save-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

/* ===== PROFILE FIELDS GRID ===== */
.soc-profile-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* Required asterisk */
.soc-required {
    color: #ef4444;
    font-size: 13px;
}

/* About field — full width */
.soc-field--about {
    width: 100%;
}

.soc-field-label--about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.soc-about-counter {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    white-space: nowrap;
}

.soc-about-counter strong {
    color: #4b63c9;
}

/* Textarea */
.soc-textarea {
    width: 100%;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-family: inherit;
    color: #111827 !important;
    background: #fff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box !important;
    outline: none !important;
}

.soc-textarea:focus {
    outline: none !important;
    border-color: #0033cc !important;
    box-shadow: 0 0 0 3px rgba(0,51,204,0.10) !important;
    background: #fff !important;
}

/* Address two-column grid */
.soc-addr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.soc-addr-grid form {
    display: contents;
}

/* Form card footer */
.soc-form-card-footer {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

/* Small button variant */
.soc-btn--sm {
    padding: 8px 18px;
    font-size: 13.5px;
}

/* Responsive: stack on small screens */
@media (max-width: 860px) {
    .soc-profile-fields-grid {
        grid-template-columns: 1fr;
    }
    .soc-addr-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ACCOUNT SETTINGS PAGE
   ============================================================ */

/* Two-column grid for settings cards */
.soc-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Password field with show/hide toggle */
.soc-pw-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.soc-pw-wrap .soc-input {
    padding-right: 42px;
    width: 100%;
}

.soc-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.soc-pw-toggle:hover { color: #4b63c9; }

/* Password hint */
.soc-pw-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 4px;
    padding: 10px 14px;
    background: #f8faff;
    border-radius: 8px;
    border: 1px solid #e8edf8;
}

/* Vacation Mode info */
.soc-vacation-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 12px;
    padding: 10px 14px;
    background: #fffbf0;
    border-radius: 8px;
    border: 1px solid #fde68a;
}

/* Toggle switch */
.soc-vacation-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.soc-toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
}

.soc-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.soc-toggle-slider {
    position: absolute;
    inset: 0;
    background: #e2e8f0;
    border-radius: 26px;
    transition: background 0.2s;
}

.soc-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.soc-toggle-switch input:checked + .soc-toggle-slider {
    background: #4b63c9;
}

.soc-toggle-switch input:checked + .soc-toggle-slider::before {
    transform: translateX(22px);
}

.soc-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 860px) {
    .soc-settings-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SELLER PORTAL FOOTER — dark navy design
   ============================================================ */

/* Hide the default Magento footer content and absolute footer on seller portal pages */
.page-layout-seller_portal .footer.content,
.page-layout-seller_portal .footer.content *,
.page-layout-seller_portal .page-wrapper > .page-bottom,
.page-layout-seller_portal .page-title-wrapper {
    display: none !important;
}

/* Root footer element */
.soc-site-footer {
    background: #0b0b40;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.6;
    padding: 0;
    width: 100%;
}

/* ---- Contact Bar ---- */
.soc-ftr-contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 22px 40px;
    flex-wrap: wrap;
}

.soc-ftr-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 32px;
    flex: 1;
    min-width: 200px;
}

.soc-ftr-contact-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.soc-ftr-contact-item span {
    display: block;
    font-size: 14px;
    color: #a5b4c8;
    margin-top: 2px;
}

.soc-ftr-contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #a5b4c8;
}

.soc-ftr-contact-icon--teal { color: #4dd0e1; }
.soc-ftr-contact-icon--green { color: #4caf50; }
.soc-ftr-contact-icon--orange { color: #ff9800; }

.soc-ftr-contact-sep {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ---- Dividers ---- */
.soc-ftr-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0 40px;
}

.soc-ftr-divider--thin {
    margin: 0 40px;
    opacity: 0.5;
}

/* ---- Categories ---- */
.soc-ftr-categories {
    padding: 24px 40px;
}

.soc-ftr-cat-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.soc-ftr-cat-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 160px;
}

.soc-ftr-cat-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.soc-ftr-cat-links a {
    color: #9ca8c0;
    text-decoration: none;
    transition: color 0.2s;
}

.soc-ftr-cat-links a:hover { color: #fff; }

.soc-ftr-cat-links span {
    color: rgba(255,255,255,0.2);
    user-select: none;
}

/* ---- Main Footer Grid ---- */
.soc-ftr-main {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 32px 40px;
    align-items: start;
}

/* Brand column */
.soc-ftr-brand {}

.soc-ftr-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.soc-ftr-logo {
    height: 48px;
    width: auto;
}

.soc-ftr-logo-text {
    align-items: center;
    gap: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.soc-ftr-logo-steel { color: #fff; }
.soc-ftr-logo-oncall em { font-style: normal; color: #ff6600; }

.soc-ftr-company-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.soc-ftr-tagline {
    font-size: 13.5px;
    color: #8a96b0;
    margin: 0 0 16px;
}

.soc-ftr-address strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.soc-ftr-address p {
    font-size: 13.5px;
    color: #8a96b0;
    margin: 0 0 4px;
    line-height: 1.5;
}

.soc-ftr-copyright {
    font-size: 13px;
    color: #6b7489;
    margin: 16px 0 0;
    line-height: 1.5;
}

/* Download App column */
.soc-ftr-col-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 14px;
}

.soc-ftr-col-heading--social {
    margin-top: 22px;
}

.soc-ftr-app-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.soc-ftr-app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.soc-ftr-app-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.soc-ftr-app-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.soc-ftr-app-btn small {
    font-size: 11.5px;
    color: #9ca8c0;
}

.soc-ftr-app-btn strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* Social icons */
.soc-ftr-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.soc-ftr-social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #9ca8c0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.soc-ftr-social-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Links columns */
.soc-ftr-links-col {}

.soc-ftr-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soc-ftr-links-list li {
    margin-bottom: 8px;
}

.soc-ftr-links-list a {
    color: #9ca8c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.soc-ftr-links-list a:hover { color: #fff; }

/* ---- Payment Options ---- */
.soc-ftr-payments {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.soc-ftr-pay-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-shrink: 0;
    margin-right: 8px;
}

.soc-ftr-pay-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.soc-ftr-pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.soc-ftr-pay-badge--visa { letter-spacing: 1px; font-style: italic; }
.soc-ftr-pay-badge--amex { letter-spacing: 0.5px; }
.soc-ftr-pay-badge--rupay { color: #ff9800; }
.soc-ftr-pay-badge--mc { padding: 3px 8px; }
.soc-ftr-pay-badge--bank { color: #a5b4c8; }

/* ---- Why SteelonCall ---- */
.soc-ftr-why {
    padding: 24px 40px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.soc-ftr-why-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 12px;
}

.soc-ftr-why p {
    font-size: 14px;
    color: #8a96b0;
    margin: 0 0 10px;
    max-width: 1100px;
    line-height: 1.65;
}

.soc-ftr-reach {
    margin-top: 16px !important;
    font-size: 15px !important;
    color: #fff !important;
    letter-spacing: 0.5px;
}

/* ---- Footer responsive ---- */
@media (max-width: 1024px) {
    .soc-ftr-main {
        grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    }
    .soc-ftr-links-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .soc-ftr-contact-bar {
        flex-direction: column;
        padding: 16px 20px;
        gap: 0;
    }
    .soc-ftr-contact-sep { display: none; }
    .soc-ftr-contact-item { padding: 10px 0; width: 100%; }
    .soc-ftr-categories,
    .soc-ftr-main,
    .soc-ftr-payments,
    .soc-ftr-why { padding-left: 20px; padding-right: 20px; }
    .soc-ftr-main { grid-template-columns: 1fr 1fr; }
    .soc-ftr-brand { grid-column: 1 / -1; }
    .soc-ftr-app { grid-column: 1 / -1; }
    .soc-ftr-cat-heading { min-width: 100%; margin-bottom: 6px; }
    .soc-ftr-divider { margin: 0 20px; }
}

/* =============================================================
   ADD FROM CATALOG PAGE
   ============================================================= */

/* ---- Layout container ---- */
.soc-catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* ---- Shared panel styles ---- */
.soc-catalog-panel {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    overflow: hidden;
}

.soc-catalog-panel-hdr {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: #f7f8fa;
    border-bottom: 1px solid #e8eaed;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Category Tree ---- */
.soc-cat-tree {
    padding: 8px 0;
}

.soc-cat-group {
    border-bottom: 1px solid #f3f4f6;
}
.soc-cat-group:last-child { border-bottom: none; }

.soc-cat-top {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    transition: background 0.15s;
}
.soc-cat-top:hover { background: #f9fafb; }
.soc-cat-top.is-open { color: #1e40af; background: #eff6ff; }
.soc-cat-top svg:first-child { color: #6b7280; flex-shrink: 0; }
.soc-cat-top.is-open svg:first-child { color: #1e40af; }
.soc-cat-top span { flex: 1; }

.soc-cat-chevron {
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s;
    color: #9ca3af;
}
.soc-cat-top.is-open .soc-cat-chevron { transform: rotate(180deg); }

.soc-cat-children {
    padding: 0 0 6px 0;
}

.soc-cat-child {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 7px 16px 7px 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12.5px;
    color: #4b5563;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
}
.soc-cat-child svg { color: #d1d5db; flex-shrink: 0; }
.soc-cat-child:hover { background: #f3f4f6; color: #1f2937; }
.soc-cat-child.is-active {
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 600;
}
.soc-cat-child.is-active svg { color: #1d4ed8; }

/* ---- Location Panel ---- */
.soc-loc-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.soc-loc-col {
    border-right: 1px solid #f0f0f0;
}
.soc-loc-col:last-child { border-right: none; }

.soc-loc-col-hdr {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.soc-loc-sel-all,
.soc-loc-sel-none {
    margin-left: auto;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 11px;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s;
}
.soc-loc-sel-all { margin-left: auto; }
.soc-loc-sel-none { margin-left: 4px; }
.soc-loc-sel-all:hover { background: #e0f2fe; border-color: #38bdf8; color: #0369a1; }
.soc-loc-sel-none:hover { background: #fee2e2; border-color: #fca5a5; color: #b91c1c; }

.soc-loc-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}
.soc-loc-search svg { color: #9ca3af; flex-shrink: 0; }
.soc-loc-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 12px;
    color: #374151;
    background: transparent;
}
.soc-loc-search input::placeholder { color: #9ca3af; }

.soc-loc-list {
    max-height: 240px;
    overflow-y: auto;
    padding: 4px 0;
}
.soc-loc-list::-webkit-scrollbar { width: 4px; }
.soc-loc-list::-webkit-scrollbar-track { background: transparent; }
.soc-loc-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }

.soc-loc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.1s;
}
.soc-loc-item:hover { background: #f9fafb; }
.soc-loc-item input[type="checkbox"] { display: none; }

.soc-chk-box {
    width: 15px;
    height: 15px;
    border: 1.5px solid #d1d5db;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    background: #fff;
}
.soc-loc-item input:checked + .soc-chk-box {
    background: #1d4ed8;
    border-color: #1d4ed8;
}
.soc-loc-item input:checked + .soc-chk-box::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}

.soc-loc-item-text {
    font-size: 12.5px;
    color: #374151;
    line-height: 1.3;
}

.soc-loc-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 30px 16px;
    color: #9ca3af;
    font-size: 12px;
    text-align: center;
}

/* ---- Product List Area ---- */
.soc-catalog-products-wrap {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    overflow: hidden;
}

.soc-catalog-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f7f8fa;
    border-bottom: 1px solid #e8eaed;
}

.soc-catalog-ph-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}

.soc-catalog-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    background: #1d4ed8;
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.soc-catalog-ph-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #9ca3af;
}

/* ---- Column header row ---- */
.soc-catalog-col-hdr {
    display: grid;
    grid-template-columns: 36px 1.7fr 1.2fr 1fr 0.9fr 0.75fr 0.75fr;
    gap: 0;
    padding: 0 16px;
    background: #f1f5f9;
    border-bottom: 2px solid #e2e8f0;
}

.soc-catalog-col {
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.soc-catalog-col--chk {
    display: flex;
    align-items: center;
    padding: 10px 4px;
}

/* ---- Row checkbox ---- */
.soc-row-chk-wrap {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.soc-row-chk-wrap input[type="checkbox"] { display: none; }
.soc-row-chk-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.soc-row-chk-wrap input:checked + .soc-row-chk-box {
    background: #1d4ed8;
    border-color: #1d4ed8;
}
.soc-row-chk-wrap input:checked + .soc-row-chk-box::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}

/* ---- Product rows ---- */
.soc-catalog-row {
    display: grid;
    grid-template-columns: 36px 1.7fr 1.2fr 1fr 0.9fr 0.75fr 0.75fr;
    gap: 0;
    padding: 0 16px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    transition: background 0.12s;
    position: relative;
}
.soc-catalog-row:hover { background: #f8fafc; }
.soc-catalog-row:nth-child(even) { background: #fafbfc; }
.soc-catalog-row:nth-child(even):hover { background: #f1f5f9; }
.soc-catalog-row:last-child { border-bottom: none; }
.soc-catalog-row:has(.soc-row-chk:checked) { background: #eff6ff !important; }

.soc-catalog-cell { padding: 8px 8px; }
.soc-catalog-cell--chk {
    display: flex;
    align-items: center;
    padding: 8px 4px;
}

.soc-prod-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}
.soc-prod-id {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 1px;
}

/* Inputs inside rows */
.soc-catalog-row .soc-input {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #1f2937;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 5px;
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.soc-catalog-row .soc-input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(29,78,216,0.1);
}
.soc-catalog-row .soc-input::placeholder { color: #cbd5e1; }

/* Empty state */
.soc-catalog-empty {
    padding: 48px 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    background: #fff;
}

/* ---- Searchable Combobox ---- */
.soc-combobox { position: relative; width: 100%; }
.soc-cb-input {
    width: 100%;
    cursor: text;
    padding-right: 28px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.soc-cb-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: 220px;
    overflow-y: auto;
    padding: 4px 0;
}
.soc-cb-dropdown::-webkit-scrollbar { width: 4px; }
.soc-cb-dropdown::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
.soc-cb-opt {
    padding: 7px 12px;
    font-size: 12.5px;
    color: #1f2937;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.1s;
}
.soc-cb-opt:hover,
.soc-cb-opt.is-focused { background: #eff6ff; color: #1d4ed8; }
.soc-cb-empty {
    padding: 8px 12px;
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
}

/* ---- Submit bar ---- */
.soc-catalog-submit-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 14px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.soc-catalog-submit-note {
    font-size: 12.5px;
    color: #64748b;
    margin-right: auto;
}

/* Spin animation */
@keyframes soc-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.soc-spin { animation: soc-spin 0.8s linear infinite; }

/* Responsive */
@media (max-width: 1024px) {
    .soc-catalog-layout { grid-template-columns: 200px 1fr; }
    .soc-catalog-col-hdr,
    .soc-catalog-row {
        grid-template-columns: 36px 1.5fr 1.1fr 1fr 0.9fr 0.7fr 0.7fr;
    }
}

@media (max-width: 768px) {
    .soc-catalog-layout { grid-template-columns: 1fr; }
    .soc-catalog-col-hdr { display: none; }
    .soc-catalog-row {
        grid-template-columns: 36px 1fr 1fr;
        gap: 8px;
        padding: 12px 14px;
    }
    .soc-catalog-cell--product { grid-column: 2 / -1; }
    .soc-catalog-cell--brand,
    .soc-catalog-cell--grade,
    .soc-catalog-cell--price,
    .soc-catalog-cell--qty,
    .soc-catalog-cell--discount { grid-column: 1 / -1; }
    .soc-catalog-submit-bar { flex-direction: column; align-items: stretch; }
    .soc-catalog-submit-bar .soc-btn { width: 100%; justify-content: center; }
    .soc-loc-columns { grid-template-columns: 1fr; }
    .soc-loc-col { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

/* ============================================================
   PRODUCT LIST REDESIGN (My Products)
   ============================================================ */

/* Category filter section */
.soc-pl-cat-section { display: flex; flex-direction: column; gap: 8px; }
.soc-pl-cat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.soc-pl-cat-card {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.soc-pl-cat-card:hover { border-color: #0033cc; background: #f0f4ff; box-shadow: 0 2px 8px rgba(0,51,204,0.08); }
.soc-pl-cat-card--active { border-color: #0033cc; background: #eff6ff; }
.soc-pl-cat-card--expanded { border-color: #0ea5e9; background: #f0f9ff; }

.soc-pl-cat-main {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 13px 16px;
    text-decoration: none;
    color: #1e3a5f;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.soc-pl-cat-main:hover { text-decoration: none; color: #0033cc; }
.soc-pl-cat-card--active .soc-pl-cat-main { color: #0033cc; }
.soc-pl-cat-name { flex: 1; }

.soc-pl-cat-expand {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 100%; min-height: 46px;
    background: none; border: none; border-left: 1px solid #e5e7eb;
    cursor: pointer; color: #0ea5e9;
    transition: background 0.12s, color 0.12s;
    flex-shrink: 0;
}
.soc-pl-cat-expand:hover { background: #e0f2fe; color: #0284c7; }
.soc-pl-cat-expand--open { background: #e0f2fe; color: #0284c7; transform: rotate(45deg); }
.soc-pl-cat-expand--open svg { transform: rotate(-45deg); }

/* Sub-category drawer */
@keyframes socFadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.soc-pl-subcat-drawer {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: #f0f4ff;
    border-radius: 10px;
    flex-wrap: wrap;
    overflow: hidden;
    animation: socFadeIn 0.18s ease;
    border: 1px solid #d0d9f5;
}
.soc-pl-subcat-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #0033cc;
    white-space: nowrap;
    background: #e0e8ff;
    border-right: 1px solid #c7d4f5;
    letter-spacing: 0.3px;
    align-self: stretch;
}
.soc-pl-subcat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 9px 14px;
    align-items: center;
}
.soc-pl-subcat-chip,
.soc-pl-subcat-chip:visited,
.soc-pl-subcat-chip:link {
    padding: 4px 14px;
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid #c7d4f5;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    display: inline-block;
}
.soc-pl-subcat-chip:hover {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
    text-decoration: none;
}
.soc-pl-subcat-chip--active,
.soc-pl-subcat-chip--active:visited,
.soc-pl-subcat-chip--active:link {
    background: #ff6600 !important;
    color: #fff !important;
    border-color: #ff6600 !important;
    font-weight: 700;
}
.soc-pl-subcat-chip--active:hover {
    background: #ea5a00 !important;
    border-color: #ea5a00 !important;
    text-decoration: none;
}

/* Action / price bar */
.soc-pl-card { padding: 0; overflow: visible; }
/* Keep rounded corners on inner sections instead */
.soc-pl-card > .soc-pl-cat-section,
.soc-pl-card > .soc-pl-price-bar,
.soc-pl-card > .soc-dash-card-header { overflow: hidden; }
.soc-pl-card > .soc-table-scroll { border-radius: 0 0 12px 12px; overflow-x: auto; }
/* Filter bar must allow dropdown to overflow */
.soc-pl-filter-bar { overflow: visible; position: relative; }
.soc-pl-filter-sel-wrap { position: relative; z-index: 100; }
.soc-pl-action-bar {
    padding: 14px 20px 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.soc-pl-price-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e8eaed;
    flex-wrap: nowrap;
}
.soc-pl-bar-sep {
    width: 1px;
    height: 28px;
    background: #d1d5db;
    flex-shrink: 0;
    margin: 0 4px;
}
.soc-pl-price-input {
    width: 90px;
    height: 38px;
    padding: 0 10px;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 13px;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.soc-pl-price-input:focus { border-color: #0033cc !important; box-shadow: 0 0 0 3px rgba(0,51,204,0.10); }

/* Shared btn variants for price bar */
.soc-btn--increase { background: #0ea5e9; color: #fff; border: none; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.soc-btn--increase:hover { background: #0284c7; }
.soc-btn--decrease { background: #0ea5e9; color: #fff; border: none; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.soc-btn--decrease:hover { background: #0284c7; }
.soc-btn--enable  { display: inline-flex; align-items: center; gap: 5px; background: #dcfce7; color: #15803d; border: 1px solid #86efac; padding: 7px 13px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.soc-btn--enable:hover  { background: #bbf7d0; }
.soc-btn--disable { display: inline-flex; align-items: center; gap: 5px; background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; padding: 7px 13px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.soc-btn--disable:hover { background: #fecaca; }
.soc-btn--dark { background: #111827; color: #fff; border: none; padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; }
.soc-btn--dark:hover { background: #1f2937; }

/* Product table */
.soc-pl-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.soc-pl-table thead tr {
    background: #e8f4f8;
}
.soc-pl-table th {
    padding: 13px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1a5f7a;
    white-space: nowrap;
    border-bottom: 2px solid #b8dcea;
}
.soc-pl-table th:first-child { border-radius: 8px 0 0 0; }
.soc-pl-table th:last-child  { border-radius: 0 8px 0 0; }
.soc-pl-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    vertical-align: middle;
}
.soc-pl-row:last-child td { border-bottom: none; }
.soc-pl-row:hover td { background: #fafbff; }
.soc-pl-row--checked td { background: #eff6ff !important; }

/* Column widths */
.soc-pl-th-check, td.soc-pl-td-check { width: 40px; }
.soc-pl-th-sno,   td.soc-pl-td-sno   { width: 50px; color: #9ca3af; }
.soc-pl-th-name,  td.soc-pl-td-name  { min-width: 160px; font-weight: 500; color: #111827; }
td.soc-pl-td-price, td.soc-pl-td-qty { white-space: nowrap; }

/* Checkbox */
.soc-pl-chk-wrap {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.soc-pl-chk-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.soc-pl-chk-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.12s, border-color 0.12s;
}
.soc-pl-chk-wrap input:checked + .soc-pl-chk-box {
    background: #0033cc;
    border-color: #0033cc;
}
.soc-pl-chk-wrap input:checked + .soc-pl-chk-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(42deg) translateY(-1px);
    display: block;
}

/* Edit button (pencil) */
.soc-pl-edit-btn {
    background: none;
    border: none;
    padding: 3px 4px;
    cursor: pointer;
    color: #0ea5e9;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transition: background 0.12s;
}
.soc-pl-edit-btn:hover { background: #e0f2fe; }

/* Inline edit wrapper */
.soc-pl-inline-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.soc-pl-inline-inp {
    width: 74px;
    height: 30px;
    border: 1.5px solid #0033cc;
    border-radius: 5px;
    font-size: 13px;
    padding: 0 6px;
    color: #111827;
    outline: none;
}
.soc-pl-inline-save,
.soc-pl-inline-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.soc-pl-inline-save   { background: #dcfce7; color: #15803d; }
.soc-pl-inline-save:hover   { background: #bbf7d0; }
.soc-pl-inline-cancel { background: #fee2e2; color: #dc2626; }
.soc-pl-inline-cancel:hover { background: #fecaca; }

/* Action buttons (delete, location, discount) */
.soc-pl-td-actions {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
}
.soc-pl-act-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, transform 0.12s;
    flex-shrink: 0;
}
.soc-pl-act-btn svg { display: block; width: 20px; height: 20px; flex-shrink: 0; }
.soc-pl-act-btn:hover { transform: scale(1.1); }
.soc-pl-act-btn--delete   { background: #fee2e2; color: #dc2626; }
.soc-pl-act-btn--delete:hover { background: #fca5a5; }
.soc-pl-act-btn--location { background: #dbeafe; color: #1d4ed8; }
.soc-pl-act-btn--location:hover { background: #bfdbfe; }
.soc-pl-act-btn--discount { background: #d1fae5; color: #059669; }
.soc-pl-act-btn--discount:hover { background: #a7f3d0; }
.soc-pl-del-form { display: inline-flex; }

/* Filter bar */
.soc-pl-filter-bar {
    background: #fff;
    padding: 14px 20px;
    border-top: 1px solid #e8eaed;
}
.soc-pl-filter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.soc-pl-prod-search {
    height: 38px;
    min-width: 220px;
    padding: 0 12px 0 36px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 10px center;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #111827;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.soc-pl-prod-search:focus { border-color: #0033cc; box-shadow: 0 0 0 3px rgba(0,51,204,0.10); }
.soc-pl-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}
.soc-pl-filter-sep {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
    margin: 0 4px;
}
.soc-pl-filter-sel-wrap {
    position: relative;
}
.soc-pl-filter-input {
    height: 38px;
    min-width: 180px;
    padding: 0 28px 0 12px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #111827;
    outline: none;
    cursor: text;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.soc-pl-filter-input:focus { border-color: #0033cc; box-shadow: 0 0 0 3px rgba(0,51,204,0.10); }
.soc-pl-filter-input::placeholder { color: #9ca3af; }
.soc-pl-filter-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 99999;
    max-height: 280px;
    overflow-y: auto;
}
.soc-pl-filter-opt {
    padding: 9px 12px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}
.soc-pl-filter-opt:hover { background: #eff6ff; color: #0033cc; }
.soc-pl-filter-opt--empty { color: #9ca3af; cursor: default; }
.soc-pl-filter-clear {
    color: #6b7280;
    font-size: 13px;
    text-decoration: underline;
}
.soc-pl-filter-clear:hover { color: #0033cc; }

/* ── Location Modal ────────────────────────────────────────── */
.soc-loc-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.soc-loc-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.soc-loc-modal-box {
    position: relative;
    background: #fff;
    border-radius: 14px;
    width: 680px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.soc-loc-modal-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 18px 24px 14px;
    border-bottom: 1px solid #f0f0f0;
}
.soc-loc-modal-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #dbeafe;
    color: #1d4ed8;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.soc-loc-modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    flex: 1;
}
.soc-loc-col-title {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2px;
}
.soc-loc-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
}
.soc-loc-modal-close:hover { background: #f3f4f6; color: #374151; }
.soc-loc-modal-body {
    padding: 20px 24px;
    overflow: auto;
    flex: 1;
}
.soc-loc-modal-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.soc-loc-modal-col { display: flex; flex-direction: column; gap: 8px; }
.soc-loc-col-search { }
.soc-loc-search-input {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #111827;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.soc-loc-search-input:focus { outline: none; border-color: #0033cc; box-shadow: 0 0 0 3px rgba(0,51,204,0.10); }
.soc-loc-search-input::placeholder { color: #9ca3af; }
.soc-loc-col-list {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px 0;
}
.soc-loc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13.5px;
    color: #374151;
}
.soc-loc-item:hover { background: #eff6ff; }
.soc-loc-item input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.soc-loc-chk-box {
    width: 17px;
    height: 17px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, border-color 0.12s;
}
.soc-loc-item input:checked ~ .soc-loc-chk-box {
    background: #0033cc;
    border-color: #0033cc;
}
.soc-loc-item input:checked ~ .soc-loc-chk-box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(42deg) translateY(-1px);
    display: block;
}
.soc-loc-item-name { flex: 1; }
.soc-loc-placeholder {
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    padding: 16px 0;
}
.soc-loc-modal-footer {
    padding: 14px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 768px) {
    .soc-pl-cat-cards { grid-template-columns: 1fr; }
    .soc-pl-price-bar { flex-wrap: wrap; }
    .soc-loc-modal-cols { grid-template-columns: 1fr; }
}
