* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
  --main_color:#6f6f6f;
  --sec_color:#d3c9d0;
  --third_color:#3a6e93;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8fafc;
    direction: rtl;
    line-height: 1.6;
}

.container {
    max-width: 450px;
    margin: 0 auto;
}

/* Header Banner */
.header-banner {
    background: linear-gradient(to left, #4b0829, #cf95be);
    padding: 12px;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
}

.limited-offer {
    background-color: var(--third_color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* Main Product Section */
.main-product {
    background-image: url(assets/2d25844bb4d51269228b689ef2a1d36c.jpg);
    background-size: cover;
    padding: 24px;
}
.main-product {
    position: relative;
    background-image: url(assets/2d25844bb4d51269228b689ef2a1d36c.jpg);
    background-size: cover;
    padding: 24px;
    z-index: 1;
    overflow: hidden;
}

.main-product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);        
    z-index: 2;
    pointer-events: none;         
}
.main-product > * {
    position: relative;
    z-index: 3;
}

.product-title {
    text-align: center;
    margin-bottom: 24px;
}

.product-title h1 {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-title p {
    font-size: 18px;
    color: #475569;
}

/* Product Image */
.product-image {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    position: relative;
}

.image-container {
    height: 220px;
    background: linear-gradient(to bottom, #b97ba4, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.honey-jar {
    width: 150px;
    height: 150px;
    background-color: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.honey-jar-inner {
    width: 110px;
    height: 110px;
    background-color: var(--main_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.natural-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--third_color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
}

/* Price Section */
.price-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 42px;
    font-weight: bold;
    color: var(--third_color);
}

.currency {
    font-size: 24px;
    color: var(--third_color);
    font-weight: bold;
}

.old-price {
    font-size: 18px;
    color: #6b7280;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #fecaca;
    color:var(--third_color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.order-btn {
    width: 100%;
    background-color: #16a34a;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics {
    background: var(--main_color);
    color: white;
    padding: 32px;
}

.stats-title {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.stat-item {
    background-color: rgb(235, 217, 231);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-number.yellow {
    color: #fbbf24;
}

.stat-number.green {
    color: #10b981;
}

.stat-label {
    font-size: 16px;
}

.original-price {
    text-align: center;
    margin-top: 20px;
}

.original-price-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--third_color);
    margin-bottom: 8px;
}

.original-price-label {
    font-size: 16px;
    color: #d1d5db;
}

/* Product Variants */
.variants {
    background-color: var(--sec_color);
    padding: 32px 24px;
}

.variants-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1e293b;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.variant-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.variant-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.variant-icon {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-icon-inner {
    width: 40px;
    height: 40px;
    background-color: #0ea5e9;
    border-radius: 50%;
}

.variant-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.variant-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    overflow: hidden;
    background: #f3f3f3;
    margin: 0 auto 10px auto;
}
.variant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Before/After Section */
.before-after {
    background: white;
    padding: 32px 24px;
}

.before-after-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #1e293b;
}

.comparison {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comparison-item {
    text-align: center;
}

.comparison-image {
    width: 200px;        
    height: 120px;
    border-radius: 16px;  
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.comparison-label {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
}

/* Final CTA */
.final-cta {
    background:var(--main_color);
    padding: 32px 24px;
    text-align: center;
}

.cta-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 18px;
    color: white;
    margin-bottom: 24px;
    opacity: 0.9;
}

.final-order-btn {
    width: 100%;
    background-color:var(--third_color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.final-order-btn:hover {
    background-color:var(--third_color);
    transform: translateY(-2px);
}

.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.cart-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .product-title h1 {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 36px;
    }
    
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}