@font-face {
    font-family: 'Tajawal';
    src: url('tajawal-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #ebe5ce;
    --text-dark: #3e2723;
    --text-light: #5d4037;
    --card-bg: #fff;
    --btn-color: #3e2723;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Arial, sans-serif;
    color: var(--text-dark);
    direction: rtl;
    min-height: 100vh;
}

.main-wrapper {
    width: 100%;
    margin: 0;
    padding: 1rem 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-container {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

/* Header */
.header {
    margin-bottom: 1.5rem;
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #4a3b32;
    margin-bottom: 0.3rem;
}

.header .subtitle {
    font-size: 1.1rem;
    color: #6d5c52;
    font-weight: 500;
    text-align: center;
}

/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(62, 39, 35, 0.15);
    display: block;
}

/* Cards */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    background: #fff;
    border-radius: 0.8rem;
    padding: 1.2rem 1rem;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 10px 25px rgba(66, 29, 12, 0.158);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3e2723;
    font-weight: 700;
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
    background: #fdfbf7;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-text p {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.5;
    font-weight: 600;
}

.cards-bottom-text {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3e2723;
    margin: 1rem 0 2rem;
}


/* Footer Offer Section */
/* Footer Offer Section */
.bottom-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-container {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    /* Increased container width */
    margin-bottom: 2rem;
}

.offer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 450px;
    width: 100%;
}

.offer-side-img {
    max-width: 450px;
    /* Increased image size as requested */
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e6d3a3;
    height: 248px;
    /* object-fit: contain; */
}

.offer-box {
    background: #fff;
    border: 2px solid #e6d3a3;
    border-radius: 0.8rem;
    padding: 1.5rem;
    max-width: 450px;
    width: 100%;
    margin: 0 0 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: right;
}

.offer-title {
    font-size: 1.1rem;
    color: #3e2723;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-list {
    list-style: none;
    text-align: right;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.offer-list li {
    font-size: 0.95rem;
    color: #4a3b32;
    margin-bottom: 0.6rem;
    position: relative;
    font-weight: 600;
    padding-right: 0.4rem;
}

.offer-list li::before {
    content: '•';
    color: #3E2723;
    font-size: 2rem;
    position: absolute;
    right: -10px;
    top: -5px;
    line-height: 1;
}

.note {
    font-size: 0.9rem;
    color: #8d6e63;
    font-weight: normal;
}

.value-statement {
    font-size: 1rem;
    font-weight: 700;
    color: #3e2723;
    margin-bottom: 0.8rem;
    display: block;
}

.urgency-text {
    font-size: 1rem;
    color: #9b220c;
    font-weight: 700;
    padding-top: 0.8rem;
    border-top: 1px solid #eee;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.btn-whatsapp,
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    flex: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}



.btn-buy {
    background-color: #3e2723;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    background-color: #6d5c52;
}

.cart-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 450px) {
    .main-wrapper {
        padding: 1rem;
    }

    .cards-section {
        gap: 2rem;
    }

    .card {
        padding: 1rem;
        min-width: 100%;
        /* Full width cards on mobile */
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .offer-title {
        font-size: 1.2rem;
    }

    .action-buttons {
        gap: 0.5rem;
    }

    .btn-whatsapp,
    .btn-buy {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .bottom-section {
        padding: 0;
    }

    .offer-container {
        flex-direction: column;
        gap: 1rem;
    }

    .offer-column {
        order: 2;
    }

    .offer-side-img {
        height: auto;
        max-width: 100%;
        order: 1;
        /* Ensuring image is on top */
    }
}

/* Tablet adjustments */
@media (min-width: 451px) and (max-width: 768px) {
    .bottom-section {
        padding: 0;
    }
}

/* Medium screen adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .bottom-section {
        padding: 0;
    }
}

/* Top Header */
.top-header {
    background: #3e2723;
    margin-bottom: 2rem;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);


}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.badge {
    /* background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%); */
    background: #e7c03e;
    color: #3e2723;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: default;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #d8ab38;
    transform: scale(1.05);

}

/* Trust Footer */
.trust-footer {
    background: #3e2723;
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #e6e6e6;
    margin-top: 2rem;
    position: relative;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    position: absolute;
    right: 5%;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.95rem;
    color: #f1efea;
    font-weight: 600;
    position: relative;
    padding: 0 1rem;
}

.trust-item:not(:last-child)::after {
    content: '|';
    position: absolute;
    left: -1rem;
    color: #f1efea;
}

/* Responsive for header and footer */
@media (max-width: 450px) {
    .top-header {
        padding: 0.8rem 3%;
        flex-direction: column;
        gap: 0.8rem;
    }

    .header-logo {
        height: 40px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .trust-footer {
        padding: 1.5rem 3%;
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-link {
        order: 1;
        margin-bottom: 1rem;
    }

    .footer-logo {
        height: 45px;
    }

    .trust-items {
        gap: 1rem;
        flex-direction: column;
        order: 2;
        justify-content: center;
    }

    .trust-item:not(:last-child)::after {
        display: none;
    }
}