/*#region Common */
.device-detail-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    color: #212121;
    line-height: 1.42857143;
}

.text-bold {
    font-family: Inter Bold, Arial, sans-serif;
    font-weight: 700;
}

.text-italic {
    font-family: Inter Italic, Arial, sans-serif;
    font-style: italic;
}

.text-medium {
    font-family: Inter Medium, Arial, sans-serif;
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.device-detail-page a {
    color: inherit;
}

.nowrap {
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .device-detail-page .container {
        width: 1200px;
    }
}

@media (min-width: 1600px) {
    .device-detail-page .container {
        width: 1500px;
    }
}
@media (min-width: 1668px) {
    .device-detail-page .container {
        width: 1668px;
    }
}
/*#endregion */

/*#region Banner */
.banner {
    background: url(/cukcuk/images/device-detail/bg-banner.webp) no-repeat center center/cover;
    padding: 96px 0 400px;
    color: #FFFFFF;
}

.banner-title {
    font-size: 48px;
    padding-bottom: 36px;
}

a.introduction-video {
    font-size: 24px;
    text-decoration: underline;
}

@media (max-width: 1099px) {
    .banner-title {
        font-size: 36px;
    }
}

@media (max-width: 979px) {
    .banner {
        padding: 50px 0;
    }

    .banner-title {
        font-size: 28px;
    }
}
/*#endregion */

/*#region price */
.price {
    position: relative;
    margin-top: -330px;
    padding-bottom: 60px;
}

.price ul li {
    font-size: 14px;
    font-weight: 400;
    list-style: disc;
}

.price-table {
    background-color: #FFFFFF;
}

.price-table td {
    font-size: 16px;
    text-align: center;
    border-color: #E8E8E8;
}

.price-table th, .price-table td {
    padding: 16px;
    position: relative;
}

.price-table th.width-1-4 {
    width: 15.5%;
}

.price-table th.width-1-2 {
    width: 20%;
}

.price-table thead tr:first-child th:first-child {
    width: 20%;
}

.price-table thead tr:first-child th {
    background-color: unset;
    position: relative;
    z-index: 1;
    vertical-align: top;
}

.price-table .no-border-bottom th {
    border-bottom-color: #FFFFFF;
}

.price-table .no-border-top th {
    border-top-color: #FFFFFF;
}

.price-table .no-border {
    border: none;
}

.combo-title, .price-table ul li {
    font-family: Inter, Arial, sans-serif;
}

.combo-title {
    font-size: 18px;
}

.combo-image {
    max-width: 250px;
    aspect-ratio: 324/215;
    margin: 0 auto 24px;
}

.combo-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.combo-price {
    color: #8e8e8e;
}

.combo-price span {
    font-size: 24px;
    color: #212121;
}

.header-middle {
    vertical-align: top;
}

.advise-btn {
    background-color: #0015FF;
    padding: 8px 12px;
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.category-group td {
    background-color: #D9D9D9;
    text-align: start;
}

.price-table tbody td:first-child {
    text-align: start;
}

.image-wrap {
    display: flex;
    justify-content: center;
}

.image-wrap img {
    max-width: 152px;
}

.image-wrap.tablet img {
    max-width: 120px;
}

.sw-title {
    font-size: 16px;
    margin-top: 8px;
}

.detail-btn {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
    font-size: 14px;
    margin-top: 12px;
}

.register-btn {
    cursor: pointer;
    background-color: #FF5900;
    color: #FFFFFF;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 6px;
    max-width: 300px;
    margin: 0 auto;
}

.combo-tabs, .combo-intro, .combo-intro-item {
    display: none;
}

.combo-tabs.items-4 {
    grid-template-columns: repeat(4, 1fr);
}

.combo-tabs.items-2 {
    grid-template-columns: repeat(2, 1fr);
}

.combo-tab {
    padding: 16px 4px;
    text-align: center;
    border-bottom: #E8E8E8 2px solid;
    cursor: pointer;
}

.combo-tab.active {
    border-bottom: #0015FF 2px solid;
}

.combo-intro-item.active {
    display: block;
}

.detail-item {
    cursor: pointer;
}

@media (max-width: 1599px) {
    .combo-image {
        margin-bottom: 12px;
    }
}

@media (max-width: 979px) {
    #td-outer-wrap {
        overflow: visible;
    }

    .price {
        margin-top: 0;
        padding: 0 0 40px;
    }

    .price-table thead {
        display: none;
    }

    .combo-tabs {
        position: sticky;
        display: grid;
        margin-bottom: 16px;
        background-color: #FFFFFF;
        top: 60px;
        z-index: 1;
    }

    .combo-intro {
        display: block;
    }

    .combo-image {
        max-width: 375px;
    }

    .combo-intro .advise-btn {
        margin: 16px auto 16px;
        width: fit-content;
    }

    .combo-intro .combo-title {
        margin-bottom: 8px;
    }

    td.body-cell {
        display: none;
    }

    .price-table tbody td:first-child {
        width: 60%;
    }
} 

@media (max-width: 767px) {
    .register-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .combo-price {
        padding-top: 12px;
    }

    .combo-price span {
        font-size: 18px;
    }
}
/*#endregion */

/*#region Information*/
.information {
    padding: 50px 0;
    background: url(/cukcuk/images/device/bg-infor.webp) no-repeat center center;
    background-size: cover;
}

.infor-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
    max-width: 890px;
    margin: 0 auto;
}

.infor-item {
    padding: 24px 10px 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infor-item-title {
    font-size: 18px;
    margin: 38px 0 10px;
}

.infor-item-des {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 979px) {
    .infor-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .infor-item {
        padding: 16px 10px 16px;
    }
}

@media (max-width: 767px) {
    .infor-list {
        gap: 16px;
    }

    .infor-item-title {
        font-size: 15px;
        margin: 28px 0 10px;
    }
}
/*#endregion*/

/*#region Modal*/
.popup-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
    background-color: #FFFFFF;
    margin: 10% auto;
    border: 1px solid #888;
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    position: relative;
    max-height: 90%;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 0;
    right: 8px;
    font-size: 24px;
    cursor: pointer;
}

.popup-title {
    font-size: 24px;
    color: #0015FF;
    text-align: center;
    border-radius: 10px;
    background-color: #D9D9D9;
    padding: 12px 16px;
}

.popup-body {
    display: flex;
    gap: 24px;
    padding: 16px;
}

.popup-images {
    width: 60%;
}

.product-slider .item {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    padding: 16px;
    margin: auto;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-list .product-item {
    padding: 16px;
    aspect-ratio: 1/1;
    border: 1px solid #E4E4E4;
}

.product-list .product-item.active {
    border: 1px solid #0015FF;
}

.product-slider .item img,
.product-list .product-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.popup-subtitle {
    font-size: 16px;
    padding-bottom: 20px;
    text-decoration: underline;
}

.popup-modal ul li {
    list-style: disc;
}

.popup-modal ol ul {
    margin-left: 0;
}

@media (max-width: 767px) {
    .popup-content {
        height: 100%;
        max-height: 100%;
        margin: 0;
    }

    .popup-body {
        flex-direction: column;
        height: calc(100% - 50px);
        overflow: auto;
    }

    .product-list {
        display: none;
    }

    .popup-images {
        width: 100%;
    }

    .popup-title {
        font-size: 18px;
        padding: 12px 24px;
    }
}
/*#endregion*/

/*#region Register Form */
.register-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.register-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
	overflow: hidden;
}

.register-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 24px 0;
}

.register-title {
    font-size: 24px;
}
/*#endregion */