@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

:root {
    --background-panel: var(--linearBackground);
    --foreground-panel: var(--bodyColor);
}

main {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: normal;
}

/* Page Layout */
.page {
    padding-top: 40px;
    padding-bottom: 60px;
    color: var(--bodyColor);
}

/* Title Header */
.title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--mainColor);
    margin-bottom: 20px;
}

/* Headings */
.intro-highlight,
.main-heading {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.intro-highlight {
    font-size: 1.5rem;
    color: var(--addWishlistButtonHoverBackground);
    font-weight: 600;
}

.main-heading {
    font-size: 2rem;
    color: var(--bodyColor);
    font-weight: 700;
}

/* Description Panel */
.custom-description {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: var(--cartColor);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}
.custom-description p {
    margin-bottom: 18px;
}

/* CTA Button Wrapper */
.custom-button {
    text-align: center;
    margin-top: 30px;
}

/* CTA Button */
.custom-button button.btn-primary {
    background-color: var(--cartButtonBackground);
    color: var(--cartButtonColor);
    font-size: 1.125rem;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.custom-button button.btn-primary:hover {
    background-color: var(--cartButtonHoverBackground);
    color: var(--cartButtonColor);
    transform: scale(1.05);
}

/* Closed State */
.custom-closed {
    background-color: var(--removeCartButtonBackground);
    padding: 16px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 30px;
}

.custom-closed strong {
    color: var(--removeCartButtonColor);
    font-weight: 700;
}