::selection,
::selection {
    background: #fff;
    color: #000; /* ou #fff selon lisibilité */
}

/* Pour compatibilité Firefox */
::-moz-selection,
::-moz-selection {
    background: #fff;
    color: #000;
}

html {
    scroll-behavior: smooth;
}

body.sadt-page.admin-bar .sadt-scroll-header {
    top: 32px;
}

#ast-scroll-top {
    background-color: #c2a064;
}

#accueil,
#synopsis,
#pourquoi,
#extrait,
#avis,
#auteur,
#chapitre-gratuit {
    scroll-margin-top: calc(var(--sadt-scroll-header-height, 120px));
}

.sadt-page *,
.sadt-page *::before,
.sadt-page *::after {
    box-sizing: border-box;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

.sadt-container {
    margin: 0 auto;
}

.sadt-narrow {
    width: min(820px, calc(100% - 44px));
}

.sadt-scroll-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;

    background-color: #121b24;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .20);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 10px 20px;
    text-align: center;

    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;

    transition: transform .28s ease, opacity .28s ease;
}

.page-book .sadt-scroll-header {
    position: initial;
}

.sadt-scroll-header-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sadt-scroll-title {
    color: #c2a064;
    font-weight: 300;
    font-size: 30px;
    line-height: normal;
}

.sadt-scroll-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 25px;
    line-height: 0px;
}

.sadt-scroll-nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.sadt-scroll-nav a:hover {
    color: #c2a064;
}

.sadt-main {
    background: #f3f3f1;
}

.sadt-hero {
    display: flex;
    height: 100vh;
    background: linear-gradient( 180deg, #0a0a0a 0%, #101720 60%, #1b2636 100% );
    overflow: hidden;
}

.sadt-hero-cover {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: black;
    box-shadow: 80px 60px 80px rgba(0,0,0,0.7);
}

.sadt-hero-cover img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.sadt-hero-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.sadt-hero h1 {
    color: #c2a064;
    font-size: 30px;
    font-style: normal;
    font-weight: 501;
    text-align: center;
    margin-bottom: 20px;
}

.sadt-hero .sadt-hero-tagline {
    margin-top: 0px;
    margin-bottom: 0px;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.sadt-hero h1 span {
    display: block;
}

.sadt-hero-genre {
    color: #c2a064;
    text-transform: uppercase;
    font-size: 14px;
    margin: 20px auto;
    font-weight: 501;
    letter-spacing: .09em;
}

.sadt-hero-subtitle {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.sadt-rating {
    margin: 8px 0 25px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.sadt-rating span,
.sadt-stars {
    color: #c2a064;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.sadt-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.sadt-btn {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1px solid transparent;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
    cursor: pointer;
}

.sadt-btn:hover {
    transform: translateY(-1px);
    opacity: .92;
}

.sadt-btn-light {
    background: #f7f7f6;
    color: #101010;
}

.sadt-btn-light:hover {
    background: #c2a064;
    color: #fff;
}

.sadt-btn-outline {
    background: transparent;
    color: #f7f7f6;
    border-color: rgba(255, 255, 255, .85);
}

.sadt-btn-outline:hover {
    color: #c2a064;
    border-color: #c2a064;
}

.sadt-btn-outline a {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, .85);
}

.sadt-btn-gold {
    background: #c2a064;
    color: #ffffff;
    border-color: #c2a064;
    margin-bottom: 20px;
}

.sadt-section {
    background: #f3f3f1;
    text-align: center;
}

.sadt-separator {
    width: 260px;
    max-width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c2a064, transparent);
    margin: 28px auto 34px;
    position: relative;
}

.sadt-separator::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c2a064;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sadt-synopsis {
    position: relative;
    overflow: hidden;
    padding: 50px 0 30px 0;
}

.sadt-watermark {
    position: absolute;
    left: 50%;
    top: 38px;
    transform: translateX(-50%);
    z-index: 0;
    color: rgba(0, 0, 0, .035);
    font-size: clamp(100px, 16vw, 210px);
    font-weight: 601;
    letter-spacing: .02em;
    line-height: .85;
    white-space: nowrap;
    pointer-events: none;
}

.sadt-synopsis .sadt-container,
.sadt-copy {
    position: relative;
    z-index: 1;
}

.sadt-copy p {
    font-size: 16px;
    color: #343434;
    margin-bottom: 15px;
}

.sadt-reasons {
    position: relative;
}

.sadt-reasons .sadt-container {
    border-top: 1px solid rgba(0, 0, 0, .045);
    box-shadow: 6px 6px 9px rgba(0, 0, 0, .20);
    padding: 50px 0;
}

.sadt-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: start;
}

.sadt-reason-card {
    padding: 0 34px;
}

.sadt-reason-card + .sadt-reason-card {
    border-left: 1px solid #dedbd4;
}

.sadt-reason-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #151d29;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 300;
}

.sadt-reason-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 501;
}

.sadt-reason-card p {
    margin: 0;
    font-size: 14px;
    color: #252525;
}

.sadt-excerpt {
    position: relative;
    background: radial-gradient(circle at center, #142233 0%, #09131e 55%, #06101a 100%);
    color: #ffffff;
    padding: 52px 0 58px;
    text-align: center;
    overflow: hidden;
}

.sadt-excerpt h2 {
    color: #c2a064;
    margin: 0;
    font-size: clamp(27px, 2.3vw, 42px);
    font-weight: 401;
    line-height: 1.25;
    letter-spacing: .02em;
}

.sadt-excerpt-text {
    max-width: 640px;
    margin: 0 auto;
}

.sadt-excerpt-text p {
    color: #d6d9de;
    font-style: italic;
    font-weight: 100;
}

.sadt-excerpt-ending {
    color: #c2a064;
    font-style: italic;
    margin: 34px 0 0;
}

.sadt-quote-mark {
    position: absolute;
    color: #c2a064;
    font-size: 82px;
    font-family: Georgia, serif;
    opacity: .82;
}

.sadt-quote-left {
    left: max(24px, calc(50% - 420px));
    top: 112px;
}

.sadt-quote-right {
    right: max(24px, calc(50% - 420px));
    bottom: 20px;
}

.sadt-reviews {
    padding: 50px;
}

.sadt-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sadt-review-card {
    background: #ffffff;
    padding: 42px 30px 38px;
    min-height: 172px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
}

.sadt-review-name {
    margin: 0 0 5px;
    color: #333333;
    font-size: 14px;
}

.sadt-review-card h3 {
    margin: 10px 0 18px;
    font-size: 15px;
    font-weight: 600;
}

.sadt-review-card p:last-child {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.sadt-author .sadt-container {
    border-top: 1px solid rgba(0, 0, 0, .045);
    box-shadow: 6px 6px 9px rgba(0, 0, 0, .20);
    padding: 50px;
}

.sadt-author-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    text-align: left;
    align-items: center;
}

.sadt-author-photo img {
    width: 100%;
    aspect-ratio: 1.24 / 1;
    object-fit: cover;
    display: block;
    filter: grayscale(1);
}

.sadt-author-content h3 {
    margin: 0 0 2px;
    font-size: 20px;
    font-weight: 600;
    color: #151d29;
}

.sadt-author-role {
    color: #c2a064 !important;
    margin: 0 0 22px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sadt-author-content p,
.sadt-author-content li {
    font-size: 14px;
    line-height: 1.75;
    color: #343434;
}

.sadt-author-content ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
}

.sadt-author-content li::before {
    content: "◆";
    color: #c2a064;
    margin-right: 9px;
    font-size: 11px;
}

.sadt-footer-grid .sadt-btn:hover,
.sadt-final-cta .sadt-btn:hover,
.sadt-author .sadt-btn:hover {
    background: transparent;
    border: 1px solid #c2a064;
    color: #c2a064 ;
}

.sadt-newsletter {
    background: radial-gradient( circle at center, #131c25 0%, #0a1621 35%, #0e1e2f 65%, #0a1623 100% );
    box-shadow: inset 0 0 120px rgba(0,0,0,0.4);
    color: #ffffff;
    padding: 72px 0;
}

.sadt-newsletter-inner {
    width: min(620px, calc(100% - 44px));
}

.sadt-newsletter h2 {
    color: #c2a064;
    max-width: 430px;
    font-weight: 401;
    margin-bottom: 18px;
}

.sadt-newsletter p {
    color: rgba(255, 255, 255, .78);
    margin: 0 0 24px;
}

#sadt-email {
    border-radius: 4px 0 0 4px;
}

.sadt-form > button {
    border-radius: 0 4px 4px 0;
}

.sadt-form,
.sadt-footer-form {
    display: flex;
    width: 100%;
}

.sadt-form input,
.sadt-footer-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 13px 16px;
    font-size: 14px;
}

.sadt-footer-form input {
    border-radius: 0;
    height: 35px;
    flex: initial;
    padding: 10px 15px;
}

.sadt-form button,
.sadt-footer-form button {
    border: 0;
    background: #c2a064;
    color: #ffffff;
    padding: 0 22px;
    cursor: pointer;
}

.sadt-footer-form button {
    font-size: 14px;
    border-radius: 0;
    height: 35px;
}

.sadt-footer-form {
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.sadt-newsletter-notes {
    display: flex;
    gap: 22px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    margin-top: 18px;
}

.sadt-final-cta {
    padding: 50px 0;
}

.sadt-final-cta h2 {
    color: #c2a064;
}

.sadt-final-cta h3 {
    margin-bottom: 25px;
}

.sadt-final-cta p {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 15px;
}

.sadt-cta-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin: 0 auto 38px;
}

.sadt-cta-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
}

.sadt-cta-item + .sadt-cta-item {
    border-left: 1px solid #dedbd4;
}

.sadt-cta-item span {
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    border: 1px solid #c2a064;
    border-radius: 50%;
    color: #c2a064;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sadt-cta-item strong {
    font-size: 14px;
    font-weight: 600;
}

.sadt-cta-item em {
    font-style: normal;
    font-size: 13px;
}

.sadt-footer {
    background: radial-gradient( circle at center, #131c25 0%, #0a1621 35%, #0e1e2f 65%, #0a1623 100% );
    box-shadow: inset 0 0 120px rgba(0,0,0,0.4);
    border-top: 1px solid #c2a064;
    padding-top: 40px;
}

.sadt-footer-grid {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}

.sadt-footer-grid > div {
    position: relative;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 25%;
}

.sadt-footer-grid > div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .5px;
    height: 60%;
    background: #d8d8d8;
}

.sadt-footer h3,
.sadt-footer h4 {
    color: #c2a064;
    margin-bottom: 20px;
    font-size: 20px;
}

.sadt-footer h4 {
    text-transform: none;
    font-size: 15px;
}

.sadt-footer p,
.sadt-footer a {
    display: block;
    color: rgba(255, 255, 255, .78);
        font-size: 14px;
}

.sadt-footer p{
    margin: 0 0 8px;
}

.sadt-footer a {
    text-decoration: underline;
    margin: 0 0 3px;
}

.sadt-footer a:hover {
    color: #c2a064;
}

.sadt-footer .sadt-btn {
    display: inline-flex;
    margin-top: 14px;
    color: #ffffff;
}

.sadt-footer-bottom {
    border-top: 1px solid #c2a064;
    margin-top: 42px;
    padding: 15px 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.sadt-back-top {
    position: fixed;
    z-index: 9998;
    right: 36px;
    bottom: 38px;
    width: 46px;
    height: 46px;
    border: 0;
    background: #c2a064;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.sadt-back-top-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sadt-books-main {
    min-height: 100vh;
    padding: 50px 30px;
    background: #f3f3f1;
    text-align: center;
}

.sadt-container > h1 {
    color: #343434;
}

.sadt-books-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-around;
}

.sadt-book-card {
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
    max-width: 350px;
}

.sadt-book-card img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.sadt-book-card h2 {
    font-size: 22px;
    margin: 15px 0 10px;
    color: #c2a064;
}

.sadt-book-card p {
    margin-bottom: 20px;
}

.sadt-reason-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.sadt-quote-img {
    position: absolute;
    width: 56px;
    height: 56px;
    object-fit: contain;
    opacity: .82;
}

.sadt-quote-right {
    transform: rotate(180deg);
}

.sadt-cta-item span img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.sadt-book-card img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.cky-title {
    color: #c2a064 !important;
}

.cky-policy {
    color: #c2a064 !important;
}

.cky-notice-btn-wrapper > .cky-btn-accept {
    border-color: #c2a064 !important;
    background-color: #c2a064 !important;
}

.cky-notice-btn-wrapper > .cky-btn-accept:hover {
    border-color: #121b24 !important;
    background-color: #121b24 !important;
    opacity: 1;
}

.cky-consent-bar > div:nth-child(2) > div:nth-child(1) {
    color: #c2a064 !important;
}

button.cky-btn-reject {
    background-color: #121b24 !important;
    border-color: #121b24 !important;
}

button.cky-btn-reject:hover {
    background-color: #fff !important;
    border: 1px solid #121b24 !important;
    opacity: 1;
    color: #121b24 !important;

}

.cky-btn-customize {
    color: #c2a064 !important;
    border-color: #c2a064 !important;
}

.cky-btn-customize:hover {
    color: #fff !important;
    background-color: #c2a064 !important;
    opacity: 1;
}

/* Sélecteur de thème de la démo */
.sadt-theme-switcher {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #0a1622;
    color: #ffffff;
    border: 1px solid #c8a45d;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    font-family: inherit;
}

.sadt-theme-switcher label {
    margin: 0;
    color: #c8a45d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sadt-theme-switcher select {
    min-width: 210px;
    height: 36px;
    padding: 0 34px 0 12px;
    background: #f3f0e8;
    color: #24303c;
    border: 1px solid #c8a45d;
    border-radius: 0;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    outline: none;
}

.sadt-theme-switcher select:focus {
    border-color: #c8a45d;
    box-shadow: 0 0 0 3px #c8a45d33;
}

.sadt-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    max-width: 360px;
    padding: 15px 18px;
    border-radius: 18px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.sadt-toast-success {
    background: #3fc095;
}

.sadt-toast-error {
    background: #b42318;
}

.sadt-toast-hide {
    opacity: 0;
    transform: translateY(14px);
}

@media (max-width: 640px) {
    .sadt-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 900px) {
    body.sadt-page.admin-bar .sadt-scroll-header {
        top: 46px;
    }

    .sadt-hero {
        flex-direction: column;
    }

    .sadt-hero-cover {
        width: 100%;
        overflow: initial;
    }

    .sadt-hero-content {
        width: 100%;
    }

    .sadt-hero {
        height: 100%;
    }

    .sadt-reason-card {
        border-left: 0 !important;
        padding: 10px 30px;
    }

    .sadt-scroll-title {
        padding: 0;
    }

    .sadt-scroll-title {
        font-size: 25px;
    }

    .sadt-scroll-header {
        padding: 15px 20px;
    }

    .sadt-scroll-nav {
        display: none;
    }

    h2 {
        font-size: 25px;
    }

    .sadt-watermark {
        top: 50%;
        transform: translate(-50%,-50%);
    }
    
    .sadt-copy p {
        font-size: 14px;
    }

    .sadt-separator {
        margin: 25px auto 25px;
    }

    .sadt-synopsis {
        padding: 30px 0 20px 0;
    }

    .sadt-reason-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .sadt-reason-icon img {
        width: 25px;
        height: 25px;
    }

    .sadt-reasons .sadt-container {
        padding: 30px 0;
    }

    .sadt-reason-card h3 {
        font-size: 16px;
    }

    .sadt-reason-icon {
        margin: 0 auto 10px;
    }

    .sadt-quote-left {
        left: max(15px, calc(50% - 420px));
        top: 20px;
    }

    .sadt-quote-right {
        right: max(15px, calc(50% - 420px));
    }

    .sadt-excerpt {
        padding: 30px;
    }

    .sadt-narrow {
        width: 100%;
    }

    .sadt-quote-img {
        opacity: 1;
    }

    .sadt-reviews {
        padding: 30px;
    }

    .sadt-author .sadt-container {
        padding: 30px;
    }

    .sadt-newsletter {
        padding: 30px;
    }

    #sadt-email {
        height: 40px;
        border-radius: 0;
        margin-bottom: 5px;
        padding: 10px 15px;
        flex: initial;
    }

    .sadt-form > button {
        border-radius: 0;
    }

    .sadt-newsletter .sadt-form button {
        height: 40px;
    }

    .sadt-newsletter h2 {
        text-align: center;
        margin: 0 auto 20px auto;
    }

    .sadt-newsletter p {
        text-align: center;
    }

    .sadt-newsletter-notes {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }

    .sadt-newsletter .sadt-form {
        flex-direction: column;
        margin: auto;
        max-width: 350px;
    }

    .sadt-form input {
        flex: initial;
        padding: 10px 15px;
    }


    .sadt-newsletter-inner {
        width: 100%;
    }

    .sadt-final-cta {
        padding: 30px;
    }

    .sadt-footer-grid > div {
        padding: 0 30px;
        width: fit-content;
    }

    .sadt-footer h3, 
    .sadt-footer h4 {
        margin-bottom: 10px;
    }

    .sadt-form button, 
    .sadt-footer-form button {
        padding: 10px 20px;
    }

    .sadt-footer-bottom {
        margin-top: 30px;
    }

    .sadt-footer {
        padding-top: 30px;
    }

    .sadt-footer-grid > div:first-child {
        display: none;
    }

    .sadt-cta-items {
        max-width: 100%;
        justify-content: space-around;
    }

    .sadt-cta-item {
        padding: 0;
    }

    .sadt-cta-item + .sadt-cta-item {
        border-left: none;
    }

    .sadt-reason-grid {
        display: flex;
        flex-direction: column;
    }

    .sadt-reason-card {
        width: 100%;
    }

    .sadt-review-grid {
        display: flex;
        flex-direction: column;
    }

    .sadt-author-grid {
        display: flex;
        flex-direction: column;
    }

    .sadt-footer-grid {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .sadt-footer-grid > div:not(:last-child)::after {
        content: none;
    }

    .sadt-author-photo img {
        max-width: 500px;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .sadt-hero-cover img {
        height: 100vh;
    }
        
    .sadt-hero h1 {
        font-size: 30px;
    }

}

@media (max-width: 549px) {
    .sadt-hero h1 {
        font-size: 25px;
    }

    .sadt-hero-content {
        padding: 40px;
    }

    .sadt-footer-grid > div.col-2 {
        align-items: start;
    }

    .sadt-footer-grid > div.col-3 {
        align-items: end;
    }

    .sadt-footer-grid {
        gap: 25px;
        flex-direction: column;
    }

    .sadt-footer-grid > div {
        width: 100%;
    }

    .sadt-footer-form input {
        height: 40px;
    }

    .sadt-footer-form button {
        height: 40px;
    }

    .sadt-books-main {
        padding: 30px 30px;
    }
}

@media (max-width: 767px) {
    .sadt-theme-switcher {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: space-between;
    }

    .sadt-theme-switcher select {
        min-width: 0;
        width: 100%;
    }
}
