header {
    background: #b68253;
    /* box-shadow:0 2px 4px rgba(0,0,0,.05); */
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.section {
    padding: 60px 0;
}




/* =============================
HERO
============================= */

.contact-hero {
    background: #5e2e7a;
    color: white;
    text-align: center;
    padding: 40px 20px;
    /* margin-top: 100px; */
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-hero p {
    opacity: .9;
}

/* =============================
GRID
============================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* =============================
FORM
============================= */

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Archivo';
    font-size: 14px;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    background: #ec3237;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #ec3237cc;
}

/* =============================
INFO CARDS
============================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.info-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.info-card p {
    margin: 0;
}

/* =============================
MAP
============================= */

.map-section {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* =============================
RESPONSIVE
============================= */

@media(max-width:992px) {

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

}

@media(max-width:576px) {

    .contact-hero h1 {
        font-size: 30px;
    }

    .section {
        padding: 40px 0;
    }

}

/* =============================
   WISHLIST PAGE - 2026 Premium
============================= */

/* Hero */
.wishlist-hero {
    background: linear-gradient(135deg, #811515 0%, #a63d2f 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.wishlist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.wishlist-hero-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 15px;
    display: block;
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.wishlist-hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px;
    font-family: 'Archivo', sans-serif;
}

.wishlist-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0;
}

/* Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    justify-content: center;
    gap: 12px;
}

/* Card */
.wishlist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wishlist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

/* Remove Button */
.wishlist-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wishlist-remove-btn:hover {
    background: #e53935;
    color: #fff;
    transform: rotate(90deg);
}

/* Image */
.wishlist-card-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f9f7f4;
}

.wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.wishlist-card:hover .wishlist-card-image img {
    transform: scale(1.08);
}

/* Body */
.wishlist-card-body {
    padding: 16px;
}

.wishlist-card-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.4;
    transition: color 0.2s;
}

.wishlist-card-name:hover {
    color: #a63d2f;
}

.wishlist-card-model {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stock Badge */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.stock-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-badge.out-stock {
    background: #fbe9e7;
    color: #c62828;
}

/* Price */
.wishlist-card-price {
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.wishlist-card-price .current-price {
    font-size: 19px;
    font-weight: 700;
    color: #a63d2f;
}

.wishlist-card-price .old-price {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

/* Add to Cart */
.wishlist-add-cart-btn {
    width: 100%;
    padding: 10px 16px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-add-cart-btn:hover {
    background: #a63d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(166, 61, 47, 0.3);
}

/* Empty State */
.wishlist-empty {
    text-align: center;
    padding: 80px 20px;
}

.wishlist-empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    color: #e91e63;
    animation: heartPulse 2s ease-in-out infinite;
}

.wishlist-empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.wishlist-empty p {
    color: #888;
    font-size: 15px;
}

/* Continue Button */
.wishlist-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-continue-wishlist {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: #f5f5f5;
    color: #333;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue-wishlist:hover {
    background: #222;
    color: #fff;
}

/* Wishlist Page Container */
.wishlist-page {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .wishlist-hero {
        padding: 35px 20px;
        border-radius: 14px;
        margin-bottom: 25px;
    }

    .wishlist-hero-title {
        font-size: 26px;
    }

    .wishlist-hero-icon {
        font-size: 36px;
    }

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

    .wishlist-card-image {
        height: 120px;
    }

    .wishlist-card-body {
        padding: 10px;
    }

    .wishlist-card-name {
        font-size: 14px;
    }

    .wishlist-card-price .current-price {
        font-size: 17px;
    }

    .wishlist-add-cart-btn {
        padding: 9px 12px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* =============================
   ACCOUNT SIDEBAR — 2026 Premium
============================= */

.account-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.account-sidebar-title {
    padding: 22px 24px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Archivo', sans-serif;
}

.account-sidebar-title i {
    color: #a63d2f;
    font-size: 20px;
}

/* Nav */
.account-nav {
    padding: 8px 0;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.account-nav-item:hover {
    background: #faf5f2;
    color: #a63d2f;
    border-left-color: #a63d2f;
}

.account-nav-item i:first-child {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #999;
    transition: color 0.25s ease;
}

.account-nav-item:hover i:first-child {
    color: #a63d2f;
}

.account-nav-item span {
    flex: 1;
}

.account-nav-arrow {
    font-size: 10px;
    color: #ccc;
    transition: transform 0.25s ease, color 0.25s ease;
}

.account-nav-item:hover .account-nav-arrow {
    color: #a63d2f;
    transform: translateX(3px);
}

/* Divider */
.account-nav-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 24px;
}

/* Logout */
.account-nav-logout {
    color: #c62828 !important;
}

.account-nav-logout i:first-child {
    color: #c62828 !important;
}

.account-nav-logout:hover {
    background: #fbe9e7 !important;
    border-left-color: #c62828 !important;
}

/* Active state */
.account-nav-item.active,
.account-nav-item[href*=wishlist]:focus {
    background: #faf5f2;
    color: #a63d2f;
    border-left-color: #a63d2f;
    font-weight: 600;
}

.account-nav-item.active i:first-child {
    color: #a63d2f;
}

/* Mobile: Hide sidebar or make horizontal */
@media (max-width: 768px) {
    .account-sidebar {
        border-radius: 12px;
        position: static;
    }
}

/* Modern Breadcrumb */
.modern-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    margin-top: 10px;
    list-style: none;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
    flex-wrap: wrap;
}

.modern-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    /* FontAwesome right angle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ccc;
    margin: 0 12px;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #a63d2f;
}

.modern-breadcrumb .breadcrumb-item:last-child a {
    color: #a63d2f;
    font-weight: 700;
    pointer-events: none;
}

/* Modern Account Dashboard Styles */
.account-page {
    padding-top: 30px;
    padding-bottom: 60px;
}

.dashboard-header {
    background: linear-gradient(135deg, #811515 0%, #a63d2f 100%);
    padding: 40px;
    border-radius: 16px;
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.dashboard-header::after {
    content: '\f2bd';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.dashboard-header h1 {
    color: white;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Archivo', sans-serif;
}

.dashboard-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.dashboard-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-family: 'Archivo', sans-serif;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(166, 61, 47, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f9f7f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a63d2f;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dashboard-card:hover .card-icon {
    background: #a63d2f;
    color: white;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
    font-family: 'Archivo', sans-serif;
    transition: color 0.3s ease;
}

.dashboard-card:hover .card-content h3 {
    color: #a63d2f;
}

.card-content p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 30px 20px;
    }

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

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Modern Edit Account Styles */
.account-page {
    padding-top: 30px;
    padding-bottom: 60px;
}

.modern-form-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.modern-form-header {
    background: linear-gradient(135deg, #7b5e4a 0%, #af493b 100%);
    padding: 30px 35px;
    color: white;
    position: relative;
}

.modern-form-header h1 {
    color: white;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

.modern-form-body {
    padding: 40px;
}

.form-label {
    font-weight: 600;
    color: #444;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
}

.required .form-label::after {
    content: ' *';
    color: #a63d2f;
    font-weight: bold;
}

.modern-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: #333;
}

.modern-input:focus {
    border-color: #a63d2f;
    box-shadow: 0 0 0 4px rgba(166, 61, 47, 0.1);
    background-color: #fff;
    outline: none;
}

.modern-divider {
    border-top: 1px solid #eee;
    margin: 30px 0;
    opacity: 1;
}

.modern-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Archivo', sans-serif;
}

.modern-options {
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.modern-check {
    margin-bottom: 8px;
}

.modern-check:last-child {
    margin-bottom: 0;
}

.modern-check .form-check-input:checked {
    background-color: #a63d2f;
    border-color: #a63d2f;
}

.modern-form-footer {
    padding: 25px 40px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-btn-back {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s;
    text-decoration: none;
}

.modern-btn-back:hover {
    background: #f0f0f0;
    color: #333;
}

.modern-btn-submit {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    background: #222;
    border: none;
    transition: all 0.3s;
    color: #fff;
}

.modern-btn-submit:hover {
    background: #a63d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(166, 61, 47, 0.25);
    color: #fff;
}

.modern-btn-outline {
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
}

.modern-btn-outline:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

@media (max-width: 768px) {
    .modern-form-header {
        padding: 25px 20px;
    }

    .modern-form-header h1 {
        font-size: 24px;
    }

    .modern-form-body {
        padding: 25px 20px;
    }

    .modern-form-footer {
        padding: 20px;
        flex-direction: column-reverse;
        gap: 15px;
    }

    .modern-btn-back,
    .modern-btn-submit {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
       SECTION WRAPPER
    ============================================================ */
.hnvshop-section {
    padding: 2rem 0 3rem;
    /* margin-top: 100px; */
}

.hnvshop-section .container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
       BREADCRUMB
    ============================================================ */
.hnvshop-section .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    font-size: 13px;
    color: #6b6b63;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hnvshop-section .breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    color: #aaa9a0;
    margin-right: 6px;
}

.hnvshop-section .breadcrumb-item a {
    color: #6b6b63;
    text-decoration: none;
}

.hnvshop-section .breadcrumb-item a:hover {
    color: #185FA5;
}

.hnvshop-section .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 500;
}

/* ============================================================
       LAYOUT: SIDEBAR + MAIN
    ============================================================ */
.hnvshop-wrapper {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 1.5rem;
    align-items: start;
}

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

/* ============================================================
       SIDEBAR
    ============================================================ */
.hnvshop-sidebar {
    background: #ffffff;
    border: 1px solid #e2e2da;
    border-radius: 14px;
    padding: 1.25rem;
    position: sticky;
    top: 1.25rem;
}

@media (max-width: 900px) {

    /* Sidebar hidden on mobile — filter modal takes over */
    .hnvshop-sidebar {
        display: none !important;
    }
}

.hnvshop-filter-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #6b6b63;
    margin-bottom: .85rem;
}

.hnvshop-filter-group {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e2e2da;
}

.hnvshop-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Category accordion */
.hnvshop-category {
    margin-bottom: .85rem;
}

.hnvshop-category-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-size: 13px; */
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    padding: 3px 0;
    user-select: none;
}

.hnvshop-category-parent:hover {
    color: #c96b3c;
}

.hnvshop-category-parent .cat-arrow {
    font-size: 12px;
    color: #aaa9a0;
    transition: transform .2s;
}

.hnvshop-category-parent.open .cat-arrow {
    transform: rotate(180deg);
}

.hnvshop-category-children {
    padding-left: 2px;
    margin-top: 6px;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.hnvshop-category-children.open {
    display: flex;
}

.hnvshop-category-child {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b6b63;
    cursor: pointer;
    padding: 3px 0;
}

.hnvshop-category-child:hover {
    color: #1a1a1a;
}

.hnvshop-category-child input[type="checkbox"] {
    accent-color: #c96b3c;
    width: 13px;
    height: 13px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Price range */
.hnvshop-price-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b6b63;
    margin-top: 7px;
}

.hnvshop-price-display strong {
    color: #1a1a1a;
}

input[type="range"].form-range {
    width: 100%;
    accent-color: #c96b3c;
    cursor: pointer;
}

/* ============================================================
       MOBILE BAR
    ============================================================ */
.hnvshop-mobile-bar {
    display: none;
    gap: 8px;
    margin-bottom: 1rem;
    position: relative;
}

@media (max-width: 900px) {
    .hnvshop-mobile-bar {
        display: flex;
    }
}

.hnvshop-mobile-btn {
    flex: 1;
    padding: 9px;
    border: 1px solid #e2e2da;
    border-radius: 10px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .15s, border-color .15s;
    position: relative;
}

.hnvshop-mobile-btn:hover {
    background: #f0f0eb;
}

.hnvshop-mobile-btn.active {
    background: #fdf0ea;
    border-color: #c96b3c;
    color: #c96b3c;
}

/* ============================================================
       SORT DROPDOWN (custom, below Sort button)
    ============================================================ */
.hnvshop-sort-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 200px;
    background: #ffffff;
    border: 1px solid #e2e2da;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 300;
    overflow: hidden;
    animation: dropIn .18s ease;
}

.hnvshop-sort-dropdown.open {
    display: block;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hnvshop-sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    font-size: 13px;
    color: #1a1a1a;
    cursor: pointer;
    transition: background .12s;
    border-bottom: 1px solid #e2e2da;
}

.hnvshop-sort-option:last-child {
    border-bottom: none;
}

.hnvshop-sort-option:hover {
    background: #fdf0ea;
    color: #c96b3c;
}

.hnvshop-sort-option.selected {
    color: #c96b3c;
    font-weight: 600;
}

.hnvshop-sort-option .sort-tick {
    display: none;
    font-size: 12px;
    color: #c96b3c;
}

.hnvshop-sort-option.selected .sort-tick {
    display: block;
}

/* ============================================================
       FILTER MODAL (bottom sheet on mobile)
    ============================================================ */
.hnvshop-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 400;
    animation: fadeIn .2s ease;
}

.hnvshop-filter-overlay.open {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hnvshop-filter-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    z-index: 401;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.hnvshop-filter-modal.open {
    transform: translateY(0);
}

.hnvshop-modal-handle {
    width: 36px;
    height: 4px;
    background: #e2e2da;
    border-radius: 99px;
    margin: 10px auto 0;
    flex-shrink: 0;
}

.hnvshop-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #e2e2da;
    flex-shrink: 0;
}

.hnvshop-modal-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.hnvshop-modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e2e2da;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #777;
}

.hnvshop-modal-close:hover {
    background: #f0f0eb;
}

.hnvshop-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px 16px;
    -webkit-overflow-scrolling: touch;
}

.hnvshop-modal-footer {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid #e2e2da;
    flex-shrink: 0;
    background: #ffffff;
}

.hnvshop-modal-footer button {
    flex: 1;
    padding: 11px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s;
}

.hnvshop-modal-btn-clear {
    border: 1px solid #e2e2da;
    background: #ffffff;
    color: #1a1a1a;
}

.hnvshop-modal-btn-clear:hover {
    background: #f0f0eb;
}

.hnvshop-modal-btn-apply {
    border: none;
    background: #185FA5;
    color: #fff;
}

.hnvshop-modal-btn-apply:hover {
    background: #0C447C;
}

/* Hidden native select not needed anymore */
.hnvshop-sort-select-hidden {
    display: none;
}

/* ============================================================
       PRODUCT AREA
    ============================================================ */
.hnvshop-product-area {
    min-width: 0;
}

/* Banner */
.banner-container-product-category {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #E6F1FB;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-container-product-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback when image missing */
.banner-container-product-category .banner-fallback {
    padding: 1rem;
}

.banner-container-product-category .banner-fallback h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0C447C;
    margin: 0;
}

.banner-container-product-category .banner-fallback p {
    font-size: 12px;
    color: #185FA5;
    margin-top: 3px;
    margin-bottom: 0;
}

/* ============================================================
       PRODUCT GRID
    ============================================================ */
.hnvshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .hnvshop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .hnvshop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hnvshop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }
}


/* ============================================================
       PAGINATION
    ============================================================ */
.hnvshop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hnvshop-page-btn {
    min-width: 34px;
    height: 34px;
    border: 1px solid #e2e2da;
    border-radius: 6px;
    background: #ffffff;
    color: #6b6b63;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s, border-color .15s;
}

.hnvshop-page-btn:hover {
    background: #f0f0eb;
    color: #1a1a1a;
}

.hnvshop-page-btn.active {
    background: #c96b3c;
    color: #fff;
    border-color: #c96b3c;
}

.hnvshop-page-dots {
    font-size: 13px;
    color: #aaa9a0;
    padding: 0 2px;
}


/* ============================================================
       SIDEBAR HEADER ROW (title + clear all)
    ============================================================ */
.hnvshop-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hnvshop-filter-header .hnvshop-filter-title {
    margin-bottom: 0;
}

.hnvshop-clear-all-btn {
    font-size: 11px;
    font-weight: 500;
    color: #E24B4A;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
    /* shown via JS when filters active */
    align-items: center;
    gap: 3px;
    transition: opacity .15s;
}

.hnvshop-clear-all-btn:hover {
    opacity: .75;
}

.hnvshop-clear-all-btn.visible {
    display: flex;
}

/* ============================================================
       ACTIVE FILTER PILLS BAR (above toolbar)
    ============================================================ */
.hnvshop-active-bar {
    display: none;
    /* shown via JS */
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: .85rem;
}

.hnvshop-active-bar.visible {
    display: flex;
}

.hnvshop-active-label {
    font-size: 12px;
    color: #6b6b63;
    white-space: nowrap;
}

.hnvshop-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #185FA5;
    background: #d0e8ff;
    border: 1px solid #b5d4f4;
    border-radius: 99px;
    padding: 3px 10px 3px 10px;
    white-space: nowrap;
    cursor: default;
    animation: pillIn .18s ease;
}

@keyframes pillIn {
    from {
        opacity: 0;
        transform: scale(.88);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hnvshop-filter-pill button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: #185FA5;
    font-size: 11px;
    display: flex;
    align-items: center;
    opacity: .7;
    margin-left: 1px;
}

.hnvshop-filter-pill button:hover {
    opacity: 1;
}

.hnvshop-pill-clearall {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #E24B4A;
    background: #fef0f0;
    border: 1px solid #f5c1c1;
    border-radius: 99px;
    padding: 3px 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}

.hnvshop-pill-clearall:hover {
    background: #fde0e0;
}

/* ============================================================
       MOBILE FILTER BUTTON — badge
    ============================================================ */
.hnvshop-filter-badge {
    display: none;
    min-width: 18px;
    height: 18px;
    border-radius: 99px;
    background: #E24B4A;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.hnvshop-filter-badge.visible {
    display: inline-flex;
}

/* Toolbar */
.hnvshop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    gap: 10px;
    flex-wrap: wrap;
}


.hnvshop-toolbar .form-select.w-auto {
    padding: 6px 36px 6px 12px;
    border: 1px solid #e2e2da;
    border-radius: 6px;
    font-size: 13px;
    background-color: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
    outline: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.hnvshop-toolbar .form-select.w-auto:focus {
    background: #fdf0ea;
    border-color: #c96b3c;
    color: #c96b3c;
}

/* On mobile, toolbar is hidden — sort is handled via mobile bar */
@media (max-width: 900px) {
    .hnvshop-toolbar {
        display: none;
    }
}


.cart-bento {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cart-bento:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cart-bento-body {
    padding: 24px;
}

.cart-gradient-btn {
    background: linear-gradient(135deg, #FF3366, #FF9933);
    border: none;
    color: white;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cart-gradient-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.25);
    color: white;
}



/* =============================
HERO
============================= */

.contact-hero {
    background: #5e2e7a;
    color: white;
    text-align: center;
    padding: 40px 20px;
    /* margin-top: 100px; */
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-hero p {
    opacity: .9;
}

/* =============================
GRID
============================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* =============================
FORM
============================= */

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.form-group {
    margin-bottom: 18px;
}

label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

input,
textarea {
    /* width: 100%; */
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Archivo';
    font-size: 14px;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    background: #ec3237;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #ec3237cc;
}

/* =============================
INFO CARDS
============================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.info-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.info-card p {
    margin: 0;
}

/* =============================
MAP
============================= */

.map-section {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* =============================
RESPONSIVE
============================= */

@media(max-width:992px) {

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

}

@media(max-width:576px) {

    .contact-hero h1 {
        font-size: 30px;
    }

    .section {
        padding: 40px 0;
    }

}


/* =====================================================
   ORDER HISTORY — Premium 2026 Design
   ===================================================== */

.ss-order-wrapper {
    font-family: 'Archivo', sans-serif;
}

/* Hero */
.ss-order-hero {
    background: linear-gradient(135deg, #811515 0%, #a63d2f 50%, #c96b3c 100%);
    padding: 22px 28px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(166, 61, 47, 0.18);
}

.ss-order-hero::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.ss-order-hero::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.ss-order-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ss-order-hero h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 2px;
    letter-spacing: -0.3px;
}

.ss-order-hero p {
    margin: 0;
    opacity: 0.8;
    font-size: 13px;
    font-weight: 400;
}

/* Order Grid */
.ss-order-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

/* Order Card */
.ss-order-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #f0ebe6;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.ss-order-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(166, 61, 47, 0.15);
}

.ss-order-card-top {
    padding: 22px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ss-order-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
}

.ss-order-id i {
    color: #a63d2f;
    font-size: 14px;
}

/* Status Badges */
.ss-order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.ss-status-success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.ss-status-pending {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.ss-status-cancel {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.ss-status-shipped {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.ss-status-default {
    background: #f9fafb;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

/* Card Body */
.ss-order-card-body {
    padding: 18px 24px;
    flex: 1;
}

.ss-order-meta {
    display: flex;
    gap: 24px;
}

.ss-order-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.ss-order-meta-item i {
    color: #bbb;
    font-size: 14px;
}

/* Card Footer */
.ss-order-card-footer {
    padding: 18px 24px;
    border-top: 1px solid #f5f0eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfcfa;
}

.ss-order-total {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    letter-spacing: -0.5px;
}

.ss-order-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #61c55e;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ss-order-view-btn:hover {
    background: #a63d2f;
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(166, 61, 47, 0.25);
}

.ss-order-view-btn i {
    transition: transform 0.3s ease;
}

.ss-order-view-btn:hover i {
    transform: translateX(3px);
}

/* Pagination */
.ss-order-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid #f0ebe6;
    margin-bottom: 20px;
}

.ss-order-results {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Empty State */
.ss-order-empty {
    text-align: center;
    padding: 80px 30px;
    background: #fff;
    border-radius: 20px;
    border: 2px dashed #e8e0d8;
    margin-bottom: 24px;
}

.ss-order-empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf2f0, #fce8e4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: #c96b3c;
}

.ss-order-empty h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.ss-order-empty p {
    font-size: 15px;
    color: #888;
    margin: 0 0 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ss-order-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #a63d2f, #c96b3c);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(166, 61, 47, 0.2);
}

.ss-order-shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(166, 61, 47, 0.3);
    color: #fff;
}

/* Continue Button */
.ss-order-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #222;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ss-order-continue-btn:hover {
    background: #a63d2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 61, 47, 0.25);
}

/* ===========================
   ORDER PAGE RESPONSIVE
   =========================== */

@media (max-width: 991px) {
    .ss-order-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ss-order-hero {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        border-radius: 16px;
    }

    .ss-order-hero h1 {
        font-size: 24px;
    }

    .ss-order-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ss-order-card-footer {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .ss-order-view-btn {
        width: 100%;
        justify-content: center;
    }

    .ss-order-pagination {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .ss-order-empty {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .ss-order-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .ss-order-meta {
        flex-direction: column;
        gap: 8px;
    }

    .ss-order-total {
        font-size: 20px;
    }
}
/* =====================================================
   ORDER INFO (DETAILS) — Premium 2026 Design
   ===================================================== */

/* Page Header */
.ss-order-info-header {
    background: #fff;
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0ebe6;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ss-order-info-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ss-order-info-title i {
    font-size: 28px;
    color: #a63d2f;
}

.ss-order-info-title h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #222;
}

/* Meta Grid */
.ss-order-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.ss-meta-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid #f0ebe6;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ss-meta-card .meta-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

.ss-meta-card .meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* Address Grid */
.ss-order-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ss-address-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0ebe6;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ss-address-card .address-header {
    background: #faf8f5;
    padding: 16px 20px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #f0ebe6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-address-card .address-header i {
    color: #a63d2f;
}

.ss-address-card .address-body {
    padding: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Sections */
.ss-order-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0ebe6;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ss-order-section .section-header {
    background: #fff;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #f0ebe6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-order-section .section-header i {
    color: #a63d2f;
}

.ss-order-section .section-body {
    padding: 24px;
}

/* Table */
.ss-table {
    width: 100%;
    border-collapse: collapse;
}

.ss-table th {
    background: #faf8f5;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0ebe6;
}

.ss-table td {
    padding: 20px;
    border-bottom: 1px solid #f5f0eb;
    vertical-align: middle;
}

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

.ss-table .product-name {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 6px;
}

.ss-table .product-name:hover {
    color: #a63d2f;
}

.ss-table .product-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-table .product-options li {
    font-size: 12px;
    color: #777;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ss-table .product-options strong {
    color: #444;
}

.ss-qty-badge {
    background: #f0ebe6;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.ss-action-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.ss-btn-reorder,
.ss-btn-return {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
}

.ss-btn-reorder {
    border: 1px solid #a63d2f;
    color: #a63d2f;
}

.ss-btn-reorder:hover {
    background: #a63d2f;
    color: #fff;
}

.ss-btn-return {
    border: 1px solid #d1d5db;
    color: #4b5563;
}

.ss-btn-return:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.ss-btn-returned {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

/* Totals Footer */
.ss-table-totals {
    border-top: 2px solid #f0ebe6;
}

.ss-table-totals tr:last-child td {
    padding-bottom: 24px;
}

.ss-table-totals .total-title {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.ss-table-totals .total-value {
    font-size: 16px;
    color: #222;
    font-weight: 800;
}

@media (max-width: 768px) {
    .ss-order-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .ss-table thead {
        display: none;
    }
    
    .ss-table, .ss-table tbody, .ss-table tr, .ss-table td {
        display: block;
        width: 100%;
    }
    
    .ss-table tr {
        margin-bottom: 20px;
        border-bottom: 2px solid #f0ebe6;
        padding-bottom: 20px;
    }
    
    .ss-table td {
        border: none;
        padding: 10px 20px;
        text-align: left;
    }
    
    .ss-table td.text-center,
    .ss-table td.text-end {
        text-align: left !important;
    }
    
    .ss-qty-badge::before {
        content: "Qty: ";
        font-weight: normal;
    }
    
    .ss-action-btns {
        align-items: flex-start;
        flex-direction: row;
        margin-top: 10px;
    }
    
    .ss-table-totals tr {
        display: flex;
        justify-content: space-between;
        padding: 0;
        margin-bottom: 10px;
        border: none;
    }
    
    .ss-table-totals td {
        padding: 10px 20px;
    }
    
    .ss-table-totals td[colspan="3"] {
        display: none;
    }
}

/* =====================================================
   RETURNS LIST — Premium 2026 Design
   ===================================================== */

.ss-return-wrapper {
    font-family: 'Archivo', sans-serif;
}

/* Hero */
.ss-return-hero {
    background: linear-gradient(135deg, #4b5563 0%, #374151 50%, #1f2937 100%);
    padding: 22px 28px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(31, 41, 55, 0.18);
}

.ss-return-hero::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.ss-return-hero::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.ss-return-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ss-return-hero h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 2px;
    letter-spacing: -0.3px;
}

.ss-return-hero p {
    margin: 0;
    opacity: 0.8;
    font-size: 13px;
    font-weight: 400;
}

/* Return Grid */
.ss-return-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

/* Return Card */
.ss-return-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #f0ebe6;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.ss-return-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(75, 85, 99, 0.15);
}

.ss-return-card-top {
    padding: 22px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ss-return-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
}

.ss-return-id i {
    color: #4b5563;
    font-size: 14px;
}

/* Card Body */
.ss-return-card-body {
    padding: 18px 24px;
    flex: 1;
}

.ss-return-meta {
    display: flex;
    gap: 24px;
}

.ss-return-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.ss-return-meta-item i {
    color: #bbb;
    font-size: 14px;
}

/* Card Footer */
.ss-return-card-footer {
    padding: 18px 24px;
    border-top: 1px solid #f5f0eb;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #fdfcfa;
}

.ss-return-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ss-return-view-btn:hover {
    background: #4b5563;
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(75, 85, 99, 0.25);
}

.ss-return-view-btn i {
    transition: transform 0.3s ease;
}

.ss-return-view-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .ss-return-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ss-return-hero {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        border-radius: 16px;
    }

    .ss-return-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ss-return-view-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ss-return-meta {
        flex-direction: column;
        gap: 8px;
    }
}
