:root {
    --primary-color: #146eb4;
    --secondary-color: #ff9900;
    --light-bg: #f7f7f7;
    --border-color: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --rating-exceptional: #28a745;
    --rating-superb: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.6;
    padding-bottom: 40px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.deals-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 5%;
    background-color: var(--light-bg);
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
}
.tt-breadcrumb {
    border-bottom: none;
    margin-bottom: 8px;
    padding-top: 20px;
}

.tt-breadcrumb .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.tt-breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.tt-breadcrumb ul li {
    display: flex;
    /* align-items: center; */
    padding: 4px 4px 4px 14px;
}

.tt-breadcrumb ul li:first-of-type {
    padding-left: 2px;
}

.tt-breadcrumb ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.tt-breadcrumb ul li a:hover {
    color: #475569;
    text-decoration: underline;
}

.tt-breadcrumb ul li:last-child {
    font-weight: 600;
    color: #1e293b;
    font-size: 12px;
}

/* Main Content Container */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 20px;*/
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Left Column - Product Info */
.product-title-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.product-rank-badge {
    display: inline-block;
    background: linear-gradient(to right, #ffc107, #ff9800);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-brand {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-bg);
    padding: 8px 15px;
    border-radius: 8px;
}

.rating-score {
    font-size: 22px;
    font-weight: bold;
    color: var(--rating-exceptional);
}

.rating-label {
    color: var(--text-light);
    font-size: 14px;
}

.value-badge {
    background-color: #e7f4e4;
    color: #2d5a27;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Highlights Sections */
.section-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-title i {
    color: var(--secondary-color);
}
.features-list p{
    margin: 0;
}
.love-list {
    list-style: none;
}

.love-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.love-list li:last-child {
    border-bottom: none;
}

.love-list i {
    color: #28a745;
    margin-top: 4px;
    flex-shrink: 0;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlight-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.highlight-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

.why-we-love-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    margin-top: 8px;
}


.why-we-love-section.mobile-layout {
    gap: 0;
}


.why-we-love-section.initially-hidden .content-wrapper {
    display: block;
}


.why-we-love-section .content-wrapper.mobile-hidden {
    display: none;
}


@media (min-width: 768px) {
    .why-we-love-section .content-wrapper.mobile-hidden {
        display: block !important;
    }
}


.why-we-love-section .section-container {
    margin-bottom: 16px;
}


.why-we-love-section .section-container:last-child {
    margin-bottom: 0;
}


.why-we-love-section .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}


.why-we-love-section .features-list ul {
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.why-we-love-section .features-list li {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #4b5563;
}


.why-we-love-section .features-list.checkmark-list ul {
    list-style: none;
}


.why-we-love-section .features-list.checkmark-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: url("../img/right_ico.png") 0 3px no-repeat;
    background-size: 20px 20px;
    line-height: 25px;
    padding-left: 25px;
}


.why-we-love-section .features-list.checkmark-list li svg {
    flex-shrink: 0;
}


.why-we-love-section .features-list.bullet-list {
    list-style: disc;
    display: block;
    margin-left: 20px;
}


.why-we-love-section .features-list.bullet-list li {
    display: list-item;
    padding-left: 4px;
    margin-bottom: 6px;
}


.why-we-love-section .features-list.bullet-list li:last-child {
    margin-bottom: 0;
}


.why-we-love-section .features-list:last-child {
    margin-bottom: 0;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    /*border-top: none;*/
    width: 100%;
    padding: 16px 12px;
    box-shadow: none;
    backdrop-filter: none;
    margin-bottom: 20px;
}


@media (max-width: 960px) {
    .rating-container {
        top: -29px;
    }
}


.rating-container:hover {
    transform: none;
    box-shadow: none;
}


.rating-container .ad-disclosure-icon-wrapper {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    z-index: 10;
}


.rating-container .ad-disclosure-icon-wrapper .ad-disclosure-icon {
    color: #94a3b8;
    transition: all 0.2s ease;
}


@media (hover: hover) {
    .rating-container .ad-disclosure-icon-wrapper .ad-disclosure-icon:hover {
        color: #64748b;
        transform: scale(1.1);
    }
}


.rating-container .rating-score {
    font-family: Inter, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}


@media (max-width: 767.9px) {
    .rating-container .rating-score {
        font-size: 40px;
    }
}


@media (max-width: 480px) {
    .rating-container .rating-score {
        font-size: 36px;
    }
}


@media (max-width: 360px) {
    .rating-container .rating-score {
        font-size: 32px;
    }
}


.rating-container .rating-text {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #64748b;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}


@media (max-width: 767.9px) {
    .rating-container .rating-text {
        font-size: 13px;
        margin-bottom: 14px;
    }
}


@media (max-width: 480px) {
    .rating-container .rating-text {
        font-size: 12px;
        margin-bottom: 12px;
    }
}


@media (max-width: 360px) {
    .rating-container .rating-text {
        font-size: 11px;
    }
}


.rating-container .stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}


.rating-container .stars svg {
    width: 16px;
    height: 16px;
    transition: all 0.2s ease;
    fill: #f59e0b;
}


.rating-container .stars svg:nth-child(2) {
    animation-delay: 0.1s;
}


.rating-container .stars svg:nth-child(3) {
    animation-delay: 0.2s;
}


.rating-container .stars svg:nth-child(4) {
    animation-delay: 0.3s;
}


.rating-container .stars svg:nth-child(5) {
    animation-delay: 0.4s;
}


@media (max-width: 767.9px) {
    .rating-container .stars {
        gap: 4px;
    }

    .rating-container .stars svg {
        width: 18px;
        height: 18px;
    }
}


@media (max-width: 480px) {
    .rating-container .stars {
        gap: 3px;
    }

    .rating-container .stars svg {
        width: 16px;
        height: 16px;
    }
}


@media (max-width: 360px) {
    .rating-container .stars svg {
        width: 14px;
        height: 14px;
    }
}
.reminder-note {
    background-color: #fff8e6;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 25px;
    font-size: 14.5px;
    color: var(--text-dark);
}
.desktop-image {
    text-align: center;
    margin-bottom: 20px;
}
.product-image-container {
    width: 100%;
    height: 196px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.thumbnail-gallery {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}
.thumbnail-gallery .thumbnail {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
}
.thumbnail-gallery .thumbnail.active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}
.thumbnail-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
}
/* Right Column - Price & Action */
.purchase-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.price-section {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.discount-badge {
    background-color: #dc3545;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 15px;
}
.price-box{
    background-color: #dc3545;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 15px;
}
.price-box .price{
    font-size: 24px;
}
.price-box .ori-price{
    font-size: 16px;
    color: #ccc;
    text-decoration: line-through;
}
.check-price-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #1a85f2 0%, #0d7ae0 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}
/*.check-price-btn{*/
/*    background: linear-gradient(135deg, #1a85f2 0%, #0d7ae0 100%);*/
/*    color: white;*/
/*    border: 2px solid rgba(255, 255, 255, 0.2);*/
/*    border-radius: 50px;*/
/*    font-weight: 600;*/
/*    text-align: center;*/
/*    box-sizing: border-box;*/
/*    cursor: pointer;*/
/*    touch-action: manipulation;*/
/*    overflow: hidden;*/
/*    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
/*    padding: 14px 24px;*/
/*    font-size: 16px;*/
/*    width: 100%;*/
/*    min-height: 44px;*/
/*}*/
/*.check-price-btn::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);*/
/*    transition: left 0.5s ease;*/
/*}*/
/*@media (hover: hover) {*/
/*    .check-price-btn:hover {*/
/*        transform: translateY(-3px);*/
/*        box-shadow: 0 12px 25px rgba(26, 133, 242, 0.4), 0 6px 15px rgba(26, 133, 242, 0.3);*/
/*    }*/

/*    .check-price-btn:hover::before {*/
/*        left: 100%;*/
/*    }*/
/*}*/
.check-price-btn:hover {
    background: linear-gradient(to right, #ec971f, #d58512);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 173, 78, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge i {
    color: var(--primary-color);
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 14px 5px;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 40%;
    color: var(--text-dark);
}

.specs-table td:last-child {
    color: var(--text-light);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 25px 5%;
    margin-top: 40px;
    color: var(--text-light);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

.disclosure-note {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .purchase-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-title {
        font-size: 24px;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}