.ast-footer-copyright p {
  color: #1f0e0e;
}

a:hover {
  color: #faf7f7;
}

a {
  color: #dbd2d2;
}

.site-primary-header-wrap.ast-builder-grid-row-container.site-header-focus-item.ast-container {
  background-color: #ffffff;
}

#post-21.post-21.page.type-page.status-publish.ast-article-single {
  background-color: f8fafc;
}

.page {
  background-color: ffffff;
  background-size: auto;
}

.site-below-footer-wrap.ast-builder-grid-row-container.site-footer-focus-item.ast-builder-grid-row-full.ast-builder-grid-row-tablet-full.ast-builder-grid-row-mobile-full.ast-footer-row-stack.ast-footer-row-tablet-stack.ast-footer-row-mobile-stack {
  background-color: #f8fafc;
}

.ast-builder-grid-row-container {
  background-color: #ffffff;
}



/* === GRID === */
.rg-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 2px auto;
}

/* === КНОПКИ === */
.rg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    
    color: #1a1a1a;
    background: linear-gradient(135deg, #f4b400, #ffcc33);
    
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.75s ease;
    position: relative;
    overflow: hidden;
}

/* Hover (дорогий ефект) */
.rg-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* CTA трохи сильніше */
.rg-btn-cta {
    font-weight: 700;
}

/* Shine ефект */
.rg-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.5s;
}

.rg-btn:hover::after {
    left: 120%;
}

/* === АДАПТИВ === */
@media (max-width: 768px) {
    .rg-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rg-buttons {
        grid-template-columns: 1fr;
    }
}
/* === ІКОНКИ === */
.rg-icon {
    margin-right: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Іконка рухається */
.rg-btn:hover .rg-icon {
    transform: translateX(4px);
}

/* === ТЕКСТ === */
.rg-btn span:last-child {
    position: relative;
    z-index: 2;
}

/* === PREMIUM ГЛЯНЕЦЬ === */
.rg-btn {
    backdrop-filter: blur(6px);
}

/* === LIGHT GLOW === */
.rg-btn:hover {
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.25),
        0 0 12px rgba(255, 200, 0, 0.4);
}

/* === CTA (сильніша кнопка) === */
.rg-btn-cta {
    background: linear-gradient(135deg, #ffcc33, #f4b400);
    transform: scale(1);
}

/* Пульсація (дуже легка, не колхоз) */
.rg-btn-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(255, 200, 0, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.rg-btn-cta:hover::before {
    opacity: 1;
}

/* === КЛІК ЕФЕКТ === */
.rg-btn:active {
    transform: scale(0.97);
}






```css
/* ========================================
   RENT&GO PREMIUM SINGLE CAR PAGE REDESIGN
   SiteOrigin Custom CSS
======================================== */

/* GLOBAL */
.rg-single-avto {
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    background: #f8f9fb;
    color: #1d2a3a;
    font-family: inherit;
}

/* =========================
   TOP BLOCK
========================= */
.rg-top-block {
    display: flex;
    gap: 35px;
    margin-bottom: 45px;
    align-items: flex-start;
}

/* GALLERY */
.rg-gallery {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

.rg-main-photo {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.rg-main-photo:hover {
    transform: scale(1.015);
}

.rg-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.rg-thumbs img {
    width: 95px;
    height: 68px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    opacity: 0.88;
}

.rg-thumbs img:hover {
    border-color: #c89b3c;
    opacity: 1;
    transform: translateY(-3px);
}

/* =========================
   PRICING CARD
========================= */
.rg-pricing {
    background: linear-gradient(145deg, #ffffff, #f3f5f8);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.12);
    border: 1px solid rgba(200,155,60,0.12);
    position: sticky;
    top: 25px;
}

.rg-pricing h2 {
    font-size: 30px;
    margin-bottom: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.rg-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 14px;
    background: rgba(15,23,42,0.03);
    border-radius: 14px;
    font-weight: 600;
}

.rg-pricing-table {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rg-pricing-table div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.rg-pricing-table div:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.rg-pricing-table strong {
    font-size: 24px;
    color: #c89b3c;
    font-weight: 800;
}

.rg-deposit {
    margin-top: 22px;
    padding: 18px;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.rg-deposit strong {
    color: #facc15;
    font-size: 24px;
}

/* =========================
   MIDDLE BLOCK
========================= */
.rg-middle-block {
    display: flex;
    gap: 35px;
    margin-top: 25px;
}

/* SPECIFICATIONS */
.rg-specs-features {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
}

.rg-specs-features h2 {
    font-size: 28px;
    margin: 25px 0 18px;
    font-weight: 800;
    color: #0f172a;
    position: relative;
}

.rg-specs-features h2:after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    background: #c89b3c;
    border-radius: 5px;
    margin-top: 10px;
}

.rg-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.rg-specs li {
    background: #f8fafc;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.03);
    font-size: 16px;
}

/* BENEFITS */
.rg-features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 16px;
    padding: 0;
    list-style: none;
}

.rg-features li {
    background: linear-gradient(135deg,#ffffff,#f9fafb);
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    border-left: 4px solid #c89b3c;
    font-weight: 600;
    transition: all 0.25s ease;
}

.rg-features li:hover {
    transform: translateY(-4px);
}

/* DESCRIPTION */
.rg-description {
    margin-top: 35px;
    background: #f9fafc;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.04);
}

.rg-description p {
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 20px;
}

/* =========================
   BOOKING FORM
========================= */
.rg-booking {
    background: linear-gradient(145deg,#ffffff,#f8fafc);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.10);
    border: 1px solid rgba(200,155,60,0.08);
    position: sticky;
    top: 25px;
}

.rg-booking h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #111827;
}

.rg-booking input,
.rg-booking select,
.rg-booking textarea {
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    background: #ffffff;
    transition: all 0.25s ease;
    font-size: 16px;
}

.rg-booking input:focus,
.rg-booking select:focus,
.rg-booking textarea:focus {
    border-color: #c89b3c;
    box-shadow: 0 0 0 4px rgba(200,155,60,0.12);
    outline: none;
}

.rg-booking input[type="submit"],
.rg-booking button,
.rg-booking .wpcf7-submit {
    width: 100%;
    background: linear-gradient(135deg,#c89b3c,#e0b24f);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 18px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(200,155,60,0.25);
}

.rg-booking input[type="submit"]:hover,
.rg-booking .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(200,155,60,0.35);
}

/* =========================
   RELATED CARS
========================= */
.rg-related {
    margin-top: 35px;
}

.rg-related h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
}

.related-item-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15,23,42,0.08);
    transition: all 0.3s ease;
}

.related-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(15,23,42,0.14);
}

.related-item-card img {
    border-radius: 14px;
    height: 180px;
}

.related-item-card h3 {
    font-size: 18px;
    margin-top: 14px;
}

.related-item-card p {
    color: #c89b3c;
    font-size: 18px;
    font-weight: 800;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 991px) {
    .rg-top-block,
    .rg-middle-block {
        flex-direction: column;
    }

    .rg-pricing,
    .rg-booking {
        position: relative;
        top: auto;
    }

    .rg-pricing h2,
    .rg-booking h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .rg-single-avto {
        padding: 20px 14px 50px;
    }

    .rg-gallery,
    .rg-pricing,
    .rg-specs-features,
    .rg-booking {
        padding: 22px;
        border-radius: 18px;
    }

    .rg-thumbs img {
        width: 72px;
        height: 54px;
    }

    .rg-pricing-table strong {
        font-size: 21px;
    }

    .rg-related-list {
        flex-direction: column;
    }

    .related-item-card {
        width: 100%;
    }
}