/* Custom styles for digistore theme */

/* Fix for RTL layout */
body {
    direction: rtl;
    text-align: right;
}

/* Category items styling */
.category-item {
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.category-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Brand items styling */
.brand-item {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.brand-item img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

/* Section titles */
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .category-item {
        padding: 10px;
    }
    
    .category-image {
        width: 60px;
        height: 60px;
    }
    
    .category-image img {
        width: 40px;
        height: 40px;
    }
    
    .category-title {
        font-size: 12px;
    }
} 