/* NIO Holding Custom Styles */
/* Additional custom styles for NIO Holding Trading Company theme */

/* Professional Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--theme-text-color);
    background-color: var(--theme-bg-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-primary-color);
    font-weight: 600;
}

/* Trading Company Brand Colors */
.nio-primary { color: var(--theme-primary-color); }
.nio-accent { color: var(--theme-accent-color); }
.nio-success { color: var(--theme-success-color); }

.nio-bg-primary { background-color: var(--theme-primary-color); }
.nio-bg-accent { background-color: var(--theme-accent-color); }
.nio-bg-success { background-color: var(--theme-success-color); }

/* Professional Spacing */
.section-padding {
    padding: 3rem 0;
}

/* Header Styles - Matching Image Design */
.ecommerce-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Promotional Banner - Dark Brown */
.promo-banner {
    background-color: #5D4037; /* Dark brown */
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-banner.hidden {
    display: none;
}

.promo-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-close-banner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.btn-close-banner:hover {
    opacity: 1;
}

/* Main Header Container */
.main-header-container {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.main-header-row {
    min-height: 60px;
    justify-content: space-between;
}

/* Country Selector */
.country-selector-wrapper {
    display: flex;
    align-items: center;
}

.country-selector-btn {
    background: none;
    border: none;
    color: #000;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.country-selector-btn:hover {
    color: #666;
}

.country-flag {
    margin-right: 8px;
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
}

.country-flag i {
    font-size: 1rem;
}

.country-name {
    font-weight: 500;
}

.country-dropdown-menu {
    min-width: 200px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 5px;
}

.country-dropdown-menu .dropdown-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.country-dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
}

.flag-icon {
    display: inline-block;
    width: 20px;
    height: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

/* Flag Icons - Using emoji directly in HTML, no CSS needed */

/* Logo Wrapper */
.logo-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-logo {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.logo-image {
    max-height: 50px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header Icons Wrapper */
.header-icons-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.btn-icon {
    background: none;
    border: none;
    color: #000;
    font-size: 1.2rem;
    padding: 8px 12px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-icon:hover {
    color: #666;
}

.icon-text {
    margin-left: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.icon-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.cart-count,
.wishlist-count {
    background-color: #000;
    color: #fff;
}

/* Search Expanded */
.header-search-expanded {
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
}

.search-input-header {
    border-radius: 0;
    border: 1px solid #e5e7eb;
    padding: 10px 15px;
}

.search-btn-header {
    border-radius: 0;
    border: 1px solid #e5e7eb;
    border-left: none;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
}

.search-btn-header:hover {
    background-color: #f5f5f5;
}

/* Navigation Bar */
.navigation-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
}

.navigation-bar .navbar-toggler {
    border: none;
    padding: 8px;
}

.navigation-bar .navbar-toggler:focus {
    box-shadow: none;
}

.navigation-bar .navbar-nav {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.navigation-bar .nav-link {
    color: #000 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 15px 12px !important;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    display: block;
}

.navigation-bar .nav-link:hover {
    color: #666 !important;
}

.navigation-bar .nav-item {
    list-style: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-header-row {
        flex-wrap: wrap;
    }
    
    .logo-wrapper {
        order: 1;
        width: 100%;
        margin: 10px 0;
    }
    
    .country-selector-wrapper {
        order: 2;
    }
    
    .header-icons-wrapper {
        order: 3;
        margin-left: auto;
    }
    
    .icon-text {
        display: none;
    }
    
    .navigation-bar .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    
    .navigation-bar .nav-item {
        width: 100%;
    }
    
    .navigation-bar .nav-link {
        padding: 12px 15px !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 768px) {
    .trading-highlight {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .promo-text {
        font-size: 0.8rem;
        padding: 0 40px;
    }
    
    .btn-close-banner {
        right: 10px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-image {
        max-height: 40px;
    }
    
    .country-name {
        display: none;
    }
    
    .btn-icon {
        padding: 8px;
        font-size: 1.1rem;
    }
    
    .navigation-bar .nav-link {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER STYLES - Matching Image Design
   ============================================ */

.nio-footer {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 0;
    margin-top: 50px;
}

/* Footer Top Section */
.footer-top-section {
    padding: 40px 0 30px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    margin-bottom: 10px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545; /* Red color like LOVE, BONITO */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-tagline {
    color: #000000 !important;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.footer-social-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon-circle:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0;
}

/* Footer Main Section */
.footer-main-section {
    padding: 40px 0;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-link {
    color: #000000 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-link:hover {
    color: #333333 !important;
    text-decoration: underline;
}

/* Newsletter Section */
.footer-newsletter-section {
    margin-bottom: 30px;
}

.newsletter-form {
    margin-bottom: 10px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    font-size: 0.9rem;
    color: #000000;
    background-color: #ffffff;
}

.newsletter-input:focus {
    outline: none;
    border-color: #666;
    box-shadow: none;
}

.newsletter-submit-btn {
    background-color: #5D4037; /* Dark brown */
    color: #fff;
    border: 1px solid #5D4037;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background-color: #4a3229;
    color: #fff;
}

.newsletter-description {
    color: #000000 !important;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Payment Methods Section */
.footer-payment-section {
    margin-bottom: 30px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.payment-method-item {
    background-color: #f5f5f5;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
    transition: all 0.2s;
    min-height: 50px;
}

.payment-method-item:hover {
    background-color: #e5e7eb;
    border-color: #ccc;
}

.payment-method-item i {
    color: #000000;
}

/* Shipping Section */
.footer-shipping-section {
    margin-bottom: 20px;
}

.shipping-label {
    color: #000000 !important;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.shipping-country-btn {
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb;
    color: #000000 !important;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.shipping-country-btn:hover {
    border-color: #ccc;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.shipping-country-btn:focus {
    box-shadow: none;
    border-color: #666;
    color: #000000 !important;
}

.shipping-flag {
    margin-right: 8px;
    font-size: 1.2rem;
}

.shipping-country-name {
    flex: 1;
    text-align: left;
}

.shipping-country-menu {
    min-width: 200px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 5px;
}

.shipping-country-menu .dropdown-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.shipping-country-menu .dropdown-item:hover {
    background-color: #f5f5f5;
}

/* Footer Bottom Section */
.footer-bottom-section {
    padding: 25px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-copyright-text {
    color: #000000 !important;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.footer-legal-section {
    display: flex;
    justify-content: flex-end;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    color: #000000 !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: #333333 !important;
    text-decoration: underline;
}

/* Responsive Footer Styles */
@media (max-width: 991px) {
    .footer-top-section {
        padding: 30px 0 20px;
    }
    
    .footer-brand-section {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-social-section {
        justify-content: center;
    }
    
    .footer-main-section {
        padding: 30px 0;
    }
    
    .footer-legal-section {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top-section {
        padding: 25px 0 15px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .social-icon-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-main-section {
        padding: 25px 0;
    }
    
    .footer-column-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .payment-method-item {
        padding: 10px;
        font-size: 1.3rem;
        min-height: 45px;
    }
    
    .footer-bottom-section {
        padding: 20px 0;
    }
    
    .footer-copyright-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .footer-legal-section {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-legal-links {
        gap: 15px;
    }
    
    .footer-legal-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer-social-icons {
        gap: 8px;
    }
    
    .social-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .main-header-container {
        padding: 10px 0;
    }
    
    .country-selector-btn {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    
    .btn-icon {
        padding: 6px;
        font-size: 1rem;
    }
    
    .icon-badge {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        top: 3px;
        right: 3px;
    }
}

/* ============================================
   LOVE BONITO STYLE PRODUCT PAGE
   ============================================ */

.lb-product-page {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 0;
}

/* Breadcrumb Navigation */
.lb-breadcrumb-nav {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.lb-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

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

.lb-breadcrumb-item + .lb-breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: #999999;
}

.lb-breadcrumb-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lb-breadcrumb-item a:hover {
    color: #666666;
    text-decoration: underline;
}

.lb-breadcrumb-item.active {
    color: #999999;
}

.lb-product-container {
    max-width: 100%;
    padding: 0;
}

.lb-product-row {
    margin: 0;
    padding: 40px 0;
}

/* Product Images Section */
.lb-product-images {
    padding: 0;
}

.lb-image-gallery {
    position: sticky;
    top: 100px;
}

.lb-main-image-wrapper {
    position: relative;
    width: 100%;
    background: #ffffff;
    margin-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
}

.lb-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lb-zoom-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    pointer-events: none;
}

.lb-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.lb-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    overflow: hidden;
}

.lb-thumbnail:hover {
    border-color: #000000;
}

.lb-thumbnail.active {
    border-color: #000000;
}

.lb-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-no-image {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999999;
    background: #f5f5f5;
}

.lb-no-image i {
    font-size: 64px;
    margin-bottom: 16px;
}

/* Product Information Section */
.lb-product-info {
    padding: 0 40px;
}

.lb-product-header {
    margin-bottom: 20px;
}

.lb-product-title {
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Price Section */
.lb-price-section {
    margin-bottom: 30px;
}

.lb-price-with-discount {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.lb-price-single {
    display: flex;
    align-items: center;
}

.lb-current-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.lb-compare-price {
    font-size: 1.2rem;
    color: #999999;
    text-decoration: line-through;
    margin-left: 10px;
}

.lb-discount-badge {
    background-color: #000000;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Color Section */
.lb-color-section {
    margin-bottom: 25px;
}

.lb-option-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lb-color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lb-color-option {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.lb-color-option:hover {
    border-color: #000000;
}

.lb-color-option.selected {
    border-color: #000000;
    border-width: 3px;
}

.lb-color-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lb-color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-color-name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.75rem;
    color: #000000;
    text-align: center;
    padding: 4px;
}

/* Size Section */
.lb-size-section {
    margin-bottom: 25px;
}

.lb-size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.lb-size-guide-link {
    font-size: 0.85rem;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lb-size-guide-link:hover {
    color: #666666;
}

.lb-size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lb-size-option {
    min-width: 50px;
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #000000;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.lb-size-option:hover {
    border-color: #000000;
}

.lb-size-option.selected {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.lb-size-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Stock Status */
.lb-stock-status {
    margin-bottom: 25px;
}

.lb-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

.lb-stock-badge.in-stock {
    color: #38a169;
    background: #f0fff4;
}

.lb-stock-badge.out-of-stock {
    color: #e53e3e;
    background: #fff5f5;
}

.lb-stock-badge i {
    font-size: 0.85rem;
}

/* Actions Section */
.lb-actions {
    margin-bottom: 30px;
}

.lb-actions-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.lb-add-to-bag-form {
    flex: 1;
}

.lb-btn-add-to-bag {
    width: 100%;
    padding: 16px 24px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb-btn-add-to-bag:hover:not(:disabled) {
    background-color: #333333;
}

.lb-btn-add-to-bag:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.lb-btn-wishlist {
    width: 56px;
    min-width: 56px;
    padding: 16px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.lb-btn-wishlist:hover {
    background-color: #f5f5f5;
    border-color: #333333;
}

.lb-btn-wishlist.active,
.lb-btn-wishlist.active:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.lb-btn-wishlist.active i {
    color: #ffffff;
}

.lb-btn-wishlist i {
    color: #000000;
    transition: color 0.3s ease;
}

/* Description Section */
.lb-description-section {
    margin-bottom: 40px;
}

.lb-description-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
    transition: max-height 0.3s ease;
}

.lb-read-more-btn {
    background: none;
    border: none;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 10px 0;
    margin-top: 10px;
}

.lb-read-more-btn:hover {
    color: #666666;
}

/* Details Section */
.lb-details-section {
    border-top: 1px solid #e5e5e5;
    padding: 40px 0;
    margin-top: 40px;
}

.lb-details-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.lb-tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #999999;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s ease;
}

.lb-tab-btn:hover {
    color: #000000;
}

.lb-tab-btn.active {
    color: #000000;
    border-bottom-color: #000000;
}

.lb-tab-content {
    display: none;
}

.lb-tab-content.active {
    display: block;
}

.lb-tab-inner {
    padding: 20px 0;
}

.lb-full-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333333;
}

.lb-no-content {
    color: #999999;
    font-style: italic;
}

.lb-brand-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.lb-brand-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lb-brand-info p {
    font-size: 0.95rem;
    color: #333333;
    margin: 0;
}

/* Specifications */
.lb-specifications {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lb-spec-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lb-spec-label {
    font-weight: 600;
    color: #000000;
    min-width: 150px;
    font-size: 0.9rem;
}

.lb-spec-value {
    color: #333333;
    font-size: 0.9rem;
    flex: 1;
}

/* Care Instructions */
.lb-care-instructions h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lb-care-instructions p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
}

/* Related Products Section */
.lb-related-section {
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}

.lb-related-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

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

.lb-related-card {
    background: #ffffff;
}

.lb-related-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lb-related-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.lb-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lb-related-link:hover .lb-related-image img {
    transform: scale(1.05);
}

.lb-related-info {
    text-align: center;
}

.lb-related-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lb-related-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lb-related-price .lb-current-price {
    font-size: 1rem;
    font-weight: 600;
}

.lb-related-price .lb-compare-price {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .lb-product-info {
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .lb-image-gallery {
        position: relative;
        top: 0;
    }
    
    .lb-product-title {
        font-size: 1.75rem;
    }
    
    .lb-current-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .lb-breadcrumb-nav {
        padding: 12px 0;
    }
    
    .lb-breadcrumb {
        font-size: 0.8rem;
    }
    
    .lb-breadcrumb-item + .lb-breadcrumb-item::before {
        padding: 0 8px;
    }
    
    .lb-product-row {
        padding: 20px 0;
    }
    
    .lb-product-info {
        padding: 0 15px;
    }
    
    .lb-product-title {
        font-size: 1.5rem;
    }
    
    .lb-current-price {
        font-size: 1.2rem;
    }
    
    .lb-compare-price {
        font-size: 1rem;
    }
    
    .lb-thumbnails {
        justify-content: center;
    }
    
    .lb-actions-wrapper {
        gap: 10px;
    }
    
    .lb-btn-wishlist {
        width: 50px;
        min-width: 50px;
        padding: 14px;
    }
    
    .lb-details-tabs {
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .lb-tab-btn {
        white-space: nowrap;
        font-size: 0.85rem;
    }
    
    .lb-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .lb-breadcrumb {
        font-size: 0.75rem;
    }
    
    .lb-breadcrumb-item + .lb-breadcrumb-item::before {
        padding: 0 6px;
    }
    
    .lb-product-title {
        font-size: 1.3rem;
    }
    
    .lb-current-price {
        font-size: 1.1rem;
    }
    
    .lb-actions-wrapper {
        gap: 8px;
    }
    
    .lb-btn-add-to-bag {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .lb-btn-wishlist {
        width: 48px;
        min-width: 48px;
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .lb-related-grid {
        grid-template-columns: 1fr;
    }
    
    .lb-spec-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .lb-spec-label {
        min-width: auto;
    }
}
