@import "page-title.css";

.product-desc-container {
    display: flex;
    flex-direction: column;
    padding: 100px 0 50px 0;
    gap: 30px;
}

.product-top-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.image-container {
    flex-shrink: 0;
    width: 400px;
    min-height: 300px;
    max-height: 500px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-basic-info {
    flex: 1;
    min-width: 0;
}

.product-extended-content {
    width: 100%;
}

ul.feature-list {
    list-style: none;
    padding-left: 0;
    position: relative;
}

ul.feature-list li {
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

ul.feature-list li {
    color: var(--secondary-text-color);
    font-size: 1rem;
    line-height: 1.5em;
}

ul.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 8px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg class="feather feather-chevron-right" fill="none" height="16" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" viewBox="-1 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><polyline points="9 18 15 12 9 6"/></svg>');
}

.inquiry-btn {
    padding: 0 42px;
    color: white;
    height: 55px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 51px;
    text-align: center;
    cursor: pointer;
    background-color: var(--primary-color);
    width: fit-content;
    display: flex;
    align-items: center;
}

@media (max-width:800px) {
    .product-top-section {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        width: 100%;
        max-width: 400px;
    }

    .product-basic-info h2, 
    .product-extended-content .inquiry-btn {
        margin-left: 24px;
        margin-right: 24px;
    }
}

.specs-container {
    padding: 0;
}

.specs-container table {
    border-collapse: collapse;
    width: 100%;
    margin: 0;
    padding: 0;
}

.specs-container table tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}

.specs-container table tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}

.specs-container table tr:first-child th:first-child {
    border-top-left-radius: 4px;
}

.specs-container table tr:first-child th:last-child {
    border-top-right-radius: 4px;
}

.specs-container table tr {
    padding: .35em;
}

.specs-container table tr:nth-child(even) {
    background-color: #e1eaf5;
}

.specs-container table tr:nth-child(odd) {
    background-color: rgb(208, 227, 247);
}

.specs-container table th,
.specs-container table td {
    padding: .625em;
    text-align: center;
}

.specs-container table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: white;
    background-color: var(--primary-color);
}

.specs-container table tr td:first-child,
.specs-container table tr th:first-child {
    text-align: left;
}

.specs-container .collapsible {
    cursor: pointer;
    padding: 15px;
    width: 100%;
    background-color: white;
    border: 1px solid var(--border-color);
    text-align: left;
    font-size: 16px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    color: black;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.2s ease-out;
}

.specs-container .collapsible.active {
    background-color: var(--primary-color);
    color: white;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border: 1px solid var(--primary-color);
}

.specs-container .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.specs-container .mobile-specs {
    display: none;
}

@media screen and (max-width:800px) {
    .specs-container .mobile-specs {
        display: block;
    }

    .specs-container .specs-table {
        display: none;
    }
}

/* Animated Arrow */

.arrow {
    width: 4px;
    height: 1.25rem;
    display: inline-block;
    position: relative;
    margin: 0 1rem;
}

.arrow span {
    top: 0.5rem;
    position: absolute;
    width: 9px;
    height: 2px;
    background-color: #000;
    display: inline-block;
    transition: all 0.2s ease;
    border-radius: 25px;
}

.arrow span:first-of-type {
    left: 0;
    transform: rotate(-45deg);
}

.arrow span:last-of-type {
    right: 0;
    transform: rotate(45deg);
}

.arrow.active span:first-of-type {
    transform: rotate(45deg);
}

.arrow.active span:last-of-type {
    transform: rotate(-45deg);
}

.arrow.active span {
    background-color: white;
}

/* 
New content sections styles */
.executive-summary {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.executive-summary p {
    margin: 0;
    font-size: 1.1em;
    color: var(--secondary-text-color);
}

.silent-features {
    margin: 30px 0;
}

.silent-features h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-detail {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.feature-detail h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.feature-detail p {
    margin: 8px 0;
    line-height: 1.5;
}

.feature-detail em {
    color: #666;
    font-size: 0.9em;
}

.audience-benefits {
    margin: 30px 0;
}

.audience-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.audience-section {
    margin: 15px 0;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 8px;
}

.audience-section h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.audience-section ul {
    margin: 0;
    padding-left: 20px;
}

.audience-section li {
    margin: 5px 0;
    color: var(--secondary-text-color);
}

.faq-container {
    padding: 50px 0;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--secondary-text-color);
}

.category-description {
    color: var(--secondary-text-color);
    font-style: italic;
    margin-bottom: 20px;
}

.product-summary {
    color: var(--secondary-text-color);
    font-size: 0.9em;
    margin-top: 8px;
    line-height: 1.4;
}

@media (max-width: 800px) {

    .executive-summary,
    .feature-detail,
    .audience-section {
        margin-left: 24px;
        margin-right: 24px;
    }

    .faq-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}