/* Product Card Styles */

/* Apple-like Product Card Styles */
.product-card-apple {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.product-card-apple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.product-image-container {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-apple {
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.product-card-apple:hover .product-image-apple {
    transform: scale(1.08);
}

.product-link {
    display: block;
    text-decoration: none;
}

/* Enhanced Wishlist Button */
.wishlist-btn-apple {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    cursor: pointer;
}

.product-card-apple:hover .wishlist-btn-apple {
    opacity: 1;
    transform: scale(1);
}

.wishlist-btn-apple:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

.wishlist-btn-apple .wishlist-icon {
    font-size: 18px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.wishlist-btn-apple[data-in-wishlist="true"] .wishlist-icon {
    color: #1d1d1f;
    animation: heartBeat 0.6s ease-in-out;
}

.wishlist-btn-apple:hover .wishlist-icon {
    color: #1d1d1f;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Enhanced Sale Badge */
.sale-badge-apple {
    top: 16px;
    left: 16px;
    background: #1d1d1f;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Info Styles */
.product-info-apple {
    padding: 20px 24px 24px;
}

.product-title-apple {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-title-link {
    color: #1D1D1F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-link:hover {
    color: #495057;
}

/* Price Styles */
.price-container-apple {
    margin-bottom: 16px;
}

.current-price-apple {
    font-size: 18px;
    font-weight: 600;
    color: #1D1D1F;
    margin-right: 8px;
}

.original-price-apple {
    font-size: 14px;
    color: #86868B;
    text-decoration: line-through;
}

/* Enhanced Color Options */
.color-options-apple {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.color-dot-apple {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #E5E5E7;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-dot-apple:hover {
    transform: scale(1.15);
    border-color: #495057;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.color-dot-apple.selected {
    border-color: #495057;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Add to Cart Button */
.add-to-cart-btn-apple {
    background: #1d1d1f;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn-apple:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn-apple:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn-apple.out-of-stock {
    background: #86868B;
    cursor: not-allowed;
}

.add-to-cart-btn-apple.out-of-stock:hover {
    background: #86868B;
    transform: none;
    box-shadow: none;
}

/* Buy Now Button */
.buy-now-btn-apple {
    background: transparent;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.buy-now-btn-apple:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(158, 158, 158, 0.3);
}

.buy-now-btn-apple:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.buy-now-btn-apple.out-of-stock {
    background: #86868B;
    cursor: not-allowed;
}

.buy-now-btn-apple.out-of-stock:hover {
    background: #86868B;
    transform: none;
    box-shadow: none;
}

.btn-text {
    font-weight: 500;
}

.btn-icon {
    font-size: 14px;
    opacity: 0.8;
}

/* Action Buttons Container */
.action-buttons-container {
    gap: 8px;
}

/* Secondary Wishlist Button (beside add to cart) */
.wishlist-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wishlist-btn-secondary:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wishlist-btn-secondary i {
    font-size: 18px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.wishlist-btn-secondary[data-in-wishlist="true"] i {
    color: #dc3545;
    animation: heartBeat 0.6s ease-in-out;
}

.wishlist-btn-secondary:hover i {
    color: #dc3545;
}

.wishlist-btn-secondary.loading {
    pointer-events: none;
}

.wishlist-btn-secondary.loading i {
    color: #007AFF;
}

/* Responsive Design for Apple Cards */
@media (max-width: 768px) {
    .product-card-apple {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .product-card-apple:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    }

    .product-image-apple {
        height: 240px;
    }

    .product-info-apple {
        padding: 16px 20px 20px;
    }

    .product-title-apple {
        font-size: 15px;
    }

    .current-price-apple {
        font-size: 16px;
    }

    .wishlist-btn-apple {
        opacity: 1;
        transform: scale(1);
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .wishlist-btn-apple .wishlist-icon {
        font-size: 16px;
    }

    .add-to-cart-btn-apple,
    .buy-now-btn-apple {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
        /* min-width: 120px; */
    }

    .wishlist-btn-secondary {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .wishlist-btn-secondary i {
        font-size: 16px;
    }

    /* Stack buttons vertically on very small screens */
    @media (max-width: 380px) {
        .action-buttons-container {
            flex-direction: column;
        }
        
        .add-to-cart-btn-apple,
        .buy-now-btn-apple {
            width: 100%;
            min-width: auto;
        }
    }

    .sale-badge-apple {
        top: 12px;
        left: 12px;
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .product-card-apple {
        border-radius: 10px;
    }

    .product-image-apple {
        height: 200px;
    }

    .product-info-apple {
        padding: 12px 10px 10px;
    }

    .product-title-apple {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .current-price-apple {
        font-size: 15px;
    }

    .original-price-apple {
        font-size: 13px;
    }

    .add-to-cart-btn-apple, .buy-now-btn-apple {
        padding: 10px 10px;
        font-size: 14px;
        gap: 5px;
    }

    .action-buttons-container {
        gap: 6px;
    }

    .wishlist-btn-secondary {
        width: 40px;
        height: auto;
        border-radius: 8px;
    }

    .wishlist-btn-secondary i {
        font-size: 14px;
    }
}

/* Loading States */
.wishlist-btn-apple.loading {
    pointer-events: none;
}

.wishlist-btn-apple.loading .wishlist-icon {
    color: #007AFF;
}

/* Accessibility Improvements */
.wishlist-btn-apple:focus {
    outline: 2px solid #495057;
    outline-offset: 2px;
}

.add-to-cart-btn-apple:focus {
    outline: 2px solid #495057;
    outline-offset: 2px;
}

.wishlist-btn-secondary:focus {
    outline: 2px solid #495057;
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .product-card-apple {
        background: #1C1C1E;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .product-title-link {
        color: #FFFFFF;
    }

    .current-price-apple {
        color: #FFFFFF;
    }

    .wishlist-btn-apple {
        background: rgba(28, 28, 30, 0.95);
    }

    .wishlist-btn-secondary {
        background: rgba(28, 28, 30, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .wishlist-btn-secondary:hover {
        background: rgba(44, 44, 46, 0.95);
    }
}

/* Apple-Inspired Quantity Selector */
.apple-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-quantity-selector:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.apple-quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: #86868B;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.apple-quantity-btn:hover {
    background: rgba(29, 29, 31, 0.04);
    color: #1d1d1f;
    transform: scale(1.05);
}

.apple-quantity-btn:active {
    transform: scale(0.95);
    background: rgba(29, 29, 31, 0.08);
}

.apple-quantity-btn:focus {
    outline: 2px solid #1d1d1f;
    outline-offset: 2px;
}

.apple-quantity-minus {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-quantity-plus {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Roboto', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    outline: none;
}

.apple-quantity-input::-webkit-outer-spin-button,
.apple-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.apple-quantity-input:focus {
    background: rgba(29, 29, 31, 0.02);
}

.apple-quantity-title {
    color: #1d1d1f !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
}

/* Mobile Responsive Quantity Selector */
@media (max-width: 768px) {
    .apple-quantity-selector {
        border-radius: 10px;
    }

    .apple-quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .apple-quantity-input {
        width: 50px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .apple-quantity-selector {
        border-radius: 8px;
    }

    .apple-quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .apple-quantity-input {
        width: 45px;
        height: 36px;
        font-size: 14px;
    }
}

/* Disabled State */
.apple-quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.apple-quantity-btn:disabled:hover {
    background: transparent;
    color: #86868B;
}

/* Focus States for Accessibility */
.apple-quantity-btn:focus-visible {
    outline: 2px solid #1d1d1f;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .apple-quantity-selector {
        border: 2px solid #000;
    }

    .apple-quantity-btn {
        border-color: #000 !important;
    }

    .apple-quantity-input {
        border: 1px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .apple-quantity-selector,
    .apple-quantity-btn,
    .apple-quantity-input {
        transition: none;
    }

    .apple-quantity-btn:hover,
    .apple-quantity-btn:active {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .apple-quantity-selector {
        background: #1C1C1E;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .apple-quantity-btn {
        color: #A1A1A6;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .apple-quantity-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
    }

    .apple-quantity-input {
        color: #FFFFFF;
        background: transparent;
    }

    .apple-quantity-input:focus {
        background: rgba(255, 255, 255, 0.05);
    }

    .apple-quantity-title {
        color: #FFFFFF !important;
    }
}

/* Print Styles */
@media print {
    .wishlist-btn-apple,
    .wishlist-btn-secondary,
    .add-to-cart-btn-apple,
    .buy-now-btn-apple {
        display: none;
    }

    .product-card-apple {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Apple Modal Styles */
.apple-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-modal-header {
    padding: 24px 24px 0;
}

.apple-modal-body {
    padding: 24px;
}

.apple-modal-footer {
    padding: 0 24px 24px;
}

/* Product Info Styles */
.apple-product-info {
    margin-bottom: 24px;
}

.apple-product-info img {
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Color Options Styles */
.apple-color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.apple-color-option {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.apple-color-option:hover {
    transform: scale(1.1);
    border-color: #495057;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.apple-color-option.selected {
    border-color: #495057;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.apple-color-option span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Size Options Styles */
.apple-size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.apple-size-option {
    min-width: 50px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-size-option:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.apple-size-option.selected {
    border-color: #1d1d1f;
    background: #1d1d1f;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.apple-size-option.selected span {
    color: white;
}

.apple-size-option span {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    transition: color 0.3s ease;
}

/* Quantity Selector Styles */
.apple-quantity-selector {
    max-width: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.apple-quantity-selector .btn {
    border-radius: 0;
    border: none;
    background: #f8f9fa;
    color: #1d1d1f;
    min-width: 36px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-quantity-selector .btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.apple-quantity-selector .btn:active {
    transform: translateY(0);
}

.apple-quantity-selector input {
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 500;
    color: #1d1d1f;
}

/* Modal Button Styles */
.apple-modal-footer .btn {
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apple-modal-footer .btn-outline-secondary {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #86868B;
}

.apple-modal-footer .btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.apple-modal-footer .btn-dark {
    background: #1d1d1f;
    border: none;
}

.apple-modal-footer .btn-dark:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.apple-modal-footer .btn-primary {
    background: #007AFF;
    border: none;
}

.apple-modal-footer .btn-primary:hover {
    background: #0056CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .apple-modal-header {
        padding: 20px 20px 0;
    }
    
    .apple-modal-body {
        padding: 20px;
    }
    
    .apple-modal-footer {
        padding: 0 20px 20px;
    }
    
    .apple-color-options {
        gap: 8px;
    }
    
    .apple-color-option {
        width: 36px;
        height: 36px;
    }
    
    .apple-size-options {
        gap: 6px;
    }
    
    .apple-size-option {
        min-width: 45px;
        height: 36px;
        padding: 0 10px;
    }
    
    .apple-size-option span {
        font-size: 13px;
    }
    
    .apple-quantity-selector {
        max-width: 100px;
    }
    
    .apple-modal-footer .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .apple-modal-header {
        padding: 16px 16px 0;
    }
    
    .apple-modal-body {
        padding: 16px;
    }
    
    .apple-modal-footer {
        padding: 0 16px 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .apple-modal-footer .btn {
        /* width: 100%; */
        margin: 0;
    }
    
    .apple-color-option {
        width: 32px;
        height: 32px;
    }
    
    .apple-size-option {
        min-width: 40px;
        height: 32px;
        padding: 0 8px;
    }
    
    .apple-size-option span {
        font-size: 12px;
    }
    
    .apple-product-info .col-3 {
        width: 25%;
    }
    
    .apple-product-info .col-9 {
        width: 75%;
    }
    
    .apple-product-info img {
        height: 60px;
    }
}

/* Selection Validation Styles */
.selection-required {
    animation: shake 0.5s ease-in-out;
    border: 1px solid #dc3545 !important;
}

.selection-required h6 {
    color: #dc3545 !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    #productConfirmationModal .modal-dialog {
        margin: 1rem;
    }
    
    #productConfirmationModal .modal-content {
        border-radius: 12px;
    }
    
    #productConfirmationModal .modal-body {
        padding: 16px;
    }
    
    #productConfirmationModal .modal-footer {
        padding: 0 16px 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    #productConfirmationModal .modal-footer .btn {
        /* width: 100%; */
        margin: 0;
    }
}

@media (max-width: 480px) {
    #productConfirmationModal .modal-dialog {
        margin: 0.5rem;
    }
    
    #productConfirmationModal .modal-body {
        padding: 12px;
    }
    
    #productConfirmationModal .modal-footer {
        padding: 0 12px 12px;
    }
    
    .quantity-selector {
        max-width: 100px;
    }
    
    #modalProductQuantity {
        width: 50px;
    }
}

/* Modern Product Card Hover Effects */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.product-card:hover .add-to-cart-btn {
    background-color: #333;
    color: white;
    border-color: #333;
}

.product-title:hover {
    color: #007bff !important;
}

/* Color Dots Hover */
.color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Button Hover Effects */
.btn-dark:hover {
    background-color: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Smooth Transitions */
.product-card * {
    transition: all 0.3s ease;
}

/* Wishlist Button Styles */
.wishlist-btn {
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

/* Product Image Styles */
.product-image {
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Add to Cart Button Styles */
.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #333 !important;
    color: white !important;
    border-color: #333 !important;
}

/* Color Options Styles */
.color-options .color-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-options .color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Sale Badge Styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Product Info Styles */
.product-info {
    padding: 0 0.25rem;
}

.product-title {
    transition: color 0.3s ease;
}

.product-title:hover {
    color: #007bff !important;
}

/* Price Styles */
.price {
    font-family: inherit;
}

.price .fw-bold {
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1.5rem;
    }

    .product-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .wishlist-btn {
        opacity: 1;
    }
}

/* Classic Product Card Styles */
.card.product-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.card.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.card.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.card.product-card .product-image img {
    transition: transform 0.3s ease;
}

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

.card.product-card .whishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
}

.card.product-card:hover .whishlist {
    opacity: 1;
}

.card.product-card .whishlist:hover {
    background: #007bff;
    color: white;
}

.card.product-card .product-action {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.card.product-card:hover .product-action {
    opacity: 1;
}

.card.product-card .product-action .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 0;
}

.card.product-card .card-body {
    padding: 1rem;
}

.card.product-card .card-body .link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card.product-card .card-body .link:hover {
    color: #007bff;
}

.card.product-card .price {
    margin-top: 0.5rem;
}

.card.product-card .price .h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.card.product-card .price .text-underline {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}
