.axon-product-section {
    background: #f5f5f5;
    padding: 90px 0;
}

.axon-product-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.axon-gallery {
    display: grid;
    grid-template-columns: 1fr 108px;
    gap: 16px;
}

.axon-main-image {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.axon-thumbs-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.thumb-scroll {
    width: 100%;
    max-height: 540px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.thumb-scroll::-webkit-scrollbar {
    width: 6px;
}

.thumb-scroll::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 6px;
}

.thumb-item {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 2px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumb-item img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 6px;
}

.thumb-item.active {
    border-color: #1f6cf0;
}

.thumb-nav {
    width: 100%;
    border: none;
    background: #1f6cf0;
    color: #fff;
    border-radius: 999px;
    font-size: 20px;
    line-height: 1;
    padding: 9px;
}

.axon-product-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.axon-product-desc {
    color: #7d7d7d;
    font-size: 27px;
    margin-bottom: 24px;
}

.axon-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.axon-info-label {
    min-width: 140px;
    font-size: 32px;
    font-weight: 700;
    color: #1b1b1b;
}

.axon-info-value {
    font-size: 28px;
    color: #7a7a7a;
    font-weight: 500;
}

.config-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-chip {
    border: 1px solid #d8d8d8;
    background: #f9f9f9;
    color: #8b8b8b;
    border-radius: 2px;
    padding: 9px 16px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-chip.active,
.option-chip:hover {
    border-color: #1f6cf0;
    color: #1f6cf0;
    background: #fff;
}

.quantity-box {
    display: inline-flex;
    border: 1px solid #d9d9d9;
}

.qty-btn {
    border: none;
    background: #f8f8f8;
    width: 44px;
    height: 44px;
    font-size: 24px;
    color: #1f6cf0;
}

.qty-input {
    width: 58px;
    border: none;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.action-row .btn {
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 16px;
}

.action-row .btn.main-btn {
    background: #1f6cf0;
    border-color: #1f6cf0;
}

.spec-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.spec-card ul {
    margin-bottom: 0;
}

.spec-card li {
    margin-bottom: 8px;
}

.stock-ok {
    color: #2f9d27;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .axon-product-title {
        font-size: 40px;
    }

    .axon-product-desc {
        font-size: 22px;
    }

    .axon-info-label {
        font-size: 26px;
    }

    .axon-info-value {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .axon-gallery {
        grid-template-columns: 1fr;
    }

    .axon-thumbs-wrap {
        flex-direction: row;
        width: 100%;
    }

    .thumb-scroll {
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .thumb-item {
        width: 92px;
        min-width: 92px;
        margin-bottom: 0;
    }

    .thumb-nav {
        width: 44px;
        min-width: 44px;
    }

    .axon-product-title {
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .axon-product-card,
    .spec-card {
        padding: 20px;
    }

    .axon-product-title {
        font-size: 31px;
    }

    .axon-product-desc {
        font-size: 18px;
    }

    .axon-info-row {
        flex-direction: column;
        gap: 8px;
    }

    .axon-info-label {
        min-width: 0;
        font-size: 22px;
    }

    .axon-info-value {
        font-size: 20px;
    }
}

/* Unified tuning for all product pages except custom per-page overrides */
.product-tune .axon-product-title {
    font-size: 36px;
}

.product-tune .axon-product-desc {
    font-size: 16px;
}

.product-tune .axon-info-label {
    min-width: 100px;
    font-size: 17px;
}

.product-tune .axon-info-value {
    font-size: 15px;
}

.product-tune .option-chip {
    font-size: 12px;
    padding: 6px 10px;
    font-weight: 400;
}

.product-tune .option-chip.active {
    font-weight: 500;
}

.product-tune .soon-disabled {
    background: #9aa4b2 !important;
    border-color: #9aa4b2 !important;
    color: #ffffff !important;
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.product-tune .soon-note {
    margin-top: 10px;
    font-size: 13px;
    color: #6f7785;
    font-weight: 500;
}

.product-tune .action-row {
    gap: 10px;
    margin-top: 20px;
}

.product-tune .action-row .btn {
    font-size: 13px;
    padding: 9px 16px;
    min-height: 38px;
}

.product-tune .quantity-box {
    border: 1px solid #d6deea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-tune .qty-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    background: #f4f7fc;
    color: #2867d8;
}

.product-tune .qty-btn:hover {
    background: #e9f0ff;
}

.product-tune .qty-input {
    width: 40px;
    height: 34px;
    font-size: 14px;
    font-weight: 600;
    color: #253b5e;
    background: #ffffff;
}

.product-tune .other-devices {
    margin-top: 22px;
}

.product-tune .other-devices h4 {
    font-size: 20px;
    margin-bottom: 14px;
}

.product-tune .other-device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.product-tune .other-device-card {
    display: block;
    border: 1px solid #dce4f0;
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    text-align: center;
    transition: all 0.2s ease;
    color: #2f466d;
}

.product-tune .other-device-card:hover {
    border-color: #1f6cf0;
    box-shadow: 0 6px 15px rgba(31, 108, 240, 0.12);
    transform: translateY(-1px);
}

.product-tune .other-device-card.current {
    border-color: #1f6cf0;
    background: #f3f8ff;
    pointer-events: none;
}

.product-tune .other-device-card img {
    width: 100%;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 7px;
    background: #f4f7fc;
}

.product-tune .other-device-card span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

@media (max-width: 575px) {
    .product-tune .axon-product-title {
        font-size: 26px;
    }

    .product-tune .axon-product-desc {
        font-size: 14px;
    }

    .product-tune .axon-info-label {
        font-size: 15px;
    }

    .product-tune .axon-info-value {
        font-size: 14px;
    }

    .product-tune .action-row .btn {
        font-size: 12px;
        padding: 8px 13px;
        min-height: 34px;
    }
}
