/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    min-height: 100vh;
    color: #000000;
    line-height: 1.7;
    transition: padding-top 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
}

body.tabs-sticky {
    padding-top: 100px;
}

@media (max-width: 768px) {
    body.tabs-sticky {
        padding-top: 90px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.mobile-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-header.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.header-logo:hover {
    opacity: 0.7;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.home-button:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Tab Switcher Styles - Matching ngcnew */
.tab-switcher-wrapper {
    position: relative;
    margin: 0 auto 40px;
    width: 100%;
    overflow: visible;
    padding-top: 4px;
}

.tab-switcher {
    display: flex;
    gap: 12px;
    margin: 0 auto 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-switcher-wrapper.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 16px 0 16px 0 !important;
    margin: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    animation: slideDown 0.3s ease-out !important;
    z-index: 10000 !important;
    transform: translateZ(0) !important;
    overflow: visible !important;
}

.tab-switcher-wrapper.sticky .tab-switcher {
    margin: 0 auto !important;
    padding: 0 24px !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tab-button.active:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

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

/* Table Wrapper */
.table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop-specific table wrapper improvements */
@media (min-width: 769px) {
    .table-wrapper {
        padding: 32px;
        border-radius: 16px;
    }
    
    #accessories-content .table-wrapper {
        padding: 40px;
    }
}

.table-wrapper:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

.desktop-table {
    min-width: 1000px;
}

/* Desktop-specific table improvements */
@media (min-width: 769px) {
    #accessories-content .desktop-table {
        min-width: 1100px;
    }
    
    #accessories-content .desktop-table thead {
        background: #fafafa;
    }
    
    #accessories-content .desktop-table thead th {
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }
}

.mobile-cards {
    display: none;
}

/* Accessories Container */
.accessories-container {
    width: 100%;
}

/* Desktop Accessories Grid */
.desktop-accessories-grid {
    display: none;
}

@media (min-width: 769px) {
    .desktop-accessories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 32px;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .desktop-accessories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-accessories-grid {
        display: none !important;
    }
    
    .mobile-cards {
        display: block;
    }
}

/* Desktop Accessory Card */
.desktop-accessory-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.desktop-accessory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Desktop Card Image Section */
.desktop-card-image-section {
    position: relative;
    width: 100%;
    background: #fafafa;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.desktop-card-slider {
    margin: 0;
    border-radius: 0;
    background: transparent;
    height: 100%;
}

.desktop-card-slider .accessory-slider {
    height: 100%;
}

.desktop-card-slider .accessory-slide {
    height: 100%;
    aspect-ratio: 1 / 1;
}

.desktop-card-slider .accessory-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-accessory-card:hover .desktop-card-slider .accessory-slide-image {
    transform: scale(1.05);
}

.desktop-card-slider .accessory-slider-prev,
.desktop-card-slider .accessory-slider-next {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.desktop-accessory-card:hover .desktop-card-slider .accessory-slider-prev,
.desktop-accessory-card:hover .desktop-card-slider .accessory-slider-next {
    opacity: 1;
}

.desktop-card-slider .accessory-slider-prev {
    left: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.desktop-card-slider .accessory-slider-next {
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.desktop-card-slider .accessory-slider-dots {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    padding: 20px 16px 36px;
}

.desktop-card-slider .accessory-slider-dot {
    width: 8px;
    height: 8px;
}

.desktop-card-slider .accessory-slider-dot.active {
    width: 24px;
}

.desktop-card-no-image {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.4);
}

.desktop-card-no-image i {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* Desktop Card Content */
.desktop-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.desktop-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    min-height: 3.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.desktop-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 0;
    margin: 4px 0;
}

/* Desktop Card Options */
.desktop-card-options {
    margin: 0;
    padding: 0;
    border: none;
}

.desktop-card-options .accessory-options-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-card-options .accessory-options-list {
    gap: 10px;
}

.desktop-card-options .accessory-option {
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.desktop-card-options .accessory-option-thumbnail {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-card-options .accessory-option:hover .accessory-option-thumbnail {
    border-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.desktop-card-options .accessory-option.active .accessory-option-thumbnail {
    border-color: #000000;
    border-width: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.desktop-card-options .accessory-option-name {
    font-size: 0.6875rem;
    margin-top: 6px;
    max-width: 64px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

/* Desktop Card Actions */
.desktop-card-actions {
    margin-top: auto;
    padding-top: 8px;
}

.desktop-card-info-btn {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    text-decoration: none;
}

.desktop-card-info-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    transition: width 0.2s ease;
}

.desktop-card-info-btn:hover {
    color: #000000;
}

.desktop-card-info-btn:hover::after {
    width: 100%;
}

.desktop-card-info-btn:active {
    opacity: 0.7;
}

.desktop-card-info-btn i {
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.desktop-card-info-btn:hover i {
    opacity: 1;
}

thead {
    background: #fafafa;
}

th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    letter-spacing: 0.01em;
}

/* Desktop-specific header improvements */
@media (min-width: 769px) {
    th {
        padding: 18px 16px;
        font-size: 0.9375rem;
    }
    
    #accessories-table th:first-child {
        padding-left: 20px;
    }
    
    #accessories-table th:last-child {
        padding-right: 20px;
    }
}

th.price-header {
    text-align: center;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    min-width: 140px;
}

th.price-header:first-of-type {
    padding-right: 36px;
}

th.price-header:last-of-type {
    padding-left: 36px;
}

/* Remove black background from price headers in other-tea table */
#other-tea-content th.price-header {
    background: transparent;
    color: #000000;
    border-radius: 0;
    padding: 15px 10px;
    text-align: left;
}

#other-tea-content th.price-header:first-of-type {
    padding-right: 10px;
}

#other-tea-content th.price-header:last-of-type {
    padding-left: 10px;
}

/* Align price cells with headers in other-tea table */
#other-tea-content td.price {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}

#other-tea-content td.price:first-of-type {
    padding-left: 10px;
    padding-right: 10px;
}

#other-tea-content td.price:last-of-type {
    padding-left: 10px;
    padding-right: 10px;
}

/* Align price cells with headers in matcha table */
#matcha-content td.price {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}

#matcha-content td.price:first-of-type {
    padding-left: 10px;
    padding-right: 10px;
}

#matcha-content td.price:last-of-type {
    padding-left: 10px;
    padding-right: 10px;
}

td {
    padding: 20px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

/* Desktop-specific table improvements */
@media (min-width: 769px) {
    td {
        padding: 28px 16px;
    }
    
    /* Align price cells with headers in other-tea table on desktop */
    #other-tea-content td.price {
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;
    }
    
    #other-tea-content td.price:first-of-type {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    #other-tea-content td.price:last-of-type {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Align price cells with headers in matcha table on desktop */
    #matcha-content td.price {
        padding-left: 16px;
        padding-right: 16px;
        text-align: left;
    }
    
    #matcha-content td.price:first-of-type {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    #matcha-content td.price:last-of-type {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Better spacing for accessories table */
    #accessories-table td:first-child {
        padding: 28px 20px;
        min-width: 400px;
    }
    
    #accessories-table td:nth-child(2) {
        padding: 28px 24px;
        min-width: 280px;
        vertical-align: top;
    }
    
    #accessories-table td:last-child {
        padding: 28px 20px;
        min-width: 180px;
        vertical-align: top;
    }
}

td.price {
    padding: 20px 16px;
    position: relative;
}

td.price:first-of-type {
    border-right: none;
    padding-right: 56px;
    position: relative;
}

td.price:first-of-type::after {
    content: '';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.12);
}

td.price:last-of-type {
    border-left: none;
    padding-left: 56px;
}

tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Desktop-specific row hover improvements */
@media (min-width: 769px) {
    #accessories-table tbody tr {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #accessories-table tbody tr:hover {
        background: rgba(0, 0, 0, 0.03);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    #accessories-table tbody tr:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
}

.cultivar-name-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cultivar-name {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    letter-spacing: -0.01em;
    flex: 1;
}

/* Desktop-specific cultivar name improvements for accessories */
@media (min-width: 769px) {
    #accessories-table .cultivar-name {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 4px;
        letter-spacing: -0.02em;
    }
}

.origin {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.65);
    margin-top: 4px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.origin-tooltip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.75rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 2px 4px;
    margin: -2px -4px;
    border-radius: 4px;
    user-select: none;
    -webkit-user-select: none;
}

.origin-tooltip-trigger:hover {
    color: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.03);
}

.origin-tooltip-trigger i {
    font-size: 0.875rem;
    pointer-events: none;
}

/* Profile Button */
.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.profile-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.profile-btn:active {
    transform: translateY(0);
}

.profile-btn-table {
    font-size: 0.6875rem;
    padding: 4px 10px;
    margin-top: 8px;
    display: inline-block;
}

/* Rating Bars */
.rating-bars {
    display: flex;
    gap: 3px;
    align-items: center;
}

.bar {
    width: 20px;
    height: 8px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.bar.filled {
    background: #2bac2b;
}

.bar.partial {
    background: rgba(0, 0, 0, 0.1);
}

.bar.partial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--fill-percentage, 0%);
    background: #2bac2b;
    border-radius: 2px;
}

.price {
    text-align: center;
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    padding: 16px 12px !important;
    transition: all 0.2s ease;
}

/* Desktop-specific price improvements for accessories */
@media (min-width: 769px) {
    #accessories-table td.price {
        text-align: left;
        padding: 0 !important;
        background: transparent;
        vertical-align: top;
        font-size: 1.5rem;
        font-weight: 700;
        color: #000000;
        letter-spacing: -0.02em;
        line-height: 1.4;
    }
}

tbody tr:hover .price {
    background: rgba(0, 0, 0, 0.04);
}

.price.na {
    color: rgba(0, 0, 0, 0.35);
    font-size: 0.9375rem;
    font-weight: 500;
    font-style: italic;
}

/* Suitable Badges */
.suitable-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.badge.active {
    background: #2bac2b;
    color: #ffffff;
}

.badge.inactive {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.4);
}

/* Disclaimer */
.disclaimer {
    margin-top: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer p {
    margin-bottom: 12px;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer strong {
    color: #000000;
    font-weight: 600;
}

/* Mobile Card Styles */
.mobile-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-card-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 12px;
}

.mobile-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.mobile-card-origin {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.3;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-card-ratings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-rating-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.mobile-rating-label {
    font-size: 0.6875rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    width: 100%;
    font-weight: 500;
}

.mobile-rating-value {
    display: flex;
    justify-content: flex-start;
}

.mobile-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mobile-card-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 8px;
}

.mobile-card-value {
    flex: 1;
    text-align: right;
}

.mobile-card-prices {
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-price-item:hover {
    transform: translateX(2px);
}

.mobile-price-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500; 
}

.mobile-price-value {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.mobile-price-value.na {
    color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px 90px;
    }

    .logo-image {
        height: 28px;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .section-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 32px;
    }

    .tab-switcher-wrapper.sticky {
        padding: 12px 0 12px 0 !important;
    }

    .tab-switcher-wrapper.sticky .tab-switcher {
        padding: 0 20px !important;
    }

    .tab-switcher {
        gap: 8px;
        margin-bottom: 32px;
    }

    .tab-button {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }

    .social-icons-row {
        gap: 20px;
    }

    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .table-wrapper {
        padding: 0;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        border: none;
    }

    .desktop-table {
        display: none;
    }

    .mobile-cards {
        display: block;
        padding: 0;
    }

    .rating-bars {
        justify-content: flex-start;
    }

    .bar {
        width: 14px;
        height: 6px;
    }

    .suitable-badges {
        justify-content: flex-end;
        gap: 4px;
    }

    .badge {
        padding: 4px 8px;
        font-size: 0.6875rem;
    }

    .disclaimer {
        margin-top: 30px;
        padding: 20px;
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .profile-intro {
        padding: 0 10px;
    }

    .profile-intro p {
        font-size: 0.8125rem;
    }

    .social-icons-row {
        gap: 12px;
        margin-top: 28px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 16px 80px;
    }

    .logo-image {
        height: 24px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .tab-switcher-wrapper.sticky {
        padding: 10px 0 10px 0 !important;
    }

    .tab-switcher-wrapper.sticky .tab-switcher {
        padding: 0 16px !important;
    }

    .tab-button {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .mobile-card {
        padding: 12px;
    }

    .mobile-card-title {
        font-size: 0.9375rem;
    }

    .mobile-card-prices {
        margin-top: 12px;
        padding: 12px;
    }

    .mobile-price-label {
        font-size: 0.675rem;
    }

    .mobile-price-value {
        font-size: 0.775rem;
    }

    .mobile-price-value.na {
        font-size: 0.775rem;
    }

    .mobile-card-ratings {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .mobile-card-row {
        padding: 6px 0;
    }

    .mobile-card-prices {
        gap: 8px;
    }

    .mobile-price-item {
        min-width: 55px;
    }

    .bar {
        width: 12px;
        height: 5px;
    }
}

/* Footer */
.footer {
    margin-top: 48px;
    text-align: center;
    padding: 48px 0 32px;
    color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.footer p {
    margin-bottom: 0;
    font-size: 0.8125rem;
    font-weight: 400;
}

.footer a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #000000;
    text-decoration: underline;
}

.profile-intro {
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.profile-intro p {
    font-size: 0.675rem;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
    font-style: normal;
}

.links-section {
    margin-bottom: 10px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    text-decoration: none;
    color: #000000;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.social-icon:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Origin Tooltip */
.origin-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.origin-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.origin-tooltip-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.origin-tooltip.active .origin-tooltip-content {
    transform: scale(1);
}

.origin-tooltip-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #000000;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.origin-tooltip-close:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.origin-tooltip-image {
    width: 600px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .origin-tooltip-content {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 8px;
    }
    
    .origin-tooltip-image {
        width: 100%;
        max-width: 600px;
    }
    
    .origin-tooltip-close {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
        font-size: 0.875rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Floating Purchase Button */
.floating-purchase-btn {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: calc(1200px - 32px);
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.floating-purchase-btn i {
    font-size: 1.125rem;
}

.floating-purchase-btn:hover {
    background: #333333;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%) translateY(-2px);
}

.floating-purchase-btn:active {
    background: #1a1a1a;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

/* Purchase Modal */
.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.purchase-modal.active {
    opacity: 1;
    visibility: visible;
}

.purchase-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.purchase-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.purchase-modal.active .purchase-modal-content {
    transform: scale(1);
}

.purchase-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.purchase-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.purchase-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.01em;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.purchase-option {
    padding: 24px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.purchase-option-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.purchase-option-description {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.purchase-social-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.purchase-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.purchase-social-btn.messenger {
    background: #0084ff;
    color: #ffffff;
    border-color: #0084ff;
}

.purchase-social-btn.messenger:hover {
    background: #0066cc;
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.purchase-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: none;
}

.purchase-social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
    opacity: 0.9;
}

.purchase-social-btn i {
    font-size: 1.125rem;
}

.purchase-social-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .floating-purchase-btn {
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: none;
        padding: 14px 20px;
        font-size: 0.9375rem;
        border-radius: 10px;
    }
    
    .floating-purchase-btn i {
        font-size: 1rem;
    }

    .purchase-modal {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0;
    }

    .purchase-modal-content {
        padding: 24px;
        max-height: 90vh;
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .purchase-modal.active .purchase-modal-content {
        transform: translateY(0);
    }

    .purchase-modal-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .purchase-option {
        padding: 20px;
    }

    .purchase-option-title {
        font-size: 1rem;
    }

    .purchase-option-description {
        font-size: 0.875rem;
    }

    .purchase-social-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .purchase-social-btn {
        padding: 14px 20px;
        font-size: 0.875rem;
    }
}

/* Profile Modal */
.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.profile-modal.active {
    opacity: 1;
    visibility: visible;
}

.profile-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.profile-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.profile-modal.active .profile-modal-content {
    transform: scale(1);
}

.profile-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.profile-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.profile-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.01em;
}

.profile-language-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.profile-tab-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.profile-tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.profile-tab-button.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.profile-content {
    padding: 0;
}

.profile-text {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin: 0;
    text-align: left;
    white-space: pre-line;
}

.profile-text strong {
    font-weight: 600;
    color: #000000;
}

@media (max-width: 768px) {
    .profile-modal {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0;
    }

    .profile-modal-content {
        padding: 24px;
        max-height: 90vh;
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .profile-modal.active .profile-modal-content {
        transform: translateY(0);
    }

    .profile-modal-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .profile-language-tabs {
        margin-bottom: 20px;
        gap: 8px;
    }

    .profile-tab-button {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .profile-text {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .profile-btn {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .profile-modal-content {
        padding: 20px;
        border-radius: 20px 20px 0 0;
    }

    .profile-modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
        font-size: 1rem;
    }

    .profile-modal-title {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    .profile-tab-button {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .profile-text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .floating-purchase-btn {
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: none;
        padding: 14px 18px;
        font-size: 0.875rem;
        border-radius: 10px;
    }
    
    .floating-purchase-btn i {
        font-size: 0.9375rem;
    }

    .purchase-modal-content {
        padding: 20px;
        border-radius: 20px 20px 0 0;
    }

    .purchase-modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
        font-size: 1rem;
    }
}

/* Accessory Image Slider */
.accessory-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
}

/* Desktop-specific slider improvements */
@media (min-width: 769px) {
    #accessories-table .accessory-slider-wrapper {
        margin: 20px 0 0;
        border-radius: 12px;
        max-width: 500px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.3s ease;
    }
    
    #accessories-table .accessory-slider-wrapper:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }
    
    #accessories-table .accessory-slide {
        aspect-ratio: 4 / 3;
    }
    
    #accessories-table .accessory-slide-image {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #accessories-table .accessory-slide-image:hover {
        transform: scale(1.08);
    }
}

.accessory-slider {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.accessory-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.accessory-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
}

.accessory-slide-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.accessory-slider-prev,
.accessory-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Desktop-specific slider navigation improvements */
@media (min-width: 769px) {
    #accessories-table .accessory-slider-prev,
    #accessories-table .accessory-slider-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    #accessories-table .accessory-slider-prev {
        left: 12px;
    }
    
    #accessories-table .accessory-slider-next {
        right: 12px;
    }
    
    #accessories-table .accessory-slider-prev:hover:not(.disabled),
    #accessories-table .accessory-slider-next:hover:not(.disabled) {
        background: #ffffff;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
}

.accessory-slider-prev:hover:not(.disabled),
.accessory-slider-next:hover:not(.disabled) {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.accessory-slider-prev.disabled,
.accessory-slider-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.accessory-slider-prev {
    left: 8px;
}

.accessory-slider-next {
    right: 8px;
}

.accessory-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 2;
}

/* Desktop-specific slider dots improvements */
@media (min-width: 769px) {
    #accessories-table .accessory-slider-dots {
        padding: 16px;
        gap: 8px;
    }
    
    #accessories-table .accessory-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    #accessories-table .accessory-slider-dot.active {
        width: 28px;
    }
}

.accessory-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.accessory-slider-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

.accessory-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.accessory-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    margin: 16px 0;
    gap: 8px;
}

.accessory-no-image i {
    font-size: 2rem;
    margin-bottom: 4px;
}

.accessory-no-image span {
    font-size: 0.875rem;
}

/* Accessory Options */
.accessory-options {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Desktop-specific options improvements */
@media (min-width: 769px) {
    #accessories-table .accessory-options {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    #accessories-table .accessory-options-label {
        font-size: 0.8125rem;
        margin-bottom: 12px;
        color: rgba(0, 0, 0, 0.7);
        font-weight: 600;
    }
    
    #accessories-table .accessory-options-list {
        gap: 12px;
    }
    
    #accessories-table .accessory-option {
        padding: 6px;
        border-radius: 8px;
    }
    
    #accessories-table .accessory-option-thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        border: 2px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #accessories-table .accessory-option:hover .accessory-option-thumbnail {
        border-color: rgba(0, 0, 0, 0.3);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    #accessories-table .accessory-option.active .accessory-option-thumbnail {
        border-color: #000000;
        border-width: 3px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }
    
    #accessories-table .accessory-option-name {
        font-size: 0.75rem;
        margin-top: 6px;
        max-width: 70px;
        font-weight: 500;
    }
}

.accessory-options-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accessory-options-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.accessory-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 4px;
    border-radius: 6px;
}

.accessory-option:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.03);
}

.accessory-option.active {
    background: rgba(0, 0, 0, 0.05);
}

.accessory-option.active .accessory-option-thumbnail {
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.accessory-option-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accessory-option:hover .accessory-option-thumbnail {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accessory-option-name {
    font-size: 0.6875rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    white-space: nowrap;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Accessory Actions */
.accessory-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* Desktop-specific action button improvements */
@media (min-width: 769px) {
    #accessories-table .accessory-actions {
        justify-content: flex-start;
        gap: 12px;
    }
    
    #accessories-table .info-btn {
        padding: 0;
        font-size: 0.8125rem;
    }
    
    #accessories-table .info-btn:hover {
        transform: none;
    }
}

.info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8125rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: -0.01em;
    text-decoration: none;
    position: relative;
}

.info-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    transition: width 0.2s ease;
}

.info-btn:hover {
    color: #000000;
}

.info-btn:hover::after {
    width: 100%;
}

.info-btn:active {
    opacity: 0.7;
}

.info-btn i {
    font-size: 0.875rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.info-btn:hover i {
    opacity: 1;
}

@media (max-width: 768px) {
    .accessory-slider-wrapper {
        margin: 12px 0;
    }
    
    .accessory-slider-prev,
    .accessory-slider-next {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .accessory-slider-prev {
        left: 6px;
    }
    
    .accessory-slider-next {
        right: 6px;
    }
    
    .accessory-slider-dots {
        padding: 10px;
        gap: 5px;
    }
    
    .accessory-slider-dot {
        width: 6px;
        height: 6px;
    }
    
    .accessory-slider-dot.active {
        width: 20px;
    }
    
    .accessory-no-image {
        padding: 30px 16px;
    }
    
    .accessory-no-image i {
        font-size: 1.5rem;
    }
    
    .accessory-no-image span {
        font-size: 0.8125rem;
    }
    
    .accessory-options {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .accessory-option-thumbnail {
        width: 45px;
        height: 45px;
    }
    
    .accessory-option-name {
        font-size: 0.625rem;
        max-width: 55px;
    }
    
    .mobile-card .accessory-actions {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .mobile-card .info-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 0;
        font-size: 0.8125rem;
    }
}

/* Gallery Lightbox Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    z-index: 1;
}

.gallery-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-title {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 10;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    padding: 60px 20px;
}

.lightbox-empty p {
    margin: 0;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Information Modal */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.info-modal.active {
    opacity: 1;
    visibility: visible;
}

.info-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.info-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.info-modal.active .info-modal-content {
    transform: scale(1);
}

/* Desktop-specific modal width */
@media (min-width: 769px) {
    .info-modal-content {
        max-width: 900px;
    }
}

.info-modal-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    padding: 32px 32px 0;
    border-radius: 16px 16px 0 0;
}

.info-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    z-index: 11;
}

.info-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.info-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.01em;
    padding-right: 48px;
}

.info-language-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-tab-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.info-tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.info-tab-button.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.info-content {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.info-text {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin: 0;
    text-align: left;
    white-space: pre-line;
}

.info-text strong {
    font-weight: 600;
    color: #000000;
}

@media (max-width: 768px) {
    .gallery-lightbox-content {
        padding: 60px 20px 80px;
    }

    .gallery-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .lightbox-title {
        top: 12px;
        left: 12px;
        font-size: 1rem;
        max-width: calc(100% - 120px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lightbox-counter {
        bottom: 12px;
        font-size: 0.8125rem;
        padding: 6px 12px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-image-container {
        max-width: 100%;
        max-height: calc(100vh - 120px);
    }

    .info-modal {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0;
    }

    .info-modal-content {
        padding: 0;
        max-height: 90vh;
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .info-modal.active .info-modal-content {
        transform: translateY(0);
    }

    .info-modal-header {
        padding: 24px 24px 0;
        border-radius: 20px 20px 0 0;
    }

    .info-modal-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
        padding-right: 40px;
    }

    .info-language-tabs {
        margin-bottom: 20px;
        gap: 8px;
        padding-bottom: 20px;
    }

    .info-content {
        padding: 24px;
    }

    .info-tab-button {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }

    .info-text {
        font-size: 0.875rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .gallery-lightbox-content {
        padding: 50px 12px 70px;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lightbox-title {
        top: 10px;
        left: 10px;
        font-size: 0.9375rem;
        max-width: calc(100% - 100px);
    }

    .lightbox-counter {
        bottom: 10px;
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-image-container {
        max-height: calc(100vh - 100px);
    }

    .info-modal-content {
        padding: 0;
        border-radius: 20px 20px 0 0;
    }

    .info-modal-header {
        padding: 20px 20px 0;
    }

    .info-modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
        font-size: 1rem;
    }

    .info-modal-title {
        font-size: 1.125rem;
        margin-bottom: 16px;
        padding-right: 36px;
    }

    .info-language-tabs {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .info-content {
        padding: 20px;
    }

    .info-tab-button {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .info-text {
        font-size: 0.8125rem;
    }
}
