.adtl-pdp {
    --adtl-primary: #3498f5;
    --adtl-primary-dark: #237fcf;
    --adtl-primary-light: #eaf5ff;
    --adtl-primary-soft: rgba(52, 152, 245, 0.12);

    --adtl-text: #202124;
    --adtl-text-muted: #667085;
    --adtl-border: #e7edf3;
    --adtl-background: #ffffff;
    --adtl-background-soft: #f7fafc;

    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--adtl-text);
    line-height: 1.6;
}

.adtl-row {
    display: flex;
    gap: 22px;
    align-items: center;
}

.adtl-col {
    flex: 1;
    min-width: 0;
}

.adtl-card {
    padding: 20px;
    border: 1px solid var(--adtl-border);
    border-radius: 18px;
    background: var(--adtl-background);
    box-shadow: 0 8px 24px rgba(22, 45, 72, 0.06);
}

.adtl-muted {
    color: var(--adtl-text-muted);
}

.adtl-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--adtl-primary-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.adtl-hr {
    height: 1px;
    margin: 26px 0;
    background: var(--adtl-border);
}

.adtl-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.adtl-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid rgba(52, 152, 245, 0.18);
    border-radius: 999px;
    background: var(--adtl-primary-light);
    color: var(--adtl-primary-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.adtl-section {
    padding: 22px;
    border-radius: 20px;
    background: var(--adtl-background);
}

.adtl-heading {
    position: relative;
    padding-left: 16px;
}

.adtl-heading::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--adtl-primary);
}

.adtl-highlight {
    margin-top: 14px;
    padding: 15px 17px;
    border: 1px solid rgba(52, 152, 245, 0.14);
    border-radius: 14px;
    background: var(--adtl-primary-light);
    color: var(--adtl-text);
}

.adtl-grid3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.adtl-grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.adtl-img {
    display: block;
    width: auto;
    justify-self: center;
    height: auto;
    border: 1px solid var(--adtl-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(22, 45, 72, 0.06);
    max-height: 450px;
}

.adtl-imggrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.adtl-imgcap {
    margin-top: 9px;
    color: var(--adtl-text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.adtl-pdp h2 {
    margin: 0 0 12px;
    color: var(--adtl-text);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 750;
    line-height: 1.25;
}

.adtl-pdp h3 {
    margin: 0 0 8px;
    color: var(--adtl-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.adtl-pdp a {
    color: var(--adtl-primary-dark);
    font-weight: 600;
    text-decoration-color: rgba(35, 127, 207, 0.35);
    text-underline-offset: 3px;
}

.adtl-pdp a:hover {
    color: var(--adtl-primary);
}

.adtl-pdp details {
    margin-bottom: 9px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--adtl-border);
    border-radius: 14px;
    background: var(--adtl-background);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.adtl-pdp details:hover {
    border-color: rgba(52, 152, 245, 0.38);
    box-shadow: 0 6px 18px rgba(22, 45, 72, 0.06);
}

.adtl-pdp details[open] {
    border-color: rgba(52, 152, 245, 0.38);
    box-shadow: 0 8px 22px rgba(22, 45, 72, 0.07);
}

.adtl-pdp summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 13px 46px 13px 16px;
    cursor: pointer;
    color: var(--adtl-text);
    font-weight: 700;
    list-style: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.adtl-pdp summary::-webkit-details-marker {
    display: none;
}

.adtl-pdp summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--adtl-primary-dark);
    border-bottom: 2px solid var(--adtl-primary-dark);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
}

.adtl-pdp details[open] summary {
    background: var(--adtl-primary-light);
    color: var(--adtl-primary-dark);
}

.adtl-pdp details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.adtl-pdp details > *:not(summary) {
    margin-right: 16px;
    margin-left: 16px;
}

.adtl-pdp details > *:last-child {
    margin-bottom: 16px;
}

.adtl-tablewrap {
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--adtl-border);
    border-radius: 16px;
    background: var(--adtl-background);
}

.adtl-pdp table {
    width: 100%;
    border-collapse: collapse;
    background: var(--adtl-background);
}

.adtl-pdp tr:nth-child(even) {
    background: var(--adtl-background-soft);
}

.adtl-pdp td {
    padding: 12px 15px;
    border-top: 1px solid var(--adtl-border);
    color: var(--adtl-text);
    vertical-align: top;
}

.adtl-pdp tr:first-child td {
    border-top: 0;
}

.adtl-pdp td:first-child {
    width: 38%;
    color: var(--adtl-text-muted);
    font-weight: 600;
}

.adtl-faqtext {
    margin-top: 10px;
    color: var(--adtl-text-muted);
}

.adtl-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

@media (hover: hover) {
    .adtl-card,
    .adtl-section,
    .adtl-img {
        transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease,
            transform 0.2s ease;
    }

    .adtl-card:hover,
    .adtl-section:hover {
        border-color: rgba(52, 152, 245, 0.25);
        box-shadow: 0 12px 30px rgba(22, 45, 72, 0.08);
    }
}

@media (max-width: 900px) {
    .adtl-grid3,
    .adtl-imggrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 740px) {
    .adtl-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .adtl-grid3,
    .adtl-grid2,
    .adtl-imggrid {
        grid-template-columns: 1fr;
    }

    .adtl-card,
    .adtl-section {
        padding: 16px;
        border-radius: 16px;
    }

    .adtl-pdp h2 {
        font-size: 22px;
    }

    .adtl-pdp td {
        display: block;
        width: 100%;
        padding: 8px 12px;
        border-top: 0;
    }

    .adtl-pdp td:first-child {
        width: auto;
        padding-top: 12px;
        padding-bottom: 2px;
        color: var(--adtl-primary-dark);
    }

    .adtl-pdp td:last-child {
        padding-top: 2px;
        padding-bottom: 12px;
    }

    .adtl-pdp tr {
        display: block;
        border-top: 1px solid var(--adtl-border);
    }

    .adtl-pdp tr:first-child {
        border-top: 0;
    }
}