<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Custom HikaShop Styling for Joomla 5
 * 
 * This CSS file contains custom styling for the HikaShop extension
 * for your Joomla 5 website. Apply these styles to override the default
 * HikaShop appearance.
 */

/* ==================== GENERAL STYLES ==================== */
/* Animation keyframes for card appearance */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* Base product styles with animation */
.hikashop_product,
.custom_product {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px;
    margin-bottom: 20px;
    background-color: #ffffff;
    animation: fadeIn 0.6s ease backwards;
    animation-delay: calc(var(--product-index, 0) * 0.1s);
    position: relative;
    overflow: hidden;
}

/* Apply different animation delays to create a staggered effect */
.hikashop_product:nth-child(1),
.custom_product:nth-child(1) { --product-index: 1; }
.hikashop_product:nth-child(2),
.custom_product:nth-child(2) { --product-index: 2; }
.hikashop_product:nth-child(3),
.custom_product:nth-child(3) { --product-index: 3; }
.hikashop_product:nth-child(4),
.custom_product:nth-child(4) { --product-index: 4; }
.hikashop_product:nth-child(5),
.custom_product:nth-child(5) { --product-index: 5; }
.hikashop_product:nth-child(6),
.custom_product:nth-child(6) { --product-index: 6; }
.hikashop_product:nth-child(n+7),
.custom_product:nth-child(n+7) { --product-index: 7; }

/* Enhanced hover effects */
.hikashop_product:hover,
.custom_product:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Add subtle shimmer effect on hover */
.hikashop_product::before,
.custom_product::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    background-size: 100% 100%;
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hikashop_product:hover::before,
.custom_product:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

/* ==================== PRODUCT LISTING STYLES ==================== */
.hikashop_products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.hikashop_product_image_container,
.custom_product_image {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.hikashop_product_image {
    transition: transform 0.5s ease;
}

.hikashop_product_image:hover {
    transform: scale(1.05);
}

.hikashop_product_name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0;
}

.hikashop_product_name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hikashop_product_name a:hover {
    color: #3498db;
}

.hikashop_product_code_list {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* ==================== PRICE STYLES ==================== */
.hikashop_product_price_full,
.custom_price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 10px 0;
}

.hikashop_product_price_before_discount {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.9rem;
    margin-right: 5px;
}

/* ==================== CATEGORY STYLES ==================== */
/* Enhanced Category Container */
.enhanced_categories_container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

/* Category Card Styling */
.hikashop_category,
.custom_category {
    transition: all 0.4s ease;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0;
    width: calc(20.0% - 20px) !important;
    display: flex;
    flex-direction: column;
}

/* Specific styles for the card layout */
.category_card {
    height: 350px;
    border: none;
}

.hikashop_category:hover,
.custom_category:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Image Container */
.hikashop_category_image,
.custom_category_image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    text-align: center;
    position: relative;
    height: 200px;
    width: 100%;
    margin-bottom: 0;
}

/* Enhanced image styling */
.hikashop_category_image img,
.custom_category_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.hikashop_category:hover .hikashop_category_image img,
.custom_category:hover .custom_category_image img {
    transform: scale(1.08);
}

/* Image overlay effect */
.category_image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 35%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hikashop_category:hover .category_image_overlay,
.custom_category:hover .category_image_overlay {
    opacity: 1;
}

/* Content wrapper styles */
.category_content_wrapper {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Category title styling */
.hikashop_category_name {
    font-size: 1.0rem;
    text-align: center;
    margin: 5px 0 10px;
    position: relative;
    font-weight: 700;
}

.hikashop_category_name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hikashop_category_name a:hover {
    color: #3498db;
}

/* Category description styling */
.hikashop_category_description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 10px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.5em;
}

/* View products button */
.category_view_button {
    text-align: center;
    margin-top: 15px;
    padding: 0 15px 15px;
}

.category_view_link {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.category_view_link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
    color: white;
}

.category_view_link i {
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.category_view_link:hover i {
    transform: translateX(3px);
}

html[dir="rtl"] .category_view_link:hover i {
    transform: translateX(-3px);
}

/* Badge for special categories */
.hikashop_category:nth-child(3n+1):before,
.custom_category:nth-child(3n+1):before {
    content: "Ø¬Ø¯ÙŠØ¯";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

html[dir="rtl"] .hikashop_category:nth-child(3n+1):before,
html[dir="rtl"] .custom_category:nth-child(3n+1):before {
    right: auto;
    left: 10px;
}

/* Count badge */
.hikashop_category:after,
.custom_category:after {
    content: attr(data-count);
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hikashop_category:hover:after,
.custom_category:hover:after {
    opacity: 1;
    transform: translateY(0);
}

html[dir="rtl"] .hikashop_category:after,
html[dir="rtl"] .custom_category:after {
    left: auto;
    right: 10px;
}

/* ==================== PRODUCT DETAIL STYLES ==================== */
.hikashop_product_page {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hikashop_product_left_part {
    margin-bottom: 30px;
}

.hikashop_product_main_image_thumb img {
    border-radius: 6px;
    max-width: 100%;
    height: auto;
}

.hikashop_product_right_part {
    padding-left: 20px;
}

.hikashop_product_description_main,
.custom_product_description {
    line-height: 1.6;
    color: #34495e;
    margin: 20px 0;
}

.hikashop_product_quantity_main {
    margin: 20px 0;
}

.hikashop_product_quantity_field {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 60px;
    text-align: center;
}

.hikashop_cart_input_button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hikashop_cart_input_button:hover {
    background-color: #2980b9;
}

/* ==================== CHECKOUT STYLES ==================== */
.hikashop_checkout_page,
.custom_checkout_page {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.hikashop_checkout_cart,
.custom_checkout_cart {
    margin-bottom: 30px;
}

.hikashop_checkout_cart table {
    width: 100%;
    border-collapse: collapse;
}

.hikashop_checkout_cart th {
    background-color: #f8f9fa;
    padding: 12px 10px;
    text-align: left;
    border-bottom: 2px solid #ecf0f1;
}

.hikashop_checkout_cart td {
    padding: 12px 10px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: middle;
}

.hikashop_checkout_coupon,
.custom_checkout_coupon {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.hikashop_checkout_fields,
.custom_checkout_fields {
    margin-bottom: 20px;
}

.hikashop_checkout_fields legend {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ecf0f1;
    width: 100%;
}

.hikashop_checkout_fields input[type="text"],
.hikashop_checkout_fields select,
.hikashop_checkout_fields textarea {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.hikashop_checkout_fields input[type="text"]:focus,
.hikashop_checkout_fields select:focus,
.hikashop_checkout_fields textarea:focus {
    border-color: #3498db;
    outline: none;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1200px) {
    .enhanced_categories_container {
        gap: 20px;
    }
    
    .hikashop_category,
    .custom_category {
        width: calc(20% - 15px) !important;
    }
    
    .category_card {
        height: 320px;
    }
    
    .hikashop_products {
        gap: 15px;
    }
    
    .hikashop_product_right_part {
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .enhanced_categories_container {
        gap: 15px;
    }
    
    .hikashop_category_name {
        font-size: 1.0rem;
    }
    
    .category_view_link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hikashop_category_image,
    .custom_category_image {
        height: 180px;
    }
    
    .category_card {
        height: 300px;
    }
    
    .hikashop_product_right_part {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .enhanced_categories_container {
        gap: 10px;
    }
    
    .hikashop_category,
    .custom_category {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: auto;
        max-width: 450px;
        margin: 0 auto 20px;
    }
    
    .category_card {
        height: auto;
        min-height: 280px;
    }
    
    .hikashop_products {
        gap: 10px;
    }
    
    .hikashop_product, 
    .custom_product {
        padding: 10px;
    }
    
    .hikashop_product_name {
        font-size: 1.1rem;
    }
    
    .hikashop_checkout_cart th,
    .hikashop_checkout_cart td {
        padding: 8px 5px;
        font-size: 0.9rem;
    }
    
    /* Adjust category name for mobile */
    .hikashop_category_name {
        font-size: 0.9rem;
    }
    
    /* Keep the image height consistent */
    .hikashop_category_image,
    .custom_category_image {
        height: 170px;
    }
    
    /* Adjust badges position for mobile */
    .hikashop_category:nth-child(3n+1):before,
    .custom_category:nth-child(3n+1):before {
        top: 5px;
        right: 5px;
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    html[dir="rtl"] .hikashop_category:nth-child(3n+1):before,
    html[dir="rtl"] .custom_category:nth-child(3n+1):before {
        right: auto;
        left: 5px;
    }
}

@media (max-width: 480px) {
    .hikashop_products {
        display: block;
    }
    
    .hikashop_product,
    .custom_product {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hikashop_checkout_cart th:nth-child(3),
    .hikashop_checkout_cart td:nth-child(3) {
        display: none;
    }
    
    /* Make category cards more compact for smaller screens */
    .hikashop_category_image,
    .custom_category_image {
        height: 150px;
    }
    
    .category_content_wrapper {
        padding: 10px;
    }
    
    .category_view_button {
        padding: 0 10px 10px;
        margin-top: 10px;
    }
    
    .category_view_link {
        width: 100%;
        text-align: center;
        padding: 8px;
    }
    
    /* More compact description */
    .hikashop_category_description {
        -webkit-line-clamp: 2;
        max-height: 3em;
        font-size: 0.85rem;
    }
}

/* ==================== BUTTONS AND INTERACTIVE ELEMENTS ==================== */
.hikabtn, 
.hikacart {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.hikabtn:hover, 
.hikacart:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Add to cart button */
.hikashop_product_stock a.hikacart {
    margin-top: 10px;
    width: 100%;
}

/* Continue shopping button */
a.hikabtn.hikashop_cart_proceed_to_checkout {
    background-color: #2ecc71;
}

a.hikabtn.hikashop_cart_proceed_to_checkout:hover {
    background-color: #27ae60;
}

/* Search button and filters */
.hikashop_filter_button_inside {
    margin-left: 5px;
}

.hikashop_filter_button_inside button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hikashop_filter_button_inside button:hover {
    background-color: #2980b9;
}

/* ==================== RTL SUPPORT FOR ARABIC LANGUAGE ==================== */
/* General RTL adjustments */
html[dir="rtl"] .hikashop_product_right_part {
    padding-right: 20px;
    padding-left: 0;
}

html[dir="rtl"] .hikashop_checkout_cart th {
    text-align: right;
}

html[dir="rtl"] .hikashop_product_price_before_discount {
    margin-left: 5px;
    margin-right: 0;
}

/* RTL Category Display Adjustments */
html[dir="rtl"] .category_view_link i.fa-arrow-right {
    transform: rotate(180deg);
}

html[dir="rtl"] .category_view_link i.fa-arrow-left {
    transform: rotate(0);
}

html[dir="rtl"] .category_view_link:hover i.fa-arrow-left {
    transform: translateX(-3px);
}

/* RTL Alignment for category content */
html[dir="rtl"] .hikashop_category_name,
html[dir="rtl"] .hikashop_category_description {
    text-align: right;
}

/* RTL Badges and overlays */
html[dir="rtl"] .hikashop_category:after,
html[dir="rtl"] .custom_category:after {
    left: auto;
    right: 10px;
}

html[dir="rtl"] .hikashop_category:nth-child(3n+1):before,
html[dir="rtl"] .custom_category:nth-child(3n+1):before {
    right: auto;
    left: 10px;
}

/* RTL Button adjustments */
html[dir="rtl"] .hikashop_filter_button_inside {
    margin-right: 5px;
    margin-left: 0;
}

/* RTL padding and margin adjustments */
html[dir="rtl"] .hikashop_product_stock a.hikacart {
    text-align: center;
}

/* RTL form fields */
html[dir="rtl"] .hikashop_checkout_fields input[type="text"],
html[dir="rtl"] .hikashop_checkout_fields select,
html[dir="rtl"] .hikashop_checkout_fields textarea {
    text-align: right;
}

/* RTL list styles */
html[dir="rtl"] ul.hikashop_category_list {
    padding-right: 0;
}

/* RTL cart adjustments */
html[dir="rtl"] .hikashop_cart_module_product_name_value {
    text-align: right;
}

/* RTL mobile adjustments */
@media (max-width: 768px) {
    html[dir="rtl"] .hikashop_category_name,
    html[dir="rtl"] .hikashop_category_description {
        text-align: center;
    }
    
    html[dir="rtl"] .category_view_link {
        text-align: center;
    }
}</pre></body></html>