:root {
    --primary-color: #bfa86c;
    --dark-color: #464555;
    --accent-gold: var(--primary-color);
    --soft-gold: #e6d5b8;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --white: #ffffff;
    --error-red: #e31e24;
    --whatsapp-green: #25d366;
    --success-green: #10b981;
    --warning-gold: #f59e0b;
    --warning-bg: #fff8eb;
    --wechat-green: #07c160;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.nl-top-bar {
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    color: #ffffff;
}

.nl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl-top-links {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.nl-top-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.nl-top-links a:hover {
    color: var(--primary-color);
}

.nl-home-h1-ribbon {
    padding: 25px 0 15px;
    text-align: center;
    background: transparent;
}

.nl-top-h1 {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.nl-top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nl-lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nl-contact-info {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.nl-contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nl-contact-info a:hover {
    color: var(--primary-color);
}

/* Main Header */
.nl-main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nl-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nl-icon-btn {
    position: relative;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
    background-color: #f7f7f7;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee;
    transition: var(--transition);
}

.nl-icon-btn:hover {
    color: var(--primary-color);
    background-color: #f0f0f0;
    border-color: #e0e0e0;
}

.nl-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}



.nl-logo img {
    max-width: 180px;
    transition: var(--transition);
}

.nl-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nl-menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nl-search-wrapper {
    flex: 1;
    max-width: 450px;
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.nl-search-input {
    width: 100%;
    padding: 8px 40px 8px 20px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background-color: #f7f9fa;
    font-family: inherit;
    outline: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nl-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(191, 168, 108, 0.2);
}

.nl-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nl-search-container {
    width: 100%;
    position: relative;
    transition: var(--transition);
}

.nl-search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    z-index: 10000;
    max-height: 450px;
    overflow-y: auto;
    display: none;
    padding: 10px 0;
}

/* Wishlist Button Overlay */
.nl-fav-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #94a3b8;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.nl-fav-btn:hover {
    transform: scale(1.15);
    color: #ef4444;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.2);
}

.nl-fav-btn.active {
    color: #ef4444;
}

.nl-fav-btn.active i {
    color: #ef4444;
}

/* Wishlist & Category Grid Layout */
.nl-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

@media (max-width: 768px) {
    .nl-products-grid { grid-template-columns: 1fr; gap: 15px; }
}

.nl-badge.pulse {
    animation: pulseBadge 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.nl-old-price, 
.nl-price-before-tag {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 8px;
    font-weight: 400;
}

.nl-current-price,
.nl-price-current-tag {
    font-weight: 700;
    color: var(--error-red);
}

.nl-search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.nl-search-item:last-child {
    border-bottom: none;
}

.nl-search-item:hover {
    background-color: #f8f9fa;
}

.search-item-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}

.search-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-item-info {
    flex: 1;
}

.search-item-info h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.search-item-info .price {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.nl-search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nl-search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.nl-search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nl-search-results-dropdown::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.nl-search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.nl-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nl-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nl-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 30px 20px;
}

.nl-sidebar.active {
    right: 0;
}

.nl-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nl-close-sidebar {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.nl-sidebar-menu {
    border-top: 1px solid #eeeeee;
}

.nl-sidebar-link {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
}

.nl-sidebar-link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary-color);
    padding-right: 25px;
}

.nl-small-icon {
    font-size: 0.7rem;
    margin-left: 8px;
    opacity: 0.5;
}

/* WhatsApp Button */
.nl-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nl-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Mobile  */
@media (max-width: 768px) {

    .nl-top-bar,
    .nl-search-wrapper {
        display: none !important;
    }

    .nl-main-header {
        padding: 5px 0;
        width: 100%;
        overflow: hidden;
    }

    .nl-header-content {
        padding: 5px 0;
        width: 100%;
    }

    .nl-logo img {
        max-width: 100px;
        height: auto;
    }

    .nl-header-left {
        gap: 4px;
        flex-shrink: 0;
    }

    .nl-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .nl-badge {
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
        top: -3px;
        right: -3px;
    }

    .nl-container {
        padding: 0 10px;
        width: 100%;
    }
}

/* Hero Section */
.nl-hero-wrapper {
    background-color: var(--white);
    padding: 0;
    margin-bottom: 30px;
}

.nl-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--dark-color);
}

.nl-hero-slide {
    width: 100%;
    height: 100%;
    display: block;
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

.nl-hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.nl-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nl-slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nl-prev {
    right: 20px;
}

.nl-next {
    left: 20px;
}

.nl-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.nl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.nl-dot.active {
    background-color: #000000;
    width: 25px;
    border-radius: 10px;
    border-color: transparent;
}

/* Products Section */
.nl-products-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.nl-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.nl-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.nl-view-all {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    text-decoration: none;
}

.nl-view-all:hover {
    opacity: 0.75;
}

.nl-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
}

.nl-product-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nl-product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.nl-product-img {
    display: block;
    height: 200px;
    background: #ffffff;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.nl-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nl-product-card:hover .nl-product-img img {
    transform: scale(1.05);
}

.nl-product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.nl-product-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s;
}

.nl-product-title a:hover {
    color: var(--primary-color);
}

.nl-product-price {
    font-size: 1rem;
    font-weight: 800;
    color: #333333;
    margin-top: auto;
}

.nl-btn-cart {
    width: 100%;
    padding: 10px 15px;
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #eeeeee;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.nl-btn-cart:hover {
    background-color: var(--dark-color);
    color: #ffffff;
    border-color: var(--dark-color);
}

.nl-section-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nl-swiper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #555555;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.nl-swiper-btn:hover {
    background: var(--dark-color);
    color: #ffffff;
    border-color: var(--dark-color);
}

.nl-swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.nl-products-swiper {
    width: 100%;
    padding-bottom: 5px;
}

.nl-products-swiper .swiper-slide {
    height: auto;
}

.nl-products-swiper .nl-product-card {
    height: 100%;
}

@media (max-width: 768px) {
    .nl-product-img {
        height: 140px;
    }

    .nl-section-title {
        font-size: 1.1rem;
    }

    .nl-section-nav {
        gap: 5px;
    }

    .nl-swiper-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* PRODUCT DETAIL PAGE */

.nl-breadcrumb-bar {
    background: #f9f9f9;
    border-bottom: 1px solid #eeeeee;
    padding: 12px 0;
}

.nl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.nl-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.nl-shop-footer-bottom {
    justify-content: center !important;
    text-align: center;
}

.nl-shop-footer-bottom p {
    margin: 0;
}

@media (max-width: 600px) {
    .nl-shop-footer-bottom {
        padding: 20px 0;
    }
}

.nl-breadcrumb-sep {
    font-size: 0.65rem;
    color: #cccccc;
}

.nl-breadcrumb span {
    color: #333333;
    font-weight: 600;
}

.nl-product-detail-section {
    padding: 40px 0;
    background: #ffffff;
}

.nl-pd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.nl-pd-main-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    background: #fafafa;
}

.nl-pd-main-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nl-pd-main-img:hover img {
    transform: scale(1.03);
}

.nl-pd-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.nl-thumb {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #eeeeee;
    cursor: pointer;
    transition: border-color 0.2s;
}

.nl-thumb:hover,
.nl-thumb.active {
    border-color: var(--primary-color);
}

/* Product Info  */
.nl-pd-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222222;
    line-height: 1.5;
    margin-bottom: 12px;
}

.nl-pd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.nl-stars {
    color: #f5a623;
    font-size: 1rem;
}

.nl-rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nl-pd-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.nl-pd-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #333333;
}

.s-product-card-sale-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.s-product-card-sale-price h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.s-product-card-sale-price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sicon-sar {
    color: #666666;
    font-size: 0.8em;
    font-weight: normal;
}

.s-product-card-sale-price span .sicon-sar {
    color: var(--text-muted);
    font-size: 0.9em;
}

.nl-product-info .s-product-card-sale-price h4 {
    font-size: 1.25rem;
}

.nl-pd-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 18px 0;
}

.nl-pd-desc-intro {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 12px;
    line-height: 1.7;
}

.nl-pd-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-pd-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.6;
}

.nl-pd-bullets li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.nl-pd-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.nl-pd-qty {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.nl-qty-btn {
    width: 38px;
    height: 42px;
    border: none;
    background: #f5f5f5;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.nl-qty-btn:hover {
    background: #e8e8e8;
}

.nl-qty-val {
    min-width: 44px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    padding: 0 5px;
}

/* Legal Steps Mechanism */
.legal-steps-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-color), #232d3b);
    color: #fff;
    margin-bottom: 100px;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}



.legal-steps-hero .nl-container {
    position: relative;
    z-index: 1;
}

.legal-steps-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-steps-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.legal-steps-section {
    padding-bottom: 100px;
    background: transparent;
}

.legal-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-steps-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-steps-flex .legal-step-card {
    flex: 0 0 calc(33.333% - 20px);
    width: 100%;
}

@media (max-width: 900px) {
    .legal-steps-flex .legal-step-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .legal-steps-flex .legal-step-card {
        flex: 0 0 100%;
    }
}

/* Requirements  */
.legal-req-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .legal-req-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 20px;
    }
}

@media (max-width: 768px) {
    .legal-req-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.legal-step-card {
    background: linear-gradient(135deg, var(--dark-color), #1a2332);
    border-radius: 20px;
    padding: 50px 30px 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    z-index: 1;
}

.legal-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.legal-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #cca876);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 6px solid #fff;
    transition: all 0.4s ease;
    z-index: 2;
}

.legal-step-card:hover .legal-step-icon {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.legal-step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    opacity: 0.03;
    line-height: 1;
    transition: all 0.4s ease;
    pointer-events: none;
}

.legal-step-card:hover .legal-step-number {
    opacity: 0.06;
    transform: scale(1.1);
}

.legal-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0 15px;
}

.legal-step-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

html[dir="rtl"] .legal-step-number,
body[dir="rtl"] .legal-step-number {
    right: auto;
    left: 20px;
}

@media (max-width: 900px) {
    .legal-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 20px;
        margin-top: 50px;
    }

    .legal-steps-hero {
        padding: 60px 0;
        margin-bottom: 60px;
    }

    .legal-steps-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .legal-steps-grid {
        grid-template-columns: 1fr;
        gap: 60px 20px;
    }
}

.nl-pd-btn-cart {
    flex: 1;
    padding: 12px 20px;
    background: var(--dark-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.nl-pd-btn-cart:hover {
    opacity: 0.85;
}

.nl-pd-btn-buy {
    width: 100%;
    padding: 13px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.nl-pd-btn-buy:hover {
    opacity: 0.85;
}

/* Meta */
.nl-pd-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-pd-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.nl-pd-meta-label {
    color: var(--text-muted);
    font-weight: 600;
}

.nl-pd-meta-val {
    color: #333333;
}

.nl-pd-meta-val a:hover {
    color: var(--primary-color);
}

.nl-pd-share {
    display: flex;
    gap: 10px;
}

.nl-pd-share a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #555555;
    transition: all 0.2s;
}

.nl-pd-share a:hover {
    background: var(--dark-color);
    color: #ffffff;
    border-color: var(--dark-color);
}

/* Tabs */
.nl-pd-tabs-section {
    padding: 40px 0;
    background: #f9f9f9;
    border-top: 1px solid #eeeeee;
}

.nl-tabs-nav {
    display: flex;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 30px;
    gap: 0;
}

.nl-tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.nl-tab-btn.active {
    color: var(--dark-color);
    border-bottom-color: var(--primary-color);
}

.nl-tab-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333333;
}

.nl-tab-content h4 {
    font-size: 1rem;
    margin: 18px 0 10px;
    color: #444444;
}

.nl-tab-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.nl-tab-content ul {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nl-tab-content ul li {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    list-style: disc;
}

/* Specs Table */
.nl-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.nl-specs-table th,
.nl-specs-table td {
    padding: 12px 16px;
    border: 1px solid #eeeeee;
    text-align: right;
}

.nl-specs-table th {
    background: #f5f5f5;
    font-weight: 700;
    color: #444444;
    width: 40%;
}

.nl-specs-table td {
    color: #555555;
}

.nl-specs-table tr:nth-child(even) td {
    background: #fafafa;
}

/* Review  */
.nl-review-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.nl-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.nl-review-header strong {
    font-size: 1rem;
    color: #333333;
}

.nl-review-stars {
    color: #f5a623;
    font-size: 0.9rem;
}

.nl-review-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive product detail */
@media (max-width: 768px) {
    .nl-pd-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nl-pd-main-img img {
        height: 250px;
    }

    .nl-pd-title {
        font-size: 1.2rem;
    }

    .nl-pd-price {
        font-size: 1.3rem;
    }

    .nl-pd-actions {
        flex-direction: column;
    }

    .nl-pd-btn-cart {
        width: 100%;
    }

    .nl-tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* About Us Section */
.nl-about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.nl-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.nl-about-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.nl-about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.nl-about-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nl-about-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

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

    .nl-about-content h2 {
        font-size: 1.8rem;
    }
}

/* Page Hero */
.nl-page-hero {
    background-color: var(--dark-color);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    background-image: linear-gradient(135deg, rgba(16, 21, 26, 0.95), rgba(47, 58, 69, 0.85)), url('../imgs/slide1.jpg');
    background-size: cover;
    background-position: center;
}

.nl-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.nl-page-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Steps List (Pleadings Mechanism) */
.nl-mechanism-wrapper {
    padding-bottom: 80px;
}

.nl-steps-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nl-step-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
}

.nl-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nl-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nl-step-text p {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nl-step-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .nl-step-number {
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/* toastr */
.nl-custom-toastr {
    min-width: 320px;
    max-width: 450px;
    padding: 16px 25px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f1f5f9;
    animation: toastIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
}

.nl-custom-toastr.success {
    border-right: 5px solid #10b981;
}

.nl-custom-toastr.error {
    border-right: 5px solid #ef4444;
}

.toastr-icon {
    font-size: 1.5rem;
}

.success .toastr-icon {
    color: #10b981;
}

.error .toastr-icon {
    color: #ef4444;
}

.toastr-content p {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.toastr-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-right: auto;
}

@keyframes toastIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes toastOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* --- Testimonials --- */
.corp-testimonials-section {
    padding: 80px 0;
    background: #f9fbfb;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid rgba(11, 61, 46, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 61, 46, 0.08);
    border-color: var(--c-corporate-gold);
}

.test-rating {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.text-gold {
    color: #FFD700;
}

.test-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--c-corporate-teal);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.test-name {
    color: var(--c-corporate-gold);
}


.nl-hero-container-reset {
    max-width: 100%;
    padding: 0;
}

.nl-slide-active {
    display: block;
}

.nl-slide-hidden {
    display: none;
}

.nl-section-py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.nl-section-py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.nl-flex-col {
    display: flex;
    flex-direction: column;
}

.nl-flex-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nl-overflow-hidden {
    overflow: hidden;
}

.nl-w-100 {
    width: 100%;
}

.nl-mb-25 {
    margin-bottom: 25px;
}

.nl-mb-30 {
    margin-bottom: 30px;
}

.nl-mb-40 {
    margin-bottom: 40px;
}

.nl-mt-auto {
    margin-top: auto;
}

.nl-gap-8 {
    gap: 8px;
}

.nl-gap-12 {
    gap: 12px;
}

.nl-gap-15 {
    gap: 15px;
}

.nl-category-title-reset {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

.nl-view-all-link {
    color: var(--primary-color);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 600;
}

.nl-nav-btn-reset {
    width: 35px;
    height: 35px;
    border: 1px solid #eee;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nl-nav-btn-reset:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nl-swiper-full-h {
    height: auto !important;
}

.nl-card-full-h {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nl-price-row-reset {
    display: flex;
    gap: 12px;
    align-items: baseline;
    justify-content: flex-start;
}

.nl-price-current-tag {
    margin: 0;
    color: var(--error-red);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.nl-price-before-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nl-btn-cart-full {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.nl-testimonial-section-reset {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
}

.nl-centered-p-600 {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.nl-whatsapp-btn-full {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.nl-whatsapp-btn-full:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.nl-card-featured {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}


/* Category Page */
.nl-breadcrumbs-wrapper {
    background-color: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nl-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nl-breadcrumbs a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.nl-breadcrumbs a:hover {
    color: var(--primary-color);
}

.nl-breadcrumb-sep {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.nl-breadcrumb-current {
    font-weight: 700;
    color: var(--primary-color);
}

.nl-category-header {
    padding: 80px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nl-category-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.nl-category-info {
    flex: 1;
}

.nl-category-info h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.nl-category-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 700px;
}

.nl-product-count {
    display: inline-block;
    background: rgba(191, 168, 108, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid rgba(191, 168, 108, 0.3);
}

.nl-category-image-glow {
    width: 500px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nl-category-image-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-products-grid-section {
    padding: 80px 0;
    background-color: var(--white);
}

.nl-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nl-product-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.nl-fav-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.nl-fav-btn:hover {
    background: var(--white);
    color: var(--error-red);
    transform: scale(1.1);
}

.nl-empty-state {
    text-align: center;
    padding: 100px 0;
}

.nl-empty-state i {
    font-size: 4rem;
    color: var(--bg-light);
    margin-bottom: 20px;
}

.nl-empty-state p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

    .nl-category-image-glow {
        width: 300px;
        height: 300px;
    }

    .nl-category-info h1 {
        font-size: 2.5rem;
    }
}

/* Mobile & Global Responsive Tweaks */
@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

    .nl-top-bar,
    .nl-search-wrapper {
        display: none !important;
    }

    .nl-main-header {
        padding: 5px 0;
        width: 100%;
        overflow: hidden;
    }

    .nl-header-content {
        padding: 5px 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nl-logo img {
        max-width: 95px !important;
        height: auto;
    }

    .nl-header-left {
        gap: 5px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .nl-icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .nl-badge {
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
        top: -4px;
        right: -4px;
    }

    .nl-container {
        padding: 0 10px;
        width: 100%;
    }

    /* Category Image Fix */
    .nl-category-image-glow {
        display: none !important;
    }

    /* Grid layout */
    .nl-products-grid {
        grid-template-columns: 1fr;
    }

    /* Cart Responsive */
    .nl-cart-layout {
        flex-direction: column;
        gap: 30px;
    }

    .nl-cart-sidebar {
        width: 100%;
    }

    .nl-cart-table thead {
        display: none;
    }

    .nl-cart-table, 
    .nl-cart-table tbody, 
    .nl-cart-table tr, 
    .nl-cart-table td {
        display: block;
        width: 100%;
    }

    .nl-cart-table tr {
        background: #fff;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 15px;
        margin-bottom: 15px;
        padding: 15px;
    }

    .nl-cart-table td {
        padding: 10px 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
    }

    .nl-cart-item-info {
        flex-direction: row-reverse;
        justify-content: flex-end !important;
        gap: 15px;
        border-bottom: 1px solid #f1f1f1 !important;
        padding-bottom: 15px !important;
        margin-bottom: 10px;
    }

    .nl-cart-item-img {
        width: 60px;
        height: 60px;
    }

    .nl-cart-item-name h3 {
        font-size: 1rem;
    }

    .nl-cart-item-price::before {
        content: "السعر:";
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    .nl-cart-item-qty::before {
        content: "الكمية:";
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    .nl-cart-item-total::before {
        content: "المجموع:";
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    .nl-cart-item-remove {
        justify-content: center !important;
        background: #fff5f5;
        border-radius: 10px;
        margin-top: 10px;
    }

    .nl-cart-hero {
        padding: 40px 0;
    }

    .nl-cart-hero h1 {
        font-size: 1.8rem;
    }
}


/* Cart Page  */
.nl-cart-hero {
    background-color: var(--bg-light);
    padding: 40px 0 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.nl-cart-hero .nl-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nl-cart-hero h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.nl-cart-hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin: 0;
}

.nl-cart-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}

.nl-cart-main {
    flex: 1;
    min-width: 0;
}

.nl-cart-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.nl-cart-table-wrapper {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.nl-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.nl-cart-table th {
    background: var(--bg-light);
    padding: 20px;
    text-align: right;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.nl-cart-table td {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.nl-cart-item-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nl-cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nl-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-cart-item-name h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.nl-cart-item-name span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nl-cart-item-price,
.nl-cart-item-total {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.nl-cart-item-remove button {
    background: none;
    border: none;
    color: var(--error-red);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.nl-qty-controls {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nl-qty-controls button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    cursor: pointer;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: 0.2s;
}

.nl-qty-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nl-qty-controls input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-family: inherit;
}

.nl-order-summary {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
}

.nl-order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.nl-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-weight: 600;
}

.nl-summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.35rem;
}

.nl-summary-total span:last-child {
    color: var(--primary-color);
}

.nl-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #000 100%);
    color: var(--white);
    border-radius: 15px;
    margin-top: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.nl-btn-checkout:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

@media (max-width: 991px) {
    .nl-cart-layout {
        flex-direction: column;
    }

    .nl-cart-sidebar {
        width: 100%;
    }
}


/* Checkout Page  */
.nl-premium-checkout-section {
    background-color: #fcfcfc;
    padding-bottom: 120px;
    position: relative;
    z-index: 10;
}

.nl-checkout-flex-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.nl-checkout-main-content {
    flex: 1;
}

.nl-checkout-sidebar {
    width: 440px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.nl-checkout-step-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nl-checkout-step-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.nl-step-card-header {
    padding: 30px 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 20px;
}

.nl-step-card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.nl-step-badge {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 10, 0.08);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.nl-step-card-body {
    padding: 40px;
}

.nl-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 0;
}

.nl-input-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.nl-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nl-input-wrap input,
.nl-input-wrap textarea,
.nl-input-group textarea {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #f1f3f5;
    background: #f8f9fa;
    padding: 22px 65px 22px 35px; /* Thicker horizontal and vertical presence */
    font-family: inherit;
    font-size: 1.1rem; /* More substantial font size */
    transition: all 0.25s ease;
    color: var(--text-dark);
}

.nl-input-wrap input:focus,
.nl-input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 10px 25px rgba(191, 168, 108, 0.1);
}

.nl-input-icon {
    position: absolute;
    right: 22px;
    color: #adb5bd;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.nl-input-wrap input:focus + .nl-input-icon {
    color: var(--primary-color);
}

.nl-premium-payment-grid {
    display: grid;
    gap: 20px;
}

.nl-pay-card {
    border: 2px solid #f1f3f5;
    border-radius: 22px;
    padding: 30px;
    cursor: pointer;
    background: #f8f9fa;
    transition: all 0.3s;
}

.nl-pay-card.active {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 15px 35px rgba(191, 168, 108, 0.1);
}

.pay-card-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.pay-icon {
    width: 60px;
    height: 60px;
    background: rgba(191,168,108,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.pay-check {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transition: 0.3s;
}

.nl-pay-card.active .pay-check {
    opacity: 1;
}

/*  Invoice Sidebar */
.nl-premium-invoice-card {
    background: #fff;
    border-radius: 32px;
    padding: 45px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.07);
    overflow: hidden;
}

.nl-premium-invoice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to left, var(--primary-color), var(--soft-gold));
}

.invoice-header {
    margin-bottom: 40px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
}

.invoice-brand {
    text-align: center;
}

.invoice-brand img {
    max-width: 130px;
    margin-bottom: 12px;
    display: block;
    margin: 0 auto 10px;
}

.invoice-brand span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.invoice-items {
    margin-bottom: 40px;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f8f9fa;
}

.item-info .item-title {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.item-info .item-qty {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.item-price {
    font-weight: 800;
    color: var(--text-dark);
}

.invoice-totals {
    background: #fdfaf3;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.total-row.grand-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(191,168,108,0.2);
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 900;
}

.grand-total span:last-child {
    color: var(--primary-color);
}

.nl-btn-confirm-order {
    width: 100%;
    padding: 22px;
    border-radius: 18px;
    background: var(--dark-color);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(71, 69, 85, 0.2);
}

.nl-btn-confirm-order:hover {
    background: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.trust-note {
    text-align: center;
    margin-top: 20px;
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile & Global Responsive Tweaks */
@media (max-width: 1024px) {
    .nl-checkout-flex-layout {
        flex-direction: column;
    }

    .nl-checkout-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .nl-page-main-title {
        font-size: 2.2rem;
    }

    .nl-checkout-steps {
        padding: 15px 20px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .nl-step-item .step-label {
        display: none;
    }

    .nl-step-divider {
        width: 30px;
    }

    .nl-grid-row {
        grid-template-columns: 1fr;
    }

    .nl-premium-checkout-section {
        margin-top: -30px;
    }
}

.nl-premium-invoice-card {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    padding: 40px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.nl-premium-invoice-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.nl-premium-invoice-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to left, var(--primary-color), var(--soft-gold));
}

.invoice-items {
    margin-bottom: 35px;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.invoice-item:last-child {
    border-bottom: none;
}

.nl-btn-confirm-order {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, #000 100%);
    color: var(--white);
    border: none;
    padding: 22px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nl-btn-confirm-order:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    filter: brightness(1.2);
}

@media (max-width: 1024px) {
    .nl-checkout-flex-layout {
        flex-direction: column;
    }

    .nl-checkout-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    .nl-grid-row {
        grid-template-columns: 1fr;
    }
}


/* Thanks Page */
.nl-thanks-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.nl-thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nl-thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    animation: fadeInUp 0.6s ease;
}

.nl-thanks-card h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.nl-thanks-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.nl-order-details-box {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: right;
}

.nl-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.nl-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nl-detail-row span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.nl-detail-row strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.nl-bank-details {
    background: var(--warning-bg);
    border: 1px dashed var(--warning-gold);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: right;
}

.nl-bank-details h3 {
    font-size: 1.25rem;
    color: #b45309;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nl-thanks-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nl-btn-whatsapp-thanks {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.nl-btn-whatsapp-thanks:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Checkout Help Premium Card */
.nl-checkout-help-premium {
    margin-top: 30px;
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.help-premium-icon {
    width: 54px;
    height: 54px;
    background: rgba(191,168,108,0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.help-premium-content strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 800;
}

.help-premium-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.help-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.08);
    border-radius: 10px;
    transition: all 0.3s;
}

.help-whatsapp-link:hover {
    background: #25d366;
    color: #fff;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .nl-order-details-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nl-thanks-actions {
        flex-direction: column;
        gap: 15px;
    }

    .nl-thanks-card {
        padding: 40px 20px;
    }
}


.nl-primary-text {
    color: var(--primary-color);
}


/* About Page */
.nl-about-intro-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
}

.nl-about-intro-box h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    border-right: 5px solid var(--primary-color);
    padding-right: 20px;
}

.nl-about-intro-box p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.nl-featured-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.nl-title-underline {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.nl-final-goal-box {
    margin-top: 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-color), #000);
    padding: 60px;
    border-radius: 40px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.nl-final-goal-box i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.nl-final-goal-box h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}


/* Chinese Investors */
.nl-wechat-box {
    text-align: center;
    max-width: 600px;
    width: 100%;
    margin: 60px auto 0;
    background: linear-gradient(135deg, var(--dark-color), #000);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.nl-wechat-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--wechat-green), #06ad56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(7, 193, 96, 0.4);
    border: 6px solid var(--white);
}

.nl-wechat-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 30px 0 15px;
}

.nl-wechat-box p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.nl-qr-box {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nl-qr-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.nl-welcome-box {
    margin-top: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.nl-welcome-box p {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}


.nl-hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nl-category-controls-row {
    display: flex;
    align-items: center;
}

.nl-slider-nav-btns {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    .nl-top-h1 {
        font-size: 1.1rem !important;
    }

    .nl-slider-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .nl-prev {
        right: 10px !important;
    }

    .nl-next {
        left: 10px !important;
    }

    .category-header-row {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 10px;
    }

    .category-title {
        font-size: 1rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60%;
    }

    .category-controls {
        flex-shrink: 0;
        gap: 8px !important;
    }

    .nl-view-all-link {
        font-size: 0.8rem !important;
    }

    .category-nav-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
}


.corp-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.corp-page-header {
    background: url('../imgs/bg.webp');
    min-height: 180px;
    /* Drastically reduced for ribbon-like header */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-bottom: 30px;
    padding-top: 80px;
    /* Room for navbar */
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.162);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 36px;
    /* Smaller and tighter */
    font-weight: 800;
    margin-bottom: 8px;
    color: #0b3d2e;
    /* Corporate Teal */
    display: block;
}

.page-subtitle {
    font-size: 16px;
    /* Smaller subtitle */
    color: #000000;
    font-weight: 700;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}

/* Thanks Page - Premium Feel */
.nl-thanks-section {
    background-color: #f8f9fa;
    padding: 100px 0 120px;
}

.nl-thanks-card {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    border-radius: 35px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.nl-thanks-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to left, #10b981, #d1fae5);
}

.nl-thanks-icon {
    width: 110px;
    height: 110px;
    background: #d1fae5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 35px;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
    animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.nl-thanks-card h1 {
    font-size: 2.6rem;
    color: var(--text-dark);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.nl-thanks-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 45px;
}

.nl-primary-text {
    color: var(--primary-color);
}

.nl-order-details-box {
    background: #fdfaf3;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(191,168,108,0.15);
    text-align: right;
}

.nl-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(191,168,108,0.2);
}

.nl-detail-row:last-child {
    border-bottom: none;
}

.nl-detail-row span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.nl-detail-row strong {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.nl-thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.nl-btn-whatsapp-thanks {
    background: #25d366;
    color: #fff;
    padding: 18px 35px;
    border-radius: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.nl-btn-whatsapp-thanks:hover {
    filter: brightness(1.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .nl-thanks-card {
        padding: 50px 25px;
        border-radius: 25px;
    }

    .nl-thanks-card h1 {
        font-size: 1.8rem;
    }

    .nl-thanks-actions {
        flex-direction: column;
    }
}

/* Corporate Style Header (Used in Blog, Checkout, Thanks) */
.corp-page-header {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 0 60px;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.corp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Checkout Help Premium Card */
.nl-checkout-help-premium {
    margin-top: 30px;
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.help-premium-icon {
    width: 54px;
    height: 54px;
    background: rgba(191,168,108,0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.help-premium-content strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 800;
}

.help-premium-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.help-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.08);
    border-radius: 10px;
    transition: all 0.3s;
}

.help-whatsapp-link:hover {
    background: #25d366;
    color: #fff;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    .page-subtitle {
        font-size: 1rem;
    }
}

/* User Dropdown Premium Overhaul */
.nl-user-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-user-dropdown-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; 
}

.nl-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 24px 0 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10000;
    text-align: right;
    overflow: hidden;
}

.nl-user-dropdown-wrapper:hover .nl-user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nl-dropdown-user-info {
    padding: 0 24px 18px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

.nl-dropdown-user-info .user-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
    line-height: 1.2;
}

.nl-dropdown-user-info .user-email {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.nl-user-dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nl-user-dropdown-menu ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s;
    text-decoration: none;
    border-right: 3px solid transparent;
}

.nl-user-dropdown-menu ul li a i {
    font-size: 1.05rem;
    color: var(--primary-color);
    width: 22px;
    text-align: center;
}

.nl-user-dropdown-menu ul li a:hover {
    background: #f8fafc;
    color: var(--primary-color);
    border-right-color: var(--primary-color);
    padding-right: 28px;
}

/* Sidebar Admin Section - Clean Integrated Look */
.nl-sidebar-admin-box {
    margin: 10px 0 30px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: right;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
}

.nl-sidebar-admin-box::before {
    display: none; /* Removed the vertical bar */
}

.sidebar-admin-info {
    margin-bottom: 15px;
    padding: 0 5px;
}

.sidebar-admin-name {
    display: block;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.sidebar-admin-email {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sidebar-admin-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-admin-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 12px 10px;
    background: transparent;
    border-radius: 8px;
}

.sidebar-admin-links a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary-color);
    padding-right: 20px;
}

.sidebar-admin-links a i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}