:root {
    --primary: #cc4b00;
    --primary-light: #f39c12;
    --primary-dark: #a03a00;
    --secondary: #1a252f;
    --accent: #3498db;
    --bg-light: #f8fafc;
    --text-dark: #2c3e50;
    --text-muted: #576574;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

[data-theme="dark"] {
    --bg-light: #0f172a;
    --white: #1e293b;
    --text-dark: #f1f5f9;
    --text-muted: #94a3b8;
    --secondary: #f1f5f9;
    --glass: rgba(15, 23, 42, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
/* Top Bar */
.top-bar {
    background: #1a252f;
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--primary);
}

header {
    background: var(--white);
    color: var(--secondary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.action-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.action-btn:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 47, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.search-container {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.search-form input {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    outline: none;
}

.search-form button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: -100px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wa-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-widget:hover .wa-bubble {
    transform: translateY(0);
    opacity: 1;
}

.wa-btn {
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
}

.wa-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9), rgba(26, 37, 47, 0.7)), url('../img/background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
    border: none;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Category Grid */
.categories {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    display: block;
    color: #b84400;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-img {
    height: 250px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.badge-item {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    color: white;
}

.badge-cond {
    background: #1a252f;
}

.badge-featured {
    background: var(--primary);
}

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

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

.product-info {
    padding: 20px;
}

.product-cond {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 10px;
}

.cond-new {
    background: #e1f5fe;
    color: #0288d1;
}

.cond-used {
    background: #fff3e0;
    color: #943c00;
    /* Darker orange for better contrast */
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.product-price {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
}

.detail-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-link:hover {
    color: var(--primary-dark);
}

.center-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-dark {
    background: var(--secondary);
    color: white;
    padding: 12px 40px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: var(--primary);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    color: #cbd5e1;
    /* Clearer light grey for contrast */
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    /* Solid color instead of opacity */
}

/* Contact Info Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Manufacture Block Homepage */
.manufacture-block {
    padding: 100px 0;
    background: #f1f5f9;
}

.m-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.m-text h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.m-text p.lead {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 30px;
}

.m-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.m-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.m-feature-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.m-feature-item span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.m-image {
    position: relative;
}

.m-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.m-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.3);
    border: 5px solid white;
}

.m-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.m-badge strong {
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .m-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .m-image {
        order: -1;
    }

    .m-badge {
        right: 20px;
        bottom: 20px;
        width: 120px;
        height: 120px;
        padding: 15px;
    }
}

/* New Arrivals Section - Premium Redesign */
.arrivals-section {
    padding: 120px 0;
    background: #fdfdfd;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 35px;
}

.arrival-banner-card {
    background: linear-gradient(rgba(26, 37, 47, 0.8), rgba(26, 37, 47, 0.95)), url('../img/background.jpg') center/cover;
    border-radius: 40px;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Semi-transparent decorative shape */
.arrival-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.arrival-banner-card h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.btn-white-round {
    background: white;
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.btn-white-round:hover {
    transform: scale(1.08);
    background: var(--primary);
    color: white;
}

.arrival-product-card {
    background: white;
    border-radius: 45px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.arrival-product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.1);
}

.arrival-img-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.arrival-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.arrival-product-card:hover .arrival-img-wrapper img {
    transform: scale(1.15);
}

.arrival-price-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.p-price-data .p-price-label {
    font-size: 0.7rem;
    color: #475569;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.p-price-data .p-price-value {
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.4rem;
}

.circle-arrow {
    width: 50px;
    height: 50px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.3);
}

.circle-arrow:hover {
    transform: rotate(-45deg) scale(1.1);
    background: #ea580c;
}

.arrival-info-mid {
    padding: 30px 20px 10px;
}

.arrival-info-mid h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.3;
}

.arrival-info-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 25px;
}

.arrival-badge {
    padding: 7px 18px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.arrival-stock {
    font-size: 0.85rem;
    color: #047857;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.arrival-new-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #c2410c;
    color: white;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.4);
}

@media (max-width: 1200px) {
    .arrivals-grid {
        gap: 25px;
    }

    .arrival-banner-card h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .arrivals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .arrival-banner-card {
        grid-column: 1 / -1;
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .arrivals-grid {
        grid-template-columns: 1fr;
    }
}

/* Filter Sidebar Styles */
.filter-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.filter-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    font-weight: 700;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-list li.active a,
.filter-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.filter-list i {
    font-size: 0.9rem;
    width: 20px;
}

/* responsive sidebar */
@media (max-width: 768px) {
    main.container {
        grid-template-columns: 1fr !important;
    }
}

.product-gallery-main {
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-gallery-main:hover {
    transform: scale(1.01);
}

.product-gallery-main img {
    width: 100%;
    display: block;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
}

.thumb-item {
    cursor: pointer;
    border: 3px solid #f1f5f9;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1/1;
    background: white;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.thumb-item:hover img,
.thumb-item.active img {
    opacity: 1;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.product-main-info {
    background: white;
    padding: 50px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.product-price-large {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 900;
    margin: 25px 0;
    letter-spacing: -1.5px;
}

.product-desc-full {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.action-btn-call,
.action-btn-whatsapp {
    padding: 18px 25px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.action-btn-call {
    background: var(--primary);
    color: white;
}

.action-btn-whatsapp {
    background: #25d366;
    color: white;
}

.action-btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.action-btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Bottom Description Section */
.product-description-section {
    margin-top: 60px;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow);
}

.desc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.desc-header i {
    color: var(--primary);
    font-size: 1.5rem;
}

.desc-header h2 {
    font-size: 1.5rem;
    color: var(--secondary);
}

.desc-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.zoom-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    list-style: none;
    margin-bottom: 40px;
    font-size: 0.9rem;
    border: 1px solid #f0f2f5;
    width: fit-content;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item i.separator {
    font-size: 0.7rem;
    opacity: 0.4;
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* Lightbox UI */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    animation-name: zoom;
    animation-duration: 0.6s;
    border-radius: 20px;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Submenu */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1100;
    border-top: 3px solid var(--primary);
}

.submenu li a {
    color: var(--secondary) !important;
    padding: 12px 25px;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.submenu li a:hover {
    background: #f8fafc;
    color: var(--primary) !important;
    padding-left: 30px;
}

.nav-links li a i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.7;
}