/* ================================================
   PRODUCT DETAILS TABS
   ================================================ */

.pg-product-details {
    margin-top: 36px;
}

.pg-product-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--pg-border);
    margin-bottom: 22px;
}

.pg-product-tab {
    padding: 12px 18px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--pg-grey);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.pg-product-tab:hover {
    color: var(--pg-dark);
}

.pg-product-tab.active {
    color: var(--pg-galaxy);
}

.pg-product-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pg-galaxy);
}

.pg-product-tab-content {
    display: none;
    font-size: 15px;
    line-height: 1.65;
    color: var(--pg-grey);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    max-width: 100%;
}

.pg-product-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pg-product-tab-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pg-dark);
    margin: 18px 0 12px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pg-product-tab-content ul {
    list-style: none;
    padding: 0;
}

.pg-product-tab-content li {
    padding: 5px 0 5px 22px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pg-product-tab-content li::before {
    content: '\2022';
    position: absolute;
    left: 8px;
    color: var(--pg-galaxy);
    font-weight: 700;
}

/* ================================================
   FULL WIDTH DETAILS SECTION
   ================================================ */

.pg-product-full-details-section {
    width: 100%;
    background: transparent;
    margin-top: 60px;
    padding: 60px 0;
    border-top: 1px solid var(--pg-border);
}

.pg-product-full-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pg-product-full-details-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pg-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.pg-product-full-details-content h1,
.pg-product-full-details-content h2,
.pg-product-full-details-content h3,
.pg-product-full-details-content h4 {
    color: var(--pg-dark);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pg-product-full-details-content h2 {
    font-size: 28px;
    border-bottom: 2px solid var(--pg-galaxy);
    padding-bottom: 12px;
}

.pg-product-full-details-content h3 {
    font-size: 22px;
}

.pg-product-full-details-content h4 {
    font-size: 18px;
}

.pg-product-full-details-content p {
    margin-bottom: 16px;
    color: var(--pg-grey);
}

.pg-product-full-details-content ul,
.pg-product-full-details-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.pg-product-full-details-content li {
    margin-bottom: 8px;
    color: var(--pg-grey);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pg-product-full-details-content img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 24px 0;
}

.pg-product-full-details-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.pg-product-full-details-content table th,
.pg-product-full-details-content table td {
    padding: 12px;
    border: 1px solid var(--pg-border);
    text-align: left;
}

.pg-product-full-details-content table th {
    background: var(--pg-light-grey);
    font-weight: 700;
    color: var(--pg-dark);
}

.pg-product-full-details-content a {
    color: var(--pg-galaxy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.pg-product-full-details-content a:hover {
    border-bottom-color: var(--pg-galaxy);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pg-product-full-details-section {
        margin-top: 40px;
        padding: 40px 0;
    }

    .pg-product-full-details-content h2 {
        font-size: 24px;
    }

    .pg-product-full-details-content h3 {
        font-size: 20px;
    }
}

