body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner.full-width {
    width: 100%;
    background-color: #ff8c00;
    color: #ffffff;
    text-align: center;
    padding: 50px 0;
    margin-bottom: 20px;
}

.banner.full-width h1 {
    font-size: 48px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}

.top-section {
    background-color: #ffffff;
    color: #ff6200;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #ff6200;
}

.top-section h2 {
    margin-bottom: 20px;
    color: #ff8c00;
}

.icons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item img {
    width: 40px;
    height: 40px;
}

.icon-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ff6200;
}

.full-width-slider {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.full-width-slider * {
    box-sizing: border-box;
}

.full-width-slider [simple-slider],
.full-width-slider iframe,
.full-width-slider .slider {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

.flex-row-custom {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #ff8c00;
}

.flex-row-custom .item {
    text-align: center;
    width: 180px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background-color: #fff;
    border: 1px solid #ff6200;
    border-radius: 10px;
}

.flex-row-custom .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
}

.flex-row-custom .item div {
    margin-top: 10px;
    transition: all 0.3s ease;
    color: #ff6200;
}

.flex-row-custom .item:hover {
    transform: translateY(-10px);
    background-color: #fff5e6;
}

.flex-row-custom .item:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 98, 0, 0.15);
}

.flex-row-custom .item:hover div {
    color: #ff8c00;
    font-size: 1.05em;
}

.flex-row-custom .item a {
    text-decoration: none;
    color: inherit;
}

.flex-row-custom .item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to bottom, rgba(255, 98, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flex-row-custom .item:hover::after {
    opacity: 1;
}

.products-section {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
}

.timer-box {
    background-color: #ff6200;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.timer-section {
    background-color: transparent;
    color: #ffffff;
    text-align: center;
}

.timer-section h3,
.timer-section p {
    color: #ffffff;
}

.timer-section h3 span {
    font-weight: bold;
}

.products-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.products-container .product-item {
    border: 1px solid #ff8c00;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.products-container .product-item img {
    width: 200px;
    height: auto;
    border-radius: 5px;
}

.products-container .product-item h4 {
    margin: 10px 0;
    color: #ff6200;
}

.products-container .product-item p {
    color: #ff6200;
    font-weight: bold;
}

.products-container .product-item button {
    background-color: #ff6200;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.products-container .product-item button:hover {
    background-color: #ff8c00;
}

.products-container .product-item:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #ff6200;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}