@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    margin: 0;
    font-family: Rubik, sans-serif;
    direction: rtl;
    background-color: #f9f9f9;
    color: #333;
}

a {
    color: inherit;
    text-decoration: unset;
}

/* Breadcrumb navigation */
.breadcrumb {
    max-width: 1000px;
    margin: 10px auto 20px;
    padding: 5px 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0077cc;
    text-decoration: none;
}

.breadcrumb span {
    color: #555;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb a .home-icon {
    margin-left: 4px;
}

.main-nav {
    background: linear-gradient(to right, #ff6600, #ff9900);
    display: flex;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    justify-content: center;
    gap: 20px;
    padding: 20px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav__toggle {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: white;
}

.main-nav__links {
    display: flex;
    gap: 60px;
}

.main-nav .main-nav__links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main-nav .main-nav__links a:hover {
    text-decoration: underline;
}

.hero {
    /* background: linear-gradient(135deg, #ff2e2e, #ff9900); */
    color: black;
    padding: 0px 20px;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    max-width: 500px;
}

.hero__button {
    display: inline-block;
    margin-top: 2rem;
    color: white;
    font-size: 3rem;
    background: #d60000;
    padding: 12px 24px;
    min-height: 48px;
    text-decoration: none;
    border-radius: 6px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: right;
}

.features li {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.features__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.features__card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 200px;
    min-height: 110px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.features__card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.features__icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #d9230f;
    transition: color 0.3s ease;
}

.features__card:hover .features__icon {
    color: #ff6600;
}

.faq-section a {
    color: #0077cc;
    text-decoration: underline;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-section .accordion-item {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    margin-top: 1rem;
    background: #fff;
    transition: box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    width: 100%;
    text-align: right;
    padding: 1.2rem;
    min-height: 48px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    line-height: 1.5;
}

.accordion-header:hover {
    background: #fff;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    left: 1rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.3s ease;
}

.logo {
    max-width: 768px;
    width: 100%;
}

.accordion-content p {
    margin: 1rem 0;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
}

/* Blog section styles */
.blog-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    line-height: 1.6;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-post {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.blog-post:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.read-more {
    display: inline-block;
    color: #d9230f;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #d9230f;
    padding: 8px 16px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: white;
    background: #d9230f;
}

.blog-post h3 {
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin-top: 0;
    margin-top: 0;
    color: #555;
    margin-bottom: 0.5rem;
}

.blog-post p {
    font-size: 1rem;
    margin: 0;
}

.blog-post-date {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    text-align: right;
}

.blog-post-content {
    display: flex;
    flex-direction: column;
}

.blog-post-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.blog-post img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: #fff;
}

.container p,
.container ul,
.container ol,
.tip {
    margin-bottom: 1.2rem;
}

.container ul,
.container ol {
    margin-top: 0;
}

.container h1 {
    color: #d9230f;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.container h2 {
    color: #ff6600;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.container p {
    line-height: 1.6;
}

.container ul {
    list-style-type: square;
    padding-right: 20px;
}

.container ol {
    padding-right: 20px;
}

.container ol li::marker {
    color: #ff6600;
    font-weight: bold;
}

.tip {
    background-color: #fff3cd;
    border-right: 6px solid #ffc107;
    padding: 10px;
    margin: 20px 0;
    border-radius: 8px;
}

.tip::before {
    content: '📝';
    float: right;
    margin-left: 8px;
}

.coupon-illustration {
    display: block;
    margin: 0 auto 1rem;
    max-width: 200px;
}

.israel-deals {
    background: #fdf8e6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.container a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s;
}

.container a:hover {
    text-decoration: underline;
    color: #ff6600;
}

.footer {
    padding: 50px 20px;
    margin: auto;
    line-height: 2;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    font-size: 1.05rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.footer p {
    margin: 0 0 1rem 0;
    line-height: 1.8;
}

.footer-disclaimer {
    flex: 1;
    min-width: 250px;
    max-width: 600px;
    margin-bottom: 2rem;
}

.footer-copyrights {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #fff9e6;
}

@media (max-width: 1024px) {
    .hero a {
        font-size: 1.5rem;
    }
}

@media (max-width: 470px) {
    .hero a {
        font-size: 1.3em;
    }
}

@media (max-width: 375px) {
    .hero a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-nav .main-nav__toggle {
        display: block;
        align-self: flex-end;
    }
    .main-nav .main-nav__links {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 10px;
    }
    .main-nav.open .main-nav__links {
        display: flex;
    }
    .main-nav .main-nav__links a {
        padding: 5px 0;
    }
}

/* Additional styles for wikipedia link section */
.wiki-section {
    padding: 40px 20px;
    text-align: center;
}

/* 404 page styles */
body.error-404 {
    text-align: center;
    padding: 5%;
}

body.error-404 h1 {
    font-size: 50px;
    color: red;
}

body.error-404 p {
    font-size: 18px;
}

body.error-404 a {
    color: blue;
    text-decoration: underline;
}

/* Blog article styles */
.blog-article h1 {
    text-align: center;
    font-size: 3rem;
    max-width: 1000px;
    margin: 30px auto;
}

.blog-article .blog-article__hero {
    background-image: url(../img/order-guide.png);
    height: 300px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center center;
}

.blog-article__section {
    margin-bottom: 40px;
}

.blog-article__hero .backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(86 56 16 / 60%);
}

.blog-article__hero h1 {
    z-index: 2;
}

.home-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6600;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    z-index: 2;
    font-size: 0.9rem;
}

.home-btn:hover {
    background: #ff5500;
}

.blog-article .container {
    margin: auto;
    line-height: 1.8;
    margin-bottom: 60px;
    border-radius: 8px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Related posts section */
.related-posts {
    background: #f5f5f5;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.related-posts h2 {
    text-align: center;
    color: #d9230f;
    margin-top: 0;
}

.related-posts .card-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.related-posts .card {
    background: #fff7f0;
    border: 1px solid #ffd7b5;
    border-radius: 12px;
    padding: 20px;
    width: 240px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.related-posts .card:hover {
    transform: translateY(-4px);
}

.related-posts .card a {
    display: block;
    text-align: center;
    color: #d9230f;
    text-decoration: none;
    font-weight: bold;
}

.cta-main {
    display: block;
    text-align: center;
    margin: 30px auto 0;
    background: #ff6600;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-main:hover {
    background: #ff5500;
}

/* Subscribe section */
/*
.subscribe-section {
    padding: 40px 20px;
    text-align: center;
    background: #fff7f0;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.subscribe-form input[type='email'] {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 1rem;
    min-width: 230px;
}

.subscribe-form button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px 24px;
    min-height: 48px;
    font-family: inherit;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.subscribe-form button:hover {
    background: #ff5500;
}

.subscribe-hint {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}
*/

/* Product page styles */
.product-page__hero {
    text-align: center;
    padding: 40px 20px;
}

.product-page__hero img {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

.product-page__details {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    border-radius: 8px;
}

.product-page__price {
    font-size: 2rem;
    color: #d9230f;
    margin-top: 0;
}

/* Primary CTA Button (Orange) */
.cta-button {
    background: linear-gradient(135deg, #ff6600, #ff3300);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Light CTA Button (for orange backgrounds) */
.cta-button-light {
    background: linear-gradient(135deg, #fff, #fff9e6);
    color: #ff6600;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.cta-button-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cta-button-light:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 
.cta-button {
    display: inline-block;
    background: #ff6600;
    color: #fff !important;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #ff5500;
} */

.product-gallery {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-gallery img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.product-gallery img.active {
    box-shadow: 0 0 0 3px #ff6600;
}

.main-img-wrapper {
    position: relative;
    display: inline-block;
}

.main-product-img {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: filter 0.3s;
}

.main-img-wrapper:hover .main-product-img {
    filter: brightness(0.7);
}

.magnify-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.main-img-wrapper:hover .magnify-icon {
    opacity: 1;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.image-modal.open {
    visibility: visible;
    opacity: 1;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.image-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.share-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.9rem;
}

.share-buttons a {
    color: #d9230f;
    text-decoration: none;
}

/* Floating WhatsApp button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    z-index: 1000;
}

.related-products {
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.related-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.related-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.related-item h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #555;
}

/* Coupon and discount display */
.product-page__price .old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 0.5rem;
}

.product-coupon {
    background: #fff7e0;
    border: 2px dashed #ff6600;
    padding: 10px 20px;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 600;
    text-align: center;
}

.product-coupon code {
    background: #ff6600;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Blog posts list page */
.blog-posts {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.blog-index-title {
    text-align: center;
    margin: 40px 0;
}

/* Recommended products on homepage */

.recommended h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
}

.recommended__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recommended__item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recommended__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Product image container */
.recommended__item .product-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.recommended__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.recommended__item:hover img {
    transform: scale(1.05);
}

/* Product overlay on hover */
.recommended__item .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 153, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommended__item:hover .product-overlay {
    opacity: 1;
}

/* Product content area */
.recommended__item .product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
    direction: rtl;
}

.recommended__item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #333;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product__buy-link,
.product__view-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    text-align: center;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.product__buy-link {
    background: linear-gradient(135deg, #d9230f, #ff4444);
    box-shadow: 0 4px 15px rgba(217, 35, 15, 0.3);
    border: none;
}

.product__buy-link:hover {
    background: linear-gradient(135deg, #c21f0d, #e53935);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(217, 35, 15, 0.4);
}

.product__view-link {
    background: linear-gradient(135deg, #495057, #6c757d);
    box-shadow: 0 4px 15px rgba(73, 80, 87, 0.3);
    border: 2px solid transparent;
}

.product__view-link:hover {
    background: linear-gradient(135deg, #343a40, #495057);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(73, 80, 87, 0.4);
    border-color: #495057;
}

.product__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.product__price {
    margin: 0.75rem 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    direction: ltr;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product__price .current-price {
    color: #d9230f;
    font-size: 1.4rem;
}

.product__price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Savings badge */
.product__savings {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: auto;
}

/* Responsive improvements for recommended products */
@media (max-width: 1024px) {
    .recommended__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .recommended__list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .recommended__item img {
        height: 200px;
    }

    .recommended__item .product-content {
        padding: 1.25rem;
    }

    .product__price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product__savings {
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .recommended__item img {
        height: 180px;
    }

    .product__buy-link,
    .product__view-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

.affiliate-cta {
    text-align: center;
    margin: 20px auto;
}
