/* =============================================
   LUXE BANGLA - Main Stylesheet
   Premium Fashion E-commerce
   ============================================= */

/* === Top Bar === */
.lb-topbar {
    background: var(--lb-secondary);
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}

.lb-topbar .topbar-left span {
    margin-right: 1.5rem;
    opacity: 0.9;
}

.lb-topbar .topbar-right {
    text-align: right;
}

.lb-topbar a.topbar-link {
    color: #fff;
    margin-left: 1rem;
    opacity: 0.9;
}

.lb-topbar a.topbar-link:hover {
    color: var(--lb-accent);
    opacity: 1;
}

.lb-topbar i {
    margin-right: 0.25rem;
}

/* === Header === */
.lb-header {
    background: var(--lb-bg);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--lb-shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.mobile-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--lb-primary);
}

.lb-logo {
    flex-shrink: 0;
}

.lb-logo .logo-text {
    font-family: var(--lb-heading-font);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lb-primary);
    margin: 0;
    letter-spacing: 2px;
}

.lb-logo img {
    max-height: 50px;
}

.header-search {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-input-group {
    display: flex;
    border: 2px solid var(--lb-primary);
    border-radius: 50px;
    overflow: hidden;
}

.search-input-group input {
    border: none;
    flex: 1;
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
}

.search-input-group input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    background: var(--lb-primary);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
}

.search-btn:hover {
    background: var(--lb-secondary);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow-lg);
    display: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f8f8f8;
}

.suggestion-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-action {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-primary);
    font-size: 1.25rem;
    border-radius: 50%;
    transition: var(--lb-transition);
}

.header-action:hover {
    background: #f0f0f0;
    color: var(--lb-primary);
}

.badge-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--lb-accent);
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* === Navbar === */
.lb-navbar {
    background: var(--lb-bg);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--lb-text);
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--lb-transition);
}

.nav-link:hover {
    color: var(--lb-accent);
}

.dropdown-menu-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: var(--lb-shadow-lg);
    border-radius: var(--lb-radius);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--lb-transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-nav li a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--lb-text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dropdown-menu-nav li a:hover {
    background: #f8f8f8;
    color: var(--lb-accent);
}

/* === Hero Slider === */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    animation: slideInLeft 1s ease;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--lb-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 3;
}

.hero-prev, .hero-next {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--lb-transition);
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(255,255,255,0.3);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--lb-transition);
}

.hero-dot.active {
    background: #fff;
    width: 50px;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--lb-accent);
    margin: 1rem auto 0;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

section {
    margin-bottom: 5rem;
}

.flash-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.timer-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.timer-digits {
    display: flex;
    gap: 0.25rem;
    font-weight: 700;
}

.digit {
    background: rgba(0,0,0,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 30px;
    text-align: center;
}

/* === Categories === */
.category-card {
    display: block;
    text-align: center;
    transition: var(--lb-transition);
}

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

.category-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--lb-radius-lg);
    background: #f5f5f5;
    margin-bottom: 1rem;
    position: relative;
}

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

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

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lb-primary);
    font-family: var(--lb-body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Product Card === */
.product-card {
    background: #fff;
    border-radius: var(--lb-radius-lg);
    overflow: hidden;
    transition: var(--lb-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.product-card:hover {
    box-shadow: var(--lb-shadow-lg);
    transform: translateY(-3px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

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

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--lb-transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-primary);
    cursor: pointer;
    transition: var(--lb-transition);
    box-shadow: var(--lb-shadow-sm);
}

.action-btn:hover {
    background: var(--lb-primary);
    color: #fff;
}

.action-btn.active {
    background: var(--lb-accent);
    color: #fff;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--lb-body-font);
    line-height: 1.4;
    flex: 1;
}

.product-name a {
    color: var(--lb-text);
}

.product-name a:hover {
    color: var(--lb-accent);
}

.product-price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lb-primary);
}

.original-price {
    font-size: 0.875rem;
    color: #999;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #999;
}

.star-rating {
    display: inline-flex;
    gap: 0.125rem;
}

.star-rating i {
    font-size: 0.875rem;
}

/* === Placeholder Images === */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
    font-size: 3rem;
}

.placeholder-image.small {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.placeholder-image.large {
    aspect-ratio: 1;
    font-size: 5rem;
}

/* === Testimonials === */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow);
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card::before {
    content: '\F6B0';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--lb-accent);
    opacity: 0.3;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lb-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: #888;
}

/* === Brands === */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.brand-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: var(--lb-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--lb-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.brand-item:hover {
    border-color: var(--lb-accent);
    transform: translateY(-3px);
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--lb-transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-item span {
    font-weight: 600;
    color: var(--lb-text);
}

/* === FAQ === */
.accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: var(--lb-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background: #fff;
    color: var(--lb-text);
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--lb-primary);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background: #fafafa;
    color: #555;
    line-height: 1.7;
}

/* === Footer === */
.lb-footer {
    background: var(--lb-secondary);
    color: #fff;
    margin-top: 5rem;
    margin-bottom: 0;
}

.footer-newsletter {
    background: var(--lb-primary);
    padding: 3rem 0;
}

.newsletter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-subscribe {
    background: var(--lb-accent);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lb-transition);
}

.btn-subscribe:hover {
    background: #fff;
    color: var(--lb-primary);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-title {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--lb-accent);
    margin-right: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--lb-transition);
}

.footer-links a:hover {
    color: var(--lb-accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--lb-transition);
}

.footer-social a:hover {
    background: var(--lb-accent);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #fff;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright, .powered {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin: 0;
}

.powered i {
    color: var(--lb-accent);
}

/* === Mobile Menu === */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--lb-transition);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 90vw;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
}

.mobile-menu-search {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    color: var(--lb-text);
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.mobile-nav li a:hover {
    background: #f8f8f8;
    color: var(--lb-accent);
}

.mobile-nav li a i {
    width: 20px;
    font-size: 1.125rem;
}

.mobile-nav .divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0.5rem 0;
}

/* === Mobile Bottom Nav === */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    display: flex;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.625rem 0.25rem;
    color: #666;
    font-size: 0.7rem;
    text-decoration: none;
    position: relative;
}

.mbn-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mbn-item.active {
    color: var(--lb-primary);
}

.mbn-badge {
    position: absolute;
    top: 4px;
    right: 25%;
    background: var(--lb-accent);
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* === Cart === */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: #999;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.empty-state h3 {
    color: var(--lb-text);
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

.empty-cart, .empty-wishlist {
    background: #fafafa;
    border-radius: var(--lb-radius-lg);
}

.cart-section, .wishlist-section, .track-section, .livechat-section {
    padding: 2rem 0 6rem;
}

.cart-table {
    width: 100%;
    background: #fff;
    border-radius: var(--lb-radius);
    overflow: hidden;
}

.cart-table th, .cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.cart-table th {
    background: #f8f8f8;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-product h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-family: var(--lb-body-font);
}

.cart-product h5 a {
    color: var(--lb-text);
}

.cart-product small {
    color: #888;
    font-size: 0.8125rem;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.125rem;
    cursor: pointer;
}

.cart-remove-btn:hover {
    color: #a71d2a;
}

.cart-summary {
    background: #f8f8f8;
    border-radius: var(--lb-radius-lg);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.cart-summary h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.cart-summary .btn {
    margin-top: 1rem;
}

/* === Quantity Selector === */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
}

.qty-btn {
    background: #f8f8f8;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--lb-text);
}

.qty-btn:hover {
    background: var(--lb-primary);
    color: #fff;
}

.qty-input {
    border: none;
    width: 50px;
    height: 36px;
    text-align: center;
    background: #fff;
    font-size: 0.95rem;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* === Product Detail === */
.product-detail-section {
    padding: 2rem 0 5rem;
}

.product-gallery .gallery-main {
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: var(--lb-radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-gallery .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.thumb-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--lb-transition);
}

.thumb-item.active {
    border-color: var(--lb-primary);
}

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

.product-detail-info .product-brand {
    display: inline-block;
    background: var(--lb-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #666;
    flex-wrap: wrap;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-price-box .current-price {
    font-size: 2rem;
    font-weight: 700;
}

.product-price-box .original-price {
    font-size: 1.125rem;
}

.discount-badge {
    background: #dc3545;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-short-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stock-status {
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    border-radius: var(--lb-radius);
    font-weight: 500;
}

.in-stock {
    color: #198754;
}

.out-of-stock {
    color: #dc3545;
}

.product-form .form-group {
    margin-bottom: 1.5rem;
}

.size-options, .color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.size-option-label, .color-option-label {
    cursor: pointer;
}

.size-option-label input, .color-option-label input {
    display: none;
}

.size-option-label span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    min-width: 50px;
    text-align: center;
    transition: var(--lb-transition);
    font-size: 0.875rem;
}

.size-option-label input:checked + span {
    border-color: var(--lb-primary);
    background: var(--lb-primary);
    color: #fff;
}

.color-swatch {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: var(--lb-transition);
}

.color-option-label input:checked + .color-swatch {
    border-color: var(--lb-primary);
    transform: scale(1.1);
}

.product-actions-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions-buttons .btn {
    flex: 1;
    min-width: 130px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: var(--lb-radius);
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--lb-accent);
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.8125rem;
    color: #666;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
}

.product-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-text);
    transition: var(--lb-transition);
}

.product-share a:hover {
    background: var(--lb-primary);
    color: #fff;
}

/* === Product Tabs === */
.product-tabs-section .nav-tabs {
    border-bottom: 2px solid #f0f0f0;
}

.product-tabs-section .nav-link {
    border: none;
    color: #666;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.product-tabs-section .nav-link.active {
    color: var(--lb-primary);
    border-bottom-color: var(--lb-primary);
}

.product-tabs-section .tab-content {
    padding: 2rem 0;
}

.product-description {
    line-height: 1.8;
    color: #555;
}

.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.review-date {
    color: #999;
    font-size: 0.8125rem;
}

.review-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--lb-body-font);
}

.review-form {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: var(--lb-radius);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: var(--lb-transition);
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #ffc107;
}

/* === Checkout === */
.checkout-block {
    background: #fff;
    padding: 2rem;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow-sm);
    margin-bottom: 1.5rem;
}

.checkout-block h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.25rem;
}

.courier-options, .payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.courier-option, .payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: var(--lb-radius);
    cursor: pointer;
    transition: var(--lb-transition);
}

.courier-option:hover, .payment-option:hover {
    border-color: var(--lb-accent);
}

.courier-option input, .payment-option input {
    flex-shrink: 0;
}

.courier-info, .payment-info {
    flex: 1;
}

.courier-info strong, .payment-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.courier-info p, .payment-info p {
    margin: 0;
    font-size: 0.8125rem;
    color: #666;
}

.order-summary {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: var(--lb-radius-lg);
    position: sticky;
    top: 100px;
}

.order-summary h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.order-item-image {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

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

.qty-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--lb-primary);
    color: #fff;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-info h6 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    font-family: var(--lb-body-font);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item-info small {
    color: #888;
    font-size: 0.75rem;
}

.order-item-price {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.summary-totals {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.terms-text {
    font-size: 0.8125rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* === Auth === */
.auth-section {
    padding: 3rem 0 6rem;
}

.auth-card {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow);
    padding: 2.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #666;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.forgot-link {
    color: var(--lb-primary);
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.auth-footer a {
    color: var(--lb-primary);
    font-weight: 500;
}

/* === Account === */
.account-section {
    padding: 2rem 0 6rem;
}

.account-sidebar {
    background: #fff;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow-sm);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.account-user {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--lb-primary), var(--lb-secondary));
    color: #fff;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.account-user h5 {
    color: #fff;
    margin: 0 0 0.25rem;
    font-family: var(--lb-body-font);
}

.account-user p {
    color: rgba(255,255,255,0.8);
    font-size: 0.8125rem;
    margin: 0;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--lb-text);
    font-size: 0.9375rem;
    border-bottom: 1px solid #f8f8f8;
    transition: var(--lb-transition);
}

.account-menu li a i {
    width: 20px;
    color: #999;
}

.account-menu li a:hover,
.account-menu li a.active {
    background: #f8f8f8;
    color: var(--lb-primary);
}

.account-menu li a.active i {
    color: var(--lb-primary);
}

.account-content {
    background: #fff;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow-sm);
    padding: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: var(--lb-radius);
    border-left: 4px solid var(--lb-primary);
}

.stat-card i {
    font-size: 2rem;
    color: var(--lb-primary);
}

.stat-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.stat-card span {
    color: #666;
    font-size: 0.8125rem;
}

.order-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: var(--lb-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.order-card-header h5 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-family: var(--lb-body-font);
}

.order-card-header small {
    color: #888;
}

.order-card-footer {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.info-card {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: var(--lb-radius);
    text-align: center;
}

.info-card strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.info-card p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-dot {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--lb-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--lb-primary);
}

.timeline-content strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.8125rem;
    color: #888;
}

.timeline-content p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #666;
}

/* Addresses */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.address-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: var(--lb-radius);
    padding: 1.5rem;
    position: relative;
}

.address-card:has(.default-badge) {
    border-color: var(--lb-accent);
}

.default-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--lb-accent);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.address-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: var(--lb-radius);
    padding: 1.25rem;
}

.review-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.review-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.admin-reply {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f0f7ff;
    border-left: 3px solid var(--lb-accent);
    font-size: 0.875rem;
}

/* === Track Order === */
.track-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow);
    padding: 3rem;
}

.track-header {
    text-align: center;
    margin-bottom: 2rem;
}

.track-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.track-header i {
    color: var(--lb-accent);
}

.track-form {
    margin-bottom: 2rem;
}

.track-result {
    background: #f8f8f8;
    border-radius: var(--lb-radius);
    padding: 2rem;
    margin-top: 2rem;
}

.track-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

/* === Order Success === */
.order-success-section {
    padding: 4rem 0;
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow);
    padding: 3rem;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #d4edda;
    color: #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 1.5rem;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-card h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-message {
    color: #666;
    margin-bottom: 2rem;
}

.order-info-box {
    background: #f8f8f8;
    border-radius: var(--lb-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.order-items-summary {
    text-align: left;
    margin-bottom: 1.5rem;
}

.order-items-summary h4 {
    margin-bottom: 1rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Live Chat Widget === */
.livechat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
}

.livechat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--lb-primary);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--lb-shadow-lg);
    position: relative;
    transition: var(--lb-transition);
}

.livechat-toggle:hover {
    transform: scale(1.05);
}

.livechat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.livechat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    max-width: 90vw;
    height: 500px;
    max-height: 70vh;
    background: #fff;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.livechat-box.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.livechat-header {
    background: var(--lb-primary);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.livechat-agent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.agent-info h5 {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-family: var(--lb-body-font);
}

.agent-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.agent-status i {
    font-size: 0.5rem;
    color: #4ade80;
}

.livechat-minimize {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}

.livechat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f8f8;
}

.chat-welcome {
    text-align: center;
    color: #999;
    padding: 2rem 1rem;
}

.chat-welcome i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.chat-welcome h6 {
    color: var(--lb-text);
    margin-bottom: 0.5rem;
}

.chat-message {
    margin-bottom: 1rem;
    max-width: 80%;
    clear: both;
}

.chat-message.chat-customer {
    float: right;
}

.chat-message.chat-admin {
    float: left;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-customer .message-content {
    background: var(--lb-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-admin .message-content {
    background: #fff;
    color: var(--lb-text);
    border-bottom-left-radius: 4px;
    border: 1px solid #e0e0e0;
}

.message-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.25rem;
    clear: both;
    display: block;
}

.chat-customer .message-time {
    text-align: right;
}

.livechat-footer {
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

#livechatForm {
    display: flex;
    gap: 0.5rem;
}

#livechatForm input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
}

#livechatForm button {
    background: var(--lb-primary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

#livechatForm button:hover {
    background: var(--lb-secondary);
}

/* === Static Pages === */
.static-page-section, .category-section, .brand-section, .search-section, .faq-page-section, .contact-section {
    padding: 2rem 0 6rem;
}

.static-page-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: var(--lb-radius-lg);
    box-shadow: var(--lb-shadow-sm);
}

.page-body {
    line-height: 1.8;
    color: #555;
}

.page-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.page-body ul {
    padding-left: 1.5rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

/* === Contact Page === */
.contact-info-card, .contact-form-card {
    background: #fff;
    border-radius: var(--lb-radius-lg);
    padding: 2rem;
    box-shadow: var(--lb-shadow-sm);
    height: 100%;
}

.contact-info-card h2 {
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: var(--lb-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 90px;
    width: 45px;
    height: 45px;
    background: var(--lb-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: var(--lb-shadow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--lb-transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--lb-accent);
    color: #fff;
}

/* === Toast === */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast-notification {
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--lb-primary);
}

.toast-notification.success {
    border-left-color: #198754;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.warning {
    border-left-color: #ffc107;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* === Shop === */
.shop-section {
    padding: 2rem 0 6rem;
}

.shop-sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow-sm);
    position: sticky;
    top: 100px;
}

.filter-widget {
    margin-bottom: 2rem;
}

.filter-widget:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lb-primary);
    font-family: var(--lb-body-font);
    font-weight: 600;
}

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

.filter-list li a {
    display: block;
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.9rem;
    transition: var(--lb-transition);
}

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

.size-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.size-option {
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8125rem;
    color: #555;
    transition: var(--lb-transition);
}

.size-option:hover, .size-option.active {
    border-color: var(--lb-primary);
    background: var(--lb-primary);
    color: #fff;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: var(--lb-radius);
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-info {
    font-size: 0.9rem;
    color: #666;
}

.toolbar-sort {
    min-width: 200px;
}

.pagination-wrapper {
    margin-top: 2rem;
}

.pagination {
    gap: 0.25rem;
}

.page-link {
    color: var(--lb-primary);
    border-radius: var(--lb-radius) !important;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 0.75rem;
}

.page-item.active .page-link {
    background: var(--lb-primary);
    border-color: var(--lb-primary);
    color: #fff;
}
