@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: ltr;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.7;
}

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

/* Breadcrumb navigation */
.blog-article__breadcrumb,
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 12px 20px;
    font-size: 0.95rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

.blog-article__breadcrumb a,
.breadcrumb a {
    font-weight: 600;
    text-decoration: none;
    color: #ff6600;
    transition: color 0.2s ease;
}

.blog-article__breadcrumb span,
.breadcrumb span {
    color: #555;
}

.blog-article__breadcrumb a:hover,
.breadcrumb a:hover {
    text-decoration: underline;
    color: #ff6f61;
}

.main-nav {
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    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;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

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

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

.nav-cta-button {
    background: white !important;
    color: #ff6f61 !important;
    border: 2px solid white !important;
    border-radius: 25px !important;
    padding: 8px 16px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.nav-cta-button:hover {
    background: white !important;
    color: #ff6f61 !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Global Navigation Search */
.nav-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-search-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    z-index: 100;
}

.nav-search-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.nav-search-input {
    width: 300px;
    padding: 12px 45px 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    direction: ltr;
    text-align: left;
}

.nav-search-input:focus {
    outline: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.nav-search-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
}

.nav-search-close:hover {
    color: #333;
}

.nav-search-results {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    display: none;
    direction: ltr;
}

.nav-search-results.active {
    display: block;
}

.search-results-section {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.search-results-section:last-child {
    border-bottom: none;
}

.search-results-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    padding: 0 16px 8px;
    text-transform: uppercase;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-icon {
    font-size: 1.2rem;
}

.search-result-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.search-no-results {
    padding: 20px 16px;
    text-align: center;
    color: #888;
}

.search-keyboard-hint {
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
}

.search-keyboard-hint kbd {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: inherit;
}

@media (min-width: 769px) {
    .search-keyboard-hint {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-search-wrapper.active {
        position: fixed;
        top: 70px;
        right: 10px;
        left: 10px;
        transform: none;
    }

    .nav-search-input {
        width: 100%;
    }

    .nav-search-results {
        width: calc(100vw - 20px);
        right: 0;
        left: 0;
    }
}

.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: left;
}

.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: left;
    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: 60px 20px;
    max-width: 1000px;
    margin: auto;
    line-height: 1.7;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.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: left;
}

.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: 40px;
    background: #fff;
}

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

.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;
}

/* a {
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
    color: #ff6600;
} */

/* Enhanced Footer Styles */
.footer {
    background: rgba(51, 51, 51, 0.98);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.footer-section h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section .footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-section .footer-links a:hover {
    transform: translateX(5px);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-title {
    font-size: 0.9rem;
    color: white;
    margin-left: 0.5rem;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icon:hover {
    background: rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom .footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.footer-bottom .footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.footer-bottom .footer-copyrights {
    color: #ecf0f1;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

@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;
    }

    .nav-cta-button {
        margin-top: 10px !important;
        text-align: center !important;
        display: block !important;
        width: fit-content !important;
        align-self: center !important;
    }

    .footer-content {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom .footer-disclaimer p {
        font-size: 0.8rem;
    }
}

/* 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: 12px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
}

.cta-main {
    display: block;
    text-align: center;
    margin: 30px auto 0;
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
    transition: all 0.3s ease;
}

.cta-main:hover {
    background: linear-gradient(135deg, #ff8730, #ff5a4e);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 111, 97, 0.4);
}

/* 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, #ff9a3d, #ff6f61);
    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 {
    color: white;
    text-decoration: none;
    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 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #333;
    line-height: 1.2;
    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: 1.5rem;
}

.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: white;
    padding: 1.25rem;
}

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

.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: left;
    direction: ltr;
}

.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: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.product__buy-link {
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    border: none;
}

.product__buy-link:hover {
    background: linear-gradient(135deg, #ff8730, #ff5a4e);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 111, 97, 0.4);
}

.product__view-link {
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    border: none;
    width: 100%;
}

.product__view-link:hover {
    background: linear-gradient(135deg, #ff8730, #ff5a4e);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 111, 97, 0.4);
}

.product__actions {
    display: flex;
    margin-top: auto;
}

.product__price {
    margin: 0.75rem 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    direction: ltr;
    text-align: left;
    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;
}
