/* SD Widgets - Unique Styles */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* SD Slider Widget Styles */
.sd-slider-container {
    background: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    padding: 2rem 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.sd-slider-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sd-slider-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.sd-slider-content {
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sd-slider-overflow {
    position: relative;
    overflow: hidden;
}

.sd-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.sd-slider-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-slider-slide-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.sd-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-slider-content-wrapper {
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sd-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sd-slider-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sd-slider-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sd-slider-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.sd-slider-button-primary {
    background-color: #FF6B00;
    color: #ffffff;
}

.sd-slider-button-primary:hover {
    background-color: rgba(255, 107, 0, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.sd-slider-button-secondary {
    background-color: #ffffff;
    color: #374151;
}

.sd-slider-button-secondary:hover {
    background-color: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Slider Navigation */
.sd-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none;
    border-radius: 50% !important;
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.5rem;
}

.sd-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.sd-slider-prev {
    left: 1rem;
}

.sd-slider-next {
    right: 1rem;
}

.sd-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.sd-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sd-slider-dot:hover,
.sd-slider-dot-active {
    background: #ffffff;
    transform: scale(1.3);
}

/* SD Product Grid Widget Styles */
.sd-product-grid-section {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.sd-product-grid-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.sd-product-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.sd-product-grid-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    padding: 0;
    position: relative;
}

.sd-product-grid-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FF6B00;
    margin-top: 8px;
}

.sd-product-grid-view-all {
    color: #FF6B00;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.sd-product-grid-view-all:hover {
    text-decoration: underline;
    transform: translateX(2px);
}

.sd-product-grid-view-all i {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.sd-product-grid-view-all:hover i {
    transform: translateX(2px);
}

.sd-product-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 0;
}

/* Grid responsive ayarları */
.sd-product-grid[data-columns-mobile="1"] {
    grid-template-columns: 1fr;
}

.sd-product-grid[data-columns-mobile="2"] {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .sd-product-grid[data-columns-tablet="2"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sd-product-grid[data-columns-tablet="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-product-grid[data-columns-tablet="4"] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .sd-product-grid[data-columns-desktop="2"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sd-product-grid[data-columns-desktop="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sd-product-grid[data-columns-desktop="4"] {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sd-product-grid[data-columns-desktop="5"] {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .sd-product-grid[data-columns-desktop="6"] {
        grid-template-columns: repeat(6, 1fr);
    }
}

.sd-product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.sd-product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.sd-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sd-product-link:hover {
    text-decoration: none;
    color: inherit;
}

.sd-product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Aspect Ratio Styles */
/* Otomatik boyut - Orijinal görsel boyutunu hiç elleme */
.sd-aspect-auto {
    display: block;
    width: 100%;
}

.sd-aspect-auto img {
    width: 100%;
    height: auto !important;
    object-fit: unset !important;
    object-position: center;
    display: block;
    max-width: none !important;
    max-height: none !important;
}

/* Sabit aspect ratio'lar */
.sd-aspect-1-1 {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.sd-aspect-2-3 {
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.sd-aspect-3-2 {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.sd-aspect-1-2 {
    aspect-ratio: 1 / 2;
    overflow: hidden;
}

.sd-aspect-2-1 {
    aspect-ratio: 2 / 1;
    overflow: hidden;
}

.sd-aspect-1-1 img,
.sd-aspect-2-3 img,
.sd-aspect-3-2 img,
.sd-aspect-1-2 img,
.sd-aspect-2-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sd-product-image img {
    transition: transform 0.3s ease;
}

.sd-product-card:hover .sd-product-image img {
    transform: scale(1.1);
}

.sd-product-content {
    padding: 1rem 1rem 0.5rem 1rem;
    margin: 0;
}

.sd-product-title {
    font-weight: 500;
    color: #374151;
    margin: 0;
    padding: 0;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

.sd-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 1rem 1rem 1rem;
}

.sd-product-price {
    font-weight: 700;
    color: #FF6B00;
    font-size: 0.875rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    line-height: 1.2;
}

.sd-product-price .woocommerce-Price-amount {
    color: #FF6B00;
    font-weight: 700;
}

.sd-product-price del {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.75rem;
    margin-right: 0;
    order: 1;
    opacity: 0.8;
    position: relative;
}

.sd-product-price del::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #6b7280;
    transform: translateY(-50%);
}

.sd-product-price ins {
    text-decoration: none;
    color: #FF6B00;
    font-weight: 700;
    font-size: 0.9rem;
    order: 2;
    display: block;
}

.sd-product-price del .woocommerce-Price-amount {
    color: #6b7280;
    font-weight: 400;
}

.sd-product-price ins .woocommerce-Price-amount {
    color: #FF6B00;
    font-weight: 700;
}

.sd-product-cart-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6B00;
    color: #ffffff;
    border: none;
    border-radius: 6px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.sd-product-cart-btn:hover {
    background-color: rgba(255, 107, 0, 0.9);
    transform: scale(1.1);
}

.sd-product-cart-btn:focus {
    outline: 2px solid #FF6B00;
    outline-offset: 2px;
}

/* Cart button states */
.sd-product-cart-btn.loading {
    background-color: #6b7280 !important;
    pointer-events: none;
}

.sd-product-cart-btn.success {
    background-color: #10b981 !important;
}

.sd-product-cart-btn.error {
    background-color: #ef4444 !important;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Mobile View All Button */
.sd-product-grid-mobile-view-all {
    display: none;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #FF6B00;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}

.sd-product-grid-mobile-view-all:hover {
    background-color: rgba(255, 107, 0, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    color: #ffffff;
}

/* Desktop - hide mobile button */
@media (min-width: 769px) {
    .sd-product-grid-mobile-view-all {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sd-slider-container {
        padding: 1rem 0;
    }
    
    .sd-slider-wrapper {
        padding: 0 0.5rem;
    }
    
    .sd-slider-slide-image {
        height: 300px;
    }
    
    .sd-slider-content-wrapper {
        padding: 1rem;
        max-width: 20rem;
    }
    
    .sd-slider-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }
    
    .sd-slider-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .sd-slider-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .sd-slider-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        min-width: 140px;
    }
    
    .sd-slider-arrow {
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }
    
    .sd-slider-prev {
        left: 0.5rem;
    }
    
    .sd-slider-next {
        right: 0.5rem;
    }
    
    .sd-product-grid-container {
        padding: 0;
    }
    
    .sd-product-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .sd-product-grid-view-all {
        display: none;
    }
    
    .sd-product-grid-mobile-view-all {
        display: block;
    }
    
    .sd-product-grid-title {
        font-size: 14px;
    }
    
    .sd-product-content {
        padding: 0.75rem 0.75rem 0.5rem 0.75rem;
    }
    
    .sd-product-footer {
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    
    .sd-product-title {
        font-size: 14px;
    }
    
    .sd-product-price {
        font-size: 0.8rem;
    }
    
    .sd-product-cart-btn {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sd-slider-slide-image {
        height: 250px;
    }
    
    .sd-slider-content-wrapper {
        padding: 0.75rem;
        max-width: 18rem;
    }
    
    .sd-slider-title {
        font-size: 1.5rem;
    }
    
    .sd-slider-description {
        font-size: 0.875rem;
    }
    
    .sd-slider_button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 120px;
    }
    
    .sd-product-grid {
        gap: 0.75rem;
    }
    
    .sd-product-content {
        padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    }
    
    .sd-product-footer {
        padding: 0 0.5rem 0.5rem 0.5rem;
    }
    
    .sd-product-title {
        font-size: 12px;
        margin-bottom: 0.25rem;
    }
    
    .sd-product-price {
        font-size: 0.75rem;
    }
    
    .sd-product-cart-btn {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.7rem;
    }
}

/* Animation Utility Classes */
.sd-fade-in {
    animation: sdFadeIn 0.5s ease-in-out;
}

.sd-slide-in-left {
    animation: sdSlideInLeft 0.5s ease-out;
}

.sd-slide-in-right {
    animation: sdSlideInRight 0.5s ease-out;
}

@keyframes sdFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes sdSlideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes sdSlideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Elementor Editor Compatibility */
.elementor-editor-active .sd-slider-container {
    pointer-events: none;
}

.elementor-editor-active .sd-slider-arrow,
.elementor-editor-active .sd-slider-dot {
    pointer-events: auto;
}

/* Fix for potential conflicts */
.sd-slider-container * {
    box-sizing: border-box;
}

.sd-slider-container img {
    max-width: 100%;
    height: auto;
}

/* Custom gradient backgrounds */
.sd-gradient-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
}

.sd-gradient-dark {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.sd-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.sd-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
}

.sd-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

/* ===== SD DISCOUNT COUNTER STYLES ===== */
.sd-discount-counter {
    background: linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sd-discount-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: 1;
}

.sd-discount-counter > * {
    position: relative;
    z-index: 2;
}

.sd-discount-counter .sd-discount-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sd-discount-counter .sd-countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sd-discount-counter .sd-countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sd-discount-counter .sd-countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sd-discount-counter .sd-countdown-number {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    display: block;
}

.sd-discount-counter .sd-countdown-label {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sd-discount-counter.expired {
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
    opacity: 0.6;
}

.sd-discount-counter.expired .sd-discount-title {
    color: #999;
    text-align: center;
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Animation for updating numbers */
.sd-discount-counter .sd-countdown-number.updating {
    animation: numberUpdate 0.3s ease-in-out;
}

@keyframes numberUpdate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #fff;
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design for Discount Counter */
@media (max-width: 768px) {
    .sd-discount-counter {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin: 0 0.5rem;
    }
    
    .sd-discount-counter .sd-discount-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .sd-discount-counter .sd-countdown-container {
        gap: 0.75rem;
        justify-content: space-around;
    }
    
    .sd-discount-counter .sd-countdown-item {
        padding: 0.75rem 0.5rem;
        min-width: 70px;
        border-radius: 10px;
        flex: 1;
        max-width: 80px;
    }
    
    .sd-discount-counter .sd-countdown-number {
        font-size: 2rem;
        line-height: 1;
    }
    
    .sd-discount-counter .sd-countdown-label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .sd-discount-counter {
        padding: 1rem 0.75rem;
        border-radius: 12px;
        margin: 0 0.25rem;
    }
    
    .sd-discount-counter .sd-discount-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .sd-discount-counter .sd-countdown-container {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .sd-discount-counter .sd-countdown-item {
        padding: 0.5rem 0.375rem;
        min-width: 60px;
        border-radius: 8px;
        flex: 1;
        max-width: 70px;
    }
    
    .sd-discount-counter .sd-countdown-number {
        font-size: 1.75rem;
        line-height: 1;
    }
    
    .sd-discount-counter .sd-countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        margin-top: 0.2rem;
    }
}

/* Animation for countdown numbers - already defined above */

/* Accessibility improvements */
.sd-slider-arrow:focus,
.sd-slider-dot:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.sd-slider-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .sd-slider-container {
        background: none !important;
        box-shadow: none !important;
    }
    
    .sd-slider-arrow,
    .sd-slider-dots {
        display: none !important;
    }
    
    .sd-slider-slide {
        break-inside: avoid;
    }
}

/* WooCommerce price styling compatibility */
.sd-product-card .price {
    color: #FF6B00;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    line-height: 1.2;
    font-size: 0.875rem;
}

.sd-product-card .price del {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.75rem;
    order: 1;
    opacity: 0.8;
    position: relative;
}

.sd-product-card .price del::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #6b7280;
    transform: translateY(-50%);
}

.sd-product-card .price ins {
    text-decoration: none;
    color: #FF6B00;
    font-weight: 700;
    font-size: 0.9rem;
    order: 2;
    display: block;
}

.sd-product-card .price del .woocommerce-Price-amount {
    color: #6b7280;
    font-weight: 400;
}

.sd-product-card .price ins .woocommerce-Price-amount {
    color: #FF6B00;
    font-weight: 700;
}

/* Loading state */
.sd-product-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty state */
.sd-product-grid-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.sd-product-grid-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

/* Animation classes */
.sd-product-card.animate-in {
    animation: sdProductFadeIn 0.6s ease-out forwards;
}

@keyframes sdProductFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile product count styles */
.sd-product-card.sd-hidden-mobile {
    display: none !important;
}

/* Smooth transition for responsive changes */
.sd-product-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mobile responsive product grid adjustments */
@media (max-width: 768px) {
    .sd-product-grid {
        gap: 0.75rem;
    }
    
    .sd-product-card {
        margin-bottom: 0.5rem;
    }
}
