/**
 * استایل‌های کارت محصول پیشرفته
 * Advanced Product Card Styles
 */

/* متغیرهای CSS */
:root {
    --apc-primary-color: #dc3545;
    --apc-secondary-color: #6c757d;
    --apc-text-color: #212529;
    --apc-background-color: #ffffff;
    --apc-border-radius: 15px;
    --apc-box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    --apc-font-family: 'Tahoma', 'Arial', sans-serif;
    --apc-transition: all 0.3s ease;
}

/* استایل کلی کارت محصول */
.apc-product-card {
    position: relative;
    background: var(--apc-background-color);
    border-radius: var(--apc-border-radius);
    box-shadow: var(--apc-box-shadow);
    padding: 20px;
    margin: 10px;
    font-family: var(--apc-font-family);
    transition: var(--apc-transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
}

.apc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* کانتداون تایمر */
.apc-countdown-timer {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--apc-primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2px;
}

.apc-timer-separator {
    color: white;
    font-weight: bold;
    margin: 0 2px;
}

.apc-timer-days,
.apc-timer-hours,
.apc-timer-minutes,
.apc-timer-seconds {
    color: white;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

/* تگ تخفیف */
.apc-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--apc-primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

/* تصویر محصول */
.apc-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.apc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--apc-transition);
}

.apc-product-card:hover .apc-product-image img {
    transform: scale(1.05);
}

/* محتوای محصول */
.apc-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* عنوان محصول */
.apc-product-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--apc-text-color);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* توضیحات محصول */
.apc-product-description {
    font-size: 14px;
    color: var(--apc-secondary-color);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* دسته‌بندی محصول */
.apc-product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 5px 0;
}

.apc-category-tag {
    background: #f8f9fa;
    color: var(--apc-secondary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* ویژگی‌های محصول */
.apc-product-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 5px 0;
}

/* چیدمان Grid */
.apc-product-attributes[style*="display: grid"] {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
}

/* چیدمان Masonry */
.apc-product-attributes[style*="display: masonry"] {
    display: flex !important;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 200px;
    align-content: flex-start;
}

/* انیمیشن‌های المنتور پرو */
.apc-product-card.elementor-animation-fadeIn {
    animation: apc-fadeIn 0.5s ease-out;
}

.apc-product-card.elementor-animation-slideInUp {
    animation: apc-slideInUp 0.5s ease-out;
}

.apc-product-card.elementor-animation-slideInDown {
    animation: apc-slideInDown 0.5s ease-out;
}

.apc-product-card.elementor-animation-slideInLeft {
    animation: apc-slideInLeft 0.5s ease-out;
}

.apc-product-card.elementor-animation-slideInRight {
    animation: apc-slideInRight 0.5s ease-out;
}

.apc-product-card.elementor-animation-zoomIn {
    animation: apc-zoomIn 0.5s ease-out;
}

.apc-product-card.elementor-animation-bounceIn {
    animation: apc-bounceIn 0.6s ease-out;
}

/* تعریف انیمیشن‌ها */
@keyframes apc-slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes apc-slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes apc-slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes apc-slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes apc-zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes apc-bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.apc-attribute-badge {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: var(--apc-transition);
    border: 1px solid #dee2e6;
}

.apc-attribute-badge:hover {
    background: var(--apc-primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.apc-overflow-badge {
    background: #dc3545;
    color: white;
    font-weight: bold;
}

.apc-overflow-badge:hover {
    background: #c82333;
    color: white;
}

/* استایل قدیمی برای سازگاری */
.apc-attribute-tag {
    background: #e9ecef;
    color: var(--apc-text-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* قیمت محصول */
.apc-product-price {
    margin: 10px 0;
}

.apc-current-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--apc-primary-color);
}

.apc-old-price {
    font-size: 14px;
    color: var(--apc-secondary-color);
    text-decoration: line-through;
    margin-right: 10px;
}

/* موجودی محصول */
.apc-product-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.apc-availability-btn {
    background: var(--apc-primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: var(--apc-transition);
}

.apc-availability-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.apc-stock-count {
    font-size: 12px;
    color: var(--apc-secondary-color);
}

/* دکمه‌های عملیات */
.apc-product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.apc-btn-primary {
    flex: 1;
    background: var(--apc-primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: var(--apc-transition);
    cursor: pointer;
    display: inline-block;
}

.apc-btn-primary:hover {
    background: #c82333;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.apc-btn-secondary {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: var(--apc-secondary-color);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--apc-transition);
}

.apc-btn-secondary:hover {
    background: var(--apc-primary-color);
    color: white;
    border-color: var(--apc-primary-color);
    transform: translateY(-2px);
}

/* پیام عدم وجود محصول */
.apc-no-product {
    text-align: center;
    padding: 20px;
    color: var(--apc-secondary-color);
    background: #f8f9fa;
    border-radius: var(--apc-border-radius);
    border: 2px dashed #dee2e6;
}

/* استایل‌های ریسپانسیو */

/* تبلت */
@media (max-width: 1199px) {
    .apc-product-card {
        max-width: 250px;
        padding: 15px;
    }
    
    .apc-product-image {
        height: 150px;
    }
    
    .apc-product-title {
        font-size: 16px;
    }
    
    .apc-product-description {
        font-size: 13px;
    }
    
    .apc-countdown-timer {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .apc-discount-badge {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* موبایل */
@media (max-width: 767px) {
    .apc-product-card {
        max-width: 100%;
        padding: 10px;
        margin: 5px;
    }
    
    .apc-product-image {
        height: 120px;
    }
    
    .apc-product-title {
        font-size: 14px;
    }
    
    .apc-product-description {
        font-size: 12px;
    }
    
    .apc-countdown-timer {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .apc-discount-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .apc-product-actions {
        flex-direction: column;
    }
    
    .apc-btn-primary {
        width: 100%;
    }
}

/* استایل‌های المنتور */
.elementor-widget-apc-product-card .apc-product-card {
    margin: 0;
}

.elementor-widget-apc-product-card .apc-product-card:hover {
    transform: none;
}

/* انیمیشن‌ها */
@keyframes apc-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apc-product-card {
    animation: apc-fadeIn 0.5s ease-out;
}

/* افکت لودینگ */
.apc-loading {
    position: relative;
    overflow: hidden;
}

.apc-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: apc-shimmer 1.5s infinite;
}

@keyframes apc-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* استایل‌های RTL */
[dir="rtl"] .apc-product-card {
    text-align: right;
}

[dir="rtl"] .apc-countdown-timer {
    left: auto;
    right: 15px;
}

[dir="rtl"] .apc-discount-badge {
    right: auto;
    left: 15px;
}

[dir="rtl"] .apc-product-actions {
    flex-direction: row-reverse;
}

/* استایل‌های چاپ */
@media print {
    .apc-product-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .apc-countdown-timer,
    .apc-discount-badge {
        display: none;
    }
    
    .apc-product-actions {
        display: none;
    }
}

/* دسترسی‌پذیری */
.apc-product-card:focus-within {
    outline: 2px solid var(--apc-primary-color);
    outline-offset: 2px;
}

.apc-btn-primary:focus,
.apc-btn-secondary:focus {
    outline: 2px solid var(--apc-primary-color);
    outline-offset: 2px;
}

/* حالت تاریک */
@media (prefers-color-scheme: dark) {
    :root {
        --apc-background-color: #1a1a1a;
        --apc-text-color: #ffffff;
        --apc-secondary-color: #cccccc;
    }
    
    .apc-category-tag,
    .apc-attribute-tag {
        background: #333333;
        color: #ffffff;
    }
    
    .apc-btn-secondary {
        background: #333333;
        color: #ffffff;
        border-color: #555555;
    }
}
