/* Modern Home Page Styling */
:root {
    --primary-color: #d0205e;
    --secondary-color: #157ed2;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base enhancements */
.body-content {
    background-color: var(--light-bg);
}

/* Hero Section */
#hero .item {
    border-radius: 20px;
    overflow: hidden;
    margin: 10px 0;
    box-shadow: var(--shadow-premium);
}

#hero .caption {
    /* background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); */
    padding: 40px;
    border-radius: 0 20px 20px 0;
}

#hero .shop-now-button {
    background-color: var(--primary-color) !important;
    border: none !important;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    transition: var(--transition-smooth);
}

#hero .shop-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(208, 32, 94, 0.4);
    background: #b01a4f;
}

/* Info Boxes */
.info-boxes {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
}

.info-box {
    border-right: 1px solid #eee;
    padding: 15px;
    transition: var(--transition-smooth);
}

.info-box:last-child {
    border-right: none;
}

.info-box:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.info-box-heading {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* Product Cards */
.product {
    background: white;
    border-radius: 15px !important;
    padding: 15px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.product:hover {
    border-color: #eee;
    box-shadow: var(--shadow-premium);
    transform: translateY(-8px);
}

.product-image img {
    border-radius: 10px;
    transition: var(--transition-smooth);
}

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

.product-info .name a {
    font-weight: 600;
    color: var(--dark-color);
}

.product-price .price {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.product-price .price-before-discount {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

/* Cart Buttons */
.add-cart-button .btn {
    background: var(--secondary-color);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    transition: var(--transition-smooth);
}

.add-cart-button .btn:hover {
    background: var(--primary-color);
}

/* Section Titles */
.section-title,
.new-product-title {
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.section-title:after,
.new-product-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-right .section-title:after,
.text-right .new-product-title:after {
    left: auto;
    right: 0;
}

/* Tabs */
.nav-tab-line li a {
    font-weight: 600;
    color: #777;
    border: none !important;
    background: transparent !important;
    transition: var(--transition-smooth);
}

.nav-tab-line li.active a {
    color: var(--primary-color) !important;
}

/* Blog Section */
.blog-post {
    background: white !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

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

.blog-post-info {
    padding: 20px;
}

.blog-post-info .name a {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* Hot Deals Sidebar */
.hot-deals {
    background: white;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid var(--primary-color);
}

/* RTL Adjustments */
[dir="rtl"] .info-box {
    border-right: none;
    border-left: 1px solid #eee;
}

[dir="rtl"] .info-box:last-child {
    border-left: none;
}