﻿.otod-product-section {
    width: 100%;
    padding: 60px 40px;
    background-color: transparent;
}

.otod-product-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.otod-product-title {
    color: var(--otod-color-dark-text);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.otod-product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: 100%;
}

.otod-product-card {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    border: none;
    box-shadow: var(--otod-shadow-sm);
    transition: var(--otod-transition-default);
    min-height: 250px;
    cursor: pointer;
}

.otod-product-img {
    width: 250px;
    height: 200px;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.otod-product-img img {
    width: 100%;
}

.otod-spec-mobile{
    display: none;
}

.otod-spec-card {
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.otod-spec-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 5px;
    border-bottom: 1px solid #f7ca00;
    padding-bottom: 10px;
}

.otod-spec-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
}

.otod-spec-body .divider {
    position: relative;
}

.otod-spec-body .divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background: #000;
}

.otod-spec-model {
    font-size: 24px;
    font-weight: 600;
}

.otod-product-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.otod-product-group img {
    width: 350px;
}

.otod-product-detail-header img {
    cursor: pointer;
}

.otod-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

.otod-product-card-header {
    margin-bottom: 20px;
}

.otod-product-provider-name {
    color: var(--otod-color-dark-text);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.otod-product-name {
    color: var(--otod-color-dark-text);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.otod-product-description {
    color: var(--otod-color-dark-text);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.otod-product-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.otod-product-detail-btn {
    background-color: orange;
    border: 1px solid orange;
    color: var(--otod-color-dark-text);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--otod-transition-default);
    font-family: 'Prompt', sans-serif;
    outline: none;
}

.otod-peoduct-detail-btn:hover {
    background-color: orange;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    outline: none;
}

.otod-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.otod-product-tag {
    background-color: var(--otod-color-yellow-light);
    color: var(--otod-color-dark-text);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid var(--otod-color-dark-text);
}


.otod-product-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.otod-product-tab {
    border: none;
    font-family: 'Prompt', sans-serif;
    background: #ededed;
    padding: 12px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
}

.otod-product-tab:hover {
    background: #d4d4d4;
}

.otod-product-tab.active {
    background: #000;
    color: #ffe600;
}