/* ============================================
   Product Gallery
   ============================================ */

/* Main Image Container */
.product-gallery-main {
    margin-bottom: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background-color: #FAFAFA;
}

@media (max-width: 767px) {
    .product-gallery-main {
        margin-bottom: 10px;
    }
}

/* Main Image */
.product-gallery-main .main-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

/* Prev/Next Buttons */
.gallery-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #BE930B;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
    opacity: 0;
    pointer-events: auto;
}

.gallery-nav-button:hover {
    background-color: #a8820a;
}

.gallery-nav-button:disabled {
    opacity: 0 !important;
    pointer-events: none !important;
}

.gallery-nav-button-prev {
    left: 0;
}

.gallery-nav-button-next {
    right: 0;
}

.main-image-container:hover .gallery-nav-button {
    opacity: 1;
}

/* Thumbnails Container */
.thumbnails-wrapper {
    display: flex;
    position: relative;
    justify-content: center;
}

.thumbnails-container {
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: auto;
    margin-right: auto;
    width: min(652px, 100%);
    min-height: 64px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.thumbnails-container::-webkit-scrollbar {
    display: none;
}

.thumbnails-list {
    display: flex;
    gap: 16px;
    min-width: max-content;
}

@media (max-width: 767px) {
    .thumbnails-list {
        gap: 8px;
    }
}

/* Thumbnail Button */
.thumbnail-button {
    width: 80px;
    height: 60px;
    background-color: white;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.thumbnail-button:hover {
    border-color: #be930b;
}

.thumbnail-button.active {
    border-color: #be930b;
}

@media (max-width: 767px) {
    .thumbnail-button {
        display: none;
    }
}

/* Thumbnail Image */
.thumbnail-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Thumbnail Navigation Buttons */
.thumbnail-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

@media (max-width: 767px) {
    .thumbnail-nav-button {
        display: none;
    }
}

.thumbnail-nav-button-prev {
    left: -30px;
}

.thumbnail-nav-button-next {
    right: -30px;
}

/* Image Zoom Container */
.image-zoom-container {
    position: relative;
    display: flex;
}

.main-image-container {
    position: relative;
    cursor: default;
}

/* Zoom Lens */
.product-image-zoom-lens {
    display: none;
    position: absolute;
    z-index: 20;
    width: 180px;
    height: 180px;
    pointer-events: none;
    border: 1px solid rgba(28, 28, 28, 0.28);
    background: rgba(255, 255, 255, 0.26);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

/* Zoom Pane */
.product-image-zoom-pane {
    display: none;
    position: absolute;
    top: 0;
    left: calc(100% + 16px);
    z-index: 30;
    width: 43%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    pointer-events: none;
    border: 1px solid rgba(28, 28, 28, 0.16);
    background-color: #FAFAFA;
    background-repeat: no-repeat;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.main-image-container.is-image-zooming {
    cursor: crosshair;
}

.main-image-container.is-image-zooming .product-image-zoom-lens,
.main-image-container.is-image-zooming .product-image-zoom-pane {
    display: block;
}

@media (max-width: 1023px) {
    .main-image-container.is-image-zooming {
        cursor: default;
    }

    .main-image-container.is-image-zooming .product-image-zoom-lens,
    .main-image-container.is-image-zooming .product-image-zoom-pane {
        display: none;
    }
}

/* Expand Button */
.expand-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 28, 28, 0.16);
    border-radius: 2px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1C1C1C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background-color: white;
    border-color: #BE930B;
    color: #BE930B;
}

.expand-btn svg {
    width: 18px;
    height: 18px;
}

/* Fullscreen Overlay */
.fullscreen-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-overlay.active {
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.97);
}

.fullscreen-image {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid black;
    border-radius: 50%;
    color: black;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    z-index: 10000;
    opacity: 0;
    transform: scale(0.8);
}

.fullscreen-overlay.active .fullscreen-close {
    opacity: 1;
    transform: scale(1);
}

.fullscreen-close:hover {
    background-color: #f0f0f0;
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 50px;
    height: 50px;
    background-color: white;
    border: 1px solid black;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    z-index: 10000;
    opacity: 0;
}

.fullscreen-overlay.active .fullscreen-nav {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.fullscreen-nav:hover {
    background-color: #f0f0f0;
}

.fullscreen-prev {
    left: 20px;
}

.fullscreen-next {
    right: 20px;
}

/* Thumbnail Active State */
.thumbnail-active {
    border-color: #be930b !important;
}

/* ============================================
   Product Description & At a Glance
   ============================================ */

/* Description & At a Glance Layout */
.product-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .product-description-wrapper {
        flex-direction: row;
    }
}

/* Product Description Section */
.product-description-section {
    flex: 1;
}

@media (min-width: 768px) {
    .product-description-section {
        flex: 6;
    }
}

.product-description-title {
    font-size: 36px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .product-description-title {
        font-size: 26px;
    }
}

.product-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .product-subtitle {
        font-size: 16px;
    }
}

.product-description-text {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    line-height: 1.625;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .product-description-text {
        font-size: 16px;
    }
}

/* At a Glance Section */
.at-a-glance-section {
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .at-a-glance-section {
        flex: 4;
    }
}

.at-a-glance-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .at-a-glance-container {
        gap: 12px;
    }
}

.at-a-glance-title {
    font-weight: bold;
    font-size: 16px;
    color: #1C1C1C;
}

@media (min-width: 768px) {
    .at-a-glance-title {
        font-size: 18px;
    }
}

.at-a-glance-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(28, 28, 28, 0.10);
    padding-bottom: 12px;
    gap: 8px;
}

.at-a-glance-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.at-a-glance-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.at-a-glance-content {
    display: flex;
    flex-direction: column;
}

.at-a-glance-name {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.70);
    font-weight: bold;
}

@media (min-width: 768px) {
    .at-a-glance-name {
        font-size: 16px;
    }
}

.at-a-glance-value {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.70);
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .at-a-glance-value {
        font-size: 16px;
    }
}

.at-a-glance-hidden {
    display: none;
}

.view-full-specs-btn {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: #1C1C1C;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.view-full-specs-btn:hover {
    color: #BE930B;
}

.view-full-specs-btn svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   Feature Categories
   ============================================ */

/* Feature Categories Section */
.feature-categories-section {
    padding-top: 30px;
    padding-bottom: 12px;
}

@media (min-width: 768px) {
    .feature-categories-section {
        padding-top: 50px;
        padding-bottom: 16px;
    }
}

/* Feature Category Item */
.feature-category-item {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .feature-category-item {
        margin-bottom: 16px;
    }
}

/* Feature Category Cover Image */
.feature-category-cover {
    position: relative;
    width: 100%;
    background-color: #1C1C1C;
    overflow: hidden;
    margin-bottom: 30px;
}

.feature-category-cover img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Feature Category Overlay Content */
.feature-category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

@media (min-width: 768px) {
    .feature-category-overlay {
        padding: 60px;
    }
}

/* Feature Category Title */
.feature-category-title {
    margin-bottom: 5px;
    color: white;
}

.feature-category-title h2 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .feature-category-title {
        margin-bottom: 10px;
    }

    .feature-category-title h2 {
        font-size: 32px;
    }
}

/* Feature Category Description */
.feature-category-description {
    color: #E8E8E8;
    font-size: 10px;
    max-width: 500px;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .feature-category-description {
        font-size: 16px;
    }
}

/* Explore Features Button */
.explore-features-btn {
    width: 100px;
    margin-top: 8px;
    padding: 7px 10px;
    background-color: white;
    color: #1C1C1C;
    border: 1px solid #1C1C1C;
    border-radius: 6px;
    font-weight: 600;
    font-size: 10px;
    transition: background-color 0.3s;
    cursor: pointer;
}

@media (min-width: 768px) {
    .explore-features-btn {
        width: 150px;
        padding: 10px;
        font-size: 14px;
    }
}

.explore-features-btn:hover {
    background-color: #f5f5f5;
}

/* Features Section */
.features-section {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .features-section {
        margin-bottom: 30px;
    }
}

/* Features Header */
.features-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .features-header {
        margin-bottom: 30px;
    }
}

.features-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 36px;
    }
}

/* Features Scroll Buttons Container */
.features-scroll-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 767px) {
    .features-scroll-buttons {
        display: none;
    }
}

/* Feature Scroll Button */
.feature-scroll-btn {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.feature-scroll-btn:hover {
    background-color: #f5f5f5;
}

/* Features Container */
.features-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding-bottom: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

/* Hide scrollbar for desktop on specific feature types */
@media (min-width: 768px) {
    #featuresContainer-comfort,
    #featuresContainer-electronic,
    #featuresContainer-safety {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #featuresContainer-comfort::-webkit-scrollbar,
    #featuresContainer-electronic::-webkit-scrollbar,
    #featuresContainer-safety::-webkit-scrollbar {
        display: none;
    }
}

/* Feature Card */
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    width: 220px;
    flex-shrink: 0;
    scroll-snap-align: center;
    cursor: pointer;
}

@media (min-width: 768px) {
    .feature-card {
        gap: 20px;
        height: 600px;
        width: 315px;
    }
}

/* Feature Image Container */
.feature-image-container {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #FAFAFA;
    position: relative;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-image-container {
        width: 315px;
        height: 420px;
        aspect-ratio: unset;
    }
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Expand Button */
.feature-expand-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 10;
    border: none;
    cursor: pointer;
}

.feature-expand-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Feature Content */
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
}

@media (min-width: 768px) {
    .feature-content {
        width: 315px;
    }
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 24px;
    }
}

.feature-description {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 16px;
    }
}

/* Line Clamp Utilities */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   Product Info
   ============================================ */

/* Indicator Icon Hover Effects */
.indicator-icon {
    transition: all 0.3s ease;
}

.indicator-icon:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.indicator-icon:active {
    transform: scale(0.95);
}

/* ============================================
   Message Alert
   ============================================ */

/* Message Container */
.message-container {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 800px;
    width: auto;
    z-index: 10002;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.message {
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    animation: messageFadeIn 0.3s ease-out;
    width: auto;
    max-width: 90%;
}

.message.error {
    background-color: #fef0f0;
    border: 1px solid #fde2e2;
    color: #f56c6c;
}

.message.success {
    background-color: #f0f9eb;
    border: 1px solid #e1f3d8;
    color: #67c23a;
}

.message.info {
    background-color: #ecf5ff;
    border: 1px solid #d9ecff;
    color: #409eff;
}

.message.warning {
    background-color: #fdf6ec;
    border: 1px solid #faecd8;
    color: #e6a23c;
}

.message-icon {
    margin-right: 10px;
    font-size: 16px;
}

.message-content {
    flex: 1;
    font-size: 14px;
}

.message-close {
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.message-close:hover {
    opacity: 1;
}

@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ============================================
   Recommendations Section
   ============================================ */

/* Recommendations Section */
.recommendations-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .recommendations-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Recommendations Header */
.recommendations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .recommendations-header {
        margin-bottom: 20px;
    }
}

/* Recommendations Title */
.recommendations-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
}

@media (min-width: 768px) {
    .recommendations-title {
        font-size: 36px;
    }
}

/* Recommendations Navigation */
.recommendations-nav {
    display: flex;
    gap: 16px;
}

/* Also Like Button */
.alsolike-btn {
    background-color: #ffffff;
    border: 1px solid rgba(28, 28, 28, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alsolike-btn svg rect {
    stroke: rgba(28, 28, 28, 0.3) !important;
}

.alsolike-btn svg path {
    stroke: #1C1C1C !important;
}

.alsolike-btn:hover,
.alsolike-btn:active {
    background-color: #1C1C1C;
    border-color: #1C1C1C;
}

.alsolike-btn:hover svg rect,
.alsolike-btn:active svg rect {
    stroke: #1C1C1C !important;
}

.alsolike-btn:hover svg path,
.alsolike-btn:active svg path {
    stroke: #ffffff !important;
}

/* Recommendations Container */
#recommendationsContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

#recommendationsContainer::-webkit-scrollbar {
    display: none;
}

.recommendations-section .recommendation-card {
    width: 375px;
    flex-shrink: 0;
    border: 1px solid rgba(28, 28, 28, 0.1);
    border-radius: 6px;
}

@media (max-width: 640px) {
    .recommendations-section .recommendation-card {
        width: 100%;
    }
}

/* ============================================
   Technical Specifications
   ============================================ */

/* Technical Specifications Section */
.technical-specs-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .technical-specs-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* Technical Specs Container */
.technical-specs-container {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

/* Technical Specs Header */
.technical-specs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

/* Technical Specs Title */
.technical-specs-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    margin: 0;
}

@media (min-width: 768px) {
    .technical-specs-title {
        font-size: 36px;
    }
}

/* Toggle All Specs Button */
.toggle-all-specs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toggle-all-specs-btn:hover {
    border-color: #be930b;
}

.toggle-all-specs-btn:hover svg path {
    stroke: #be930b;
}

.toggle-all-specs-btn svg {
    transition: transform 0.2s ease;
}

/* Technical Specs Content */
.technical-specs-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Spec Group */
.spec-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Spec Group Header */
.spec-group-header {
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 16px;
    padding-bottom: 16px;
    cursor: pointer;
}

/* Spec Group Name */
.spec-group-name {
    flex: 1;
}

/* Spec Group Title */
.spec-group-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
}

/* Spec Arrow Icon */
.spec-arrow-icon {
    width: 24px;
    height: 24px;
}

/* Geometry Arrow Icon - with rotation transition */
.geometry-arrow-icon {
    transition: transform 0.2s;
}

/* Spec Group Content */
.spec-group-content {
    background-color: #F4F4F4;
    border-radius: 6px;
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Spec Item */
.spec-item {
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    flex: 1 1 calc(50% - 10px);
}

@media (min-width: 768px) {
    .spec-item {
        padding-left: 20px;
        padding-right: 20px;
        flex: 1 1 calc(33.333% - 15px);
    }
}

/* Spec Item Name */
.spec-item-name {
    font-size: 16px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .spec-item-name {
        font-size: 18px;
    }
}

/* Spec Item Value */
.spec-item-value {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.7);
}

@media (min-width: 768px) {
    .spec-item-value {
        font-size: 16px;
    }
}

/* Geometry Content Box */
.geometry-content-box {
    width: 100%;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
}

/* Geometry Layout */
.geometry-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .geometry-layout {
        flex-direction: row;
    }
}

/* Geometry Components List */
.geometry-components-list {
    overflow-y: auto;
    max-height: 500px;
    padding: 10px;
    border: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .geometry-components-list {
        width: 33.333%;
    }
}

/* Geometry Components Empty */
.geometry-components-empty {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1C;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Geometry Image Container */
.geometry-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

@media (min-width: 768px) {
    .geometry-image-container {
        width: 66.666%;
    }
}

/* Geometry Image */
.geometry-image {
    object-fit: contain;
}

/* Manual Download Link */
.manual-download-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    transition: color 0.3s;
    text-decoration: none;
}

.manual-download-link:hover {
    color: #BE930B;
}

/* Manual Download Link Disabled */
.manual-download-link.disabled {
    color: #A0A0A0;
}

/* Manual Download Icon */
.manual-download-icon {
    width: 20px;
    height: 20px;
}

/* Manual Download Icon Disabled */
.manual-download-icon.disabled {
    opacity: 0.4;
}

/* ============================================
   Fine Print (Product Disclaimers)
   ============================================ */

/* Fine Print Section */
.fine-print-section {
    padding-left: 8px;
    padding-right: 8px;
}

/* Fine Print Content */
.fine-print-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Fine Print Paragraph */
.fine-print-paragraph {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #1C1C1C;
}

/* Fine Print First Paragraph (with top padding on desktop) */
.fine-print-paragraph.first-paragraph {
    padding-top: 0;
}

@media (min-width: 768px) {
    .fine-print-paragraph.first-paragraph {
        padding-top: 16px;
    }
}

/* ============================================
   Section Navigation
   ============================================ */

/* Section Navigation Placeholder */
.section-nav-placeholder {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .section-nav-placeholder {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* Section Navigation */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .section-nav {
        gap: 20px;
    }
}

/* Navigation Tab */
.nav-tab {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 9999px;
    font-size: 14px;
    color: #1C1C1C;
    background-color: rgba(28, 28, 28, 0.10);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-tab {
        font-size: 16px;
    }
}

/* Navigation Tab Active */
.nav-tab.active {
    background-color: #1C1C1C !important;
    color: white !important;
}

/* Navigation Tab Hover */
.nav-tab:not(.active):hover {
    background-color: #E5E5E5;
}

/* Section Navigation Fixed */
.section-nav.fixed-nav {
    position: fixed;
    left: 0;
    z-index: 11;
    background-color: #FFFFFF;
    padding: 10px 16px;
    box-shadow: none;
    border: none;
    width: 69%;
}

@media (max-width: 767px) {
    .section-nav.fixed-nav {
        right: auto;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ============================================
   Feature Tooltip
   ============================================ */

/* Tooltip Container */
.feature-tooltip-container {
    position: relative;
    transition: all 0.2s ease;
}

.feature-tooltip-container:hover .feature-tooltip-text {
    color: #BE930B;
    text-decoration: underline;
    text-decoration-color: #BE930B;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.feature-tooltip {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    background-color: #1C1C1C;
    color: #FFFFFF;
    padding: 16px 20px;
    border-radius: 4px;
    width: 450px;
    z-index: 99999;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
}

.feature-tooltip.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.feature-tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: #1C1C1C transparent transparent transparent;
}

.feature-tooltip-title {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.feature-tooltip-content {
    font-family: sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.feature-tooltip-link {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
    cursor: pointer;
}

.feature-tooltip-link:hover {
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .feature-tooltip {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        padding: 12px 14px;
    }

    .feature-tooltip-title,
    .feature-tooltip-content,
    .feature-tooltip-link {
        font-size: 14px;
        line-height: 130%;
    }
}

/* ============================================
   Custom Checkboxes
   ============================================ */

/* Feature Checkbox */
.feature-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.feature-checkbox:checked {
    background-color: #BE930B;
    border-color: #BE930B;
}

.feature-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feature-checkbox:hover {
    border-color: #BE930B;
}

/* Compare Checkbox */
.compare-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.compare-checkbox:checked {
    background-color: #BE930B;
    border-color: #BE930B;
}

.compare-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.compare-checkbox:hover {
    border-color: #BE930B;
}

/* ============================================
   Responsive Layout
   ============================================ */

/* Right Mobile Column */
.right-mobile {
    display: none;
}

@media (max-width: 767px) {
    .right-pc {
        display: none;
    }

    .right-mobile {
        display: block;
    }
}

/* Scrollbar Hide Utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}