body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: #f5f5f5;
}

/* HERO */
.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* ORDER */
.order {
    background: white;
    margin: 15px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.top-bar {
    background: #2d3e5f;
    color: white;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
}

/* TITLE */
.title {
    text-align: center;
    font-weight: 800;
}

.title span {
    color: #ff7a00;
}

/* PRICE */
.price {
    text-align: center;
    margin: 10px 0;
}

.old {
    text-decoration: line-through;
    color: #999;
}

.new {
    color: #38b000;
    font-size: 36px;
    font-weight: bold;
    transition: 0.3s;
}

.new.animate {
    transform: scale(1.2);
    color: #ff3d00;
}

/* OFFERS */
.offers label {
    display: block;
    margin: 10px 0;
}

/* FORM */
.form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;

    text-align: right; /* Arabic alignment */
    box-sizing: border-box; /* FIX CENTER */
}
.form {
    width: 100%;
}

/* ERROR */
.error {
    color: red;
    font-size: 13px;
    margin: 5px 0;
}

/* BUTTON */
#orderBtn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#7ed957,#38b000);
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* FINAL IMAGE */
.final img {
    width: 100%;
    margin-top: 15px;
}

/* REVIEWS BUTTON */
.reviews-wrapper {
    text-align: center;
    margin: 30px;
}

.reviews-btn {
    padding: 14px 30px;
    color: white;
    background: linear-gradient(135deg,#ff7a00,#ff3d00);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
/* FLOATING BUTTON BASE */
.float-btn {
    position: fixed;
    bottom: 80px; /* pushes buttons up */
    padding: 14px 18px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;

    transition: 0.3s;
}

.left-btn,
.right-btn {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* KEEP COLORS DIFFERENT (OPTIONAL) */
.left-btn {
    left: 15px;
    background: linear-gradient(135deg,#ff7a00,#ff3d00);
}

.right-btn {
    right: 15px;
    background: linear-gradient(135deg,#7ed957,#38b000);
}

/* HOVER */
.float-btn:hover {
    transform: scale(1.1);
}

/* HIDE ANIMATION */
.float-btn.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
@keyframes flicker {
    0%   { transform: scale(1); opacity: 1; }
    25%  { transform: scale(1.05); opacity: 0.85; }
    50%  { transform: scale(0.98); opacity: 1; }
    75%  { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

#orderBtn {
    animation: flicker 5s infinite;
}
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
    text-align: center;
}

.feature img {
    width: 60px;
    height: 60px;
}

.feature span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}
.info {
    background: white;
    margin: 15px;
    padding: 15px;
    border-radius: 16px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info img {
    width: 100%;
    border-radius: 12px;
}
.hero-box,
.final-box {
    margin: 15px;
    border-radius: 16px;
    overflow: hidden; /* KEY */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    background: white;
    padding: 0; /* remove inner space */
}

.hero-box img,
.final-box img {
    width: 100%;
    display: block;
    border-radius: 0; /* remove double radius */
}