/*
Theme Name: Aroma TV Theme
Description: Official theme for Aroma TV
Version: 1.0
Theme URI: https://hmime.com
Author: HMI
Author URI: https://hmime.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aromatv-theme
*/

/* Custom scrollbar to match dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e74c3c;
}

.font-arabic {
    font-family: 'Roboto', sans-serif;
    /* Fallback for Arabic */
}

/* Custom logo styling */
.custom-logo-link {
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.custom-logo {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

/* Cart dropdown styling */
#cart-dropdown .woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

#cart-dropdown .woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

#cart-dropdown .woocommerce-mini-cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

#cart-dropdown .woocommerce-mini-cart-item .remove_from_cart_button {
    color: #e74c3c;
    font-size: 18px;
    margin-left: auto;
    text-decoration: none;
}

#cart-dropdown .woocommerce-mini-cart-item .remove_from_cart_button:hover {
    color: #c0392b;
}

#cart-dropdown .woocommerce-mini-cart-item a:not(.remove_from_cart_button) {
    color: #fff;
    text-decoration: none;
    flex: 1;
}

#cart-dropdown .woocommerce-mini-cart-item a:not(.remove_from_cart_button):hover {
    color: #e74c3c;
}

#cart-dropdown .quantity {
    color: #e74c3c;
    font-weight: bold;
}

/* Empty cart message */
#cart-dropdown .woocommerce-mini-cart__empty-message {
    color: #666;
    text-align: center;
    padding: 20px;
}

/* Shop Page Styles */
.page-template-page-shop .woocommerce-result-count {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

.page-template-page-shop .woocommerce-pagination {
    margin-top: 4rem;
}

.page-template-page-shop .woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.25rem;
    background-color: #374151;
    color: #d1d5db;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-template-page-shop .woocommerce-pagination .page-numbers:hover,
.page-template-page-shop .woocommerce-pagination .page-numbers.current {
    background-color: #e74c3c;
    color: white;
}

.page-template-page-shop .woocommerce-pagination .page-numbers.prev,
.page-template-page-shop .woocommerce-pagination .page-numbers.next {
    width: auto;
    padding: 0 1rem;
}

/* Category Filter Buttons */
.page-template-page-shop .category-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-template-page-shop .category-filter-buttons a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-template-page-shop .category-filter-buttons a.bg-\[#e74c3c\] {
    background-color: #e74c3c;
    color: white;
}

.page-template-page-shop .category-filter-buttons a.bg-gray-800 {
    background-color: #374151;
    color: #d1d5db;
}

.page-template-page-shop .category-filter-buttons a.bg-gray-800:hover {
    background-color: #4b5563;
    color: white;
}

/* Filter and Sort Styles */
#sort-filter {
    min-width: 160px;
}

#sort-filter:focus {
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Product Grid Responsive Improvements */
@media (min-width: 1280px) {
    .page-template-page-shop .grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1536px) {
    .page-template-page-shop .grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* Shop Header Gradient */
.page-template-page-shop .bg-gradient-to-r {
    background: linear-gradient(to right, #1a1a1a 0%, #0f0f0f 100%);
}

/* Enhanced Product Card Hover Effects */
.page-template-page-shop .group:hover .rounded-3xl {
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.1);
}

/* Loading States */
.ajax_add_to_cart.opacity-75 {
    pointer-events: none;
}

/* Success States */
.ajax_add_to_cart.bg-green-600 {
    background-color: #16a34a !important;
}

.ajax_add_to_cart.bg-green-600:hover {
    background-color: #15803d !important;
}

/* Cart Page Styling */
.woocommerce-cart-form__contents .quantity input {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    text-align: center;
    width: 80px !important;
    font-size: 14px !important;
}
.woocommerce-cart-form__contents .quantity input:focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #e74c3c !important;
}
.woocommerce-cart-form__contents .quantity .qty {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}
.woocommerce-cart-form__contents .quantity .qty:focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #e74c3c !important;
}
.woocommerce-cart .coupon input[type="text"] {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}
.woocommerce-cart .coupon input[type="text"]:focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #e74c3c !important;
}
/* General input styling for all cart inputs */
.woocommerce-cart-form input[type="text"],
.woocommerce-cart-form input[type="email"],
.woocommerce-cart-form input[type="tel"],
.woocommerce-cart-form input[type="password"],
.woocommerce-cart-form input[type="number"],
.woocommerce-cart-form textarea,
.woocommerce-cart-form select {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    width: 100% !important;
}
.woocommerce-cart-form input[type="text"]:focus,
.woocommerce-cart-form input[type="email"]:focus,
.woocommerce-cart-form input[type="tel"]:focus,
.woocommerce-cart-form input[type="password"]:focus,
.woocommerce-cart-form input[type="number"]:focus,
.woocommerce-cart-form textarea:focus,
.woocommerce-cart-form select:focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #e74c3c !important;
}
.woocommerce-cart-form input[type="text"]::placeholder,
.woocommerce-cart-form input[type="email"]::placeholder,
.woocommerce-cart-form input[type="tel"]::placeholder,
.woocommerce-cart-form input[type="password"]::placeholder,
.woocommerce-cart-form input[type="number"]::placeholder,
.woocommerce-cart-form textarea::placeholder,
.woocommerce-cart-form select {
    color: #9ca3af !important;
}
/* Select dropdown styling */
.woocommerce-cart-form select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem !important;
}
.woocommerce-cart-form select option {
    background: #374151 !important;
    color: #e5e7eb !important;
    padding: 8px !important;
}
/* Checkout Form Styling */
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    width: 100% !important;
    font-size: 14px !important;
}
.woocommerce-checkout .form-row input[type="text"]:focus,
.woocommerce-checkout .form-row input[type="email"]:focus,
.woocommerce-checkout .form-row input[type="tel"]:focus,
.woocommerce-checkout .form-row input[type="password"]:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #e74c3c !important;
}
.woocommerce-checkout .form-row label {
    color: #e5e7eb !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}
.woocommerce-checkout .form-row .required {
    color: #e74c3c !important;
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    color: #e5e7eb !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}
.woocommerce-checkout .woocommerce-billing-fields .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-last {
    width: 48% !important;
    float: left !important;
    margin-right: 4% !important;
}
.woocommerce-checkout .woocommerce-billing-fields .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-last {
    margin-right: 0 !important;
}
.woocommerce-checkout .woocommerce-billing-fields .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-last {
    clear: none !important;
}
@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce-billing-fields .form-row-first,
    .woocommerce-checkout .woocommerce-billing-fields .form-row-last,
    .woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
    .woocommerce-checkout .woocommerce-shipping-fields .form-row-last {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }
}
/* Order Review Styling */
.woocommerce-checkout-review-order-table {
    background: #1f2937 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}
.woocommerce-checkout-review-order-table thead tr {
    background: #374151 !important;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #4b5563 !important;
}
.woocommerce-checkout-review-order-table .product-name {
    font-weight: 500 !important;
}
.woocommerce-checkout-review-order-table .product-total {
    font-weight: 600 !important;
    color: #e74c3c !important;
}
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    border-top: 2px solid #4b5563 !important;
    font-weight: 600 !important;
}
.woocommerce-checkout-review-order-table tfoot .order-total td,
.woocommerce-checkout-review-order-table tfoot .order-total th {
    color: #e74c3c !important;
    font-size: 1.125rem !important;
}
/* Payment Methods */
.woocommerce-checkout #payment {
    background: #1f2937 !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #4b5563 !important;
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 0.5rem !important;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    margin-right: 0.5rem !important;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    color: #e5e7eb !important;
    font-weight: 500 !important;
}
.woocommerce-checkout #payment .payment_method_info {
    background: #374151 !important;
    color: #d1d5db !important;
    padding: 1rem !important;
    border-radius: 6px !important;
    margin-top: 0.5rem !important;
}
.woocommerce-checkout #payment .place-order {
    margin-top: 1.5rem !important;
}
.woocommerce-checkout #payment .place-order .button {
    background: #e74c3c !important;
    border: none !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}
.woocommerce-checkout #payment .place-order .button:hover {
    background: #c0392b !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
}
/* Terms and Conditions */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    background: #1f2937 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper label {
    color: #e5e7eb !important;
    font-weight: 500 !important;
}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
    color: #e74c3c !important;
}
/* Select2 Styling for Checkout */
.woocommerce-checkout .select2-container {
    width: 100% !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    border-radius: 8px !important;
    height: auto !important;
    padding: 0 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 12px !important;
    top: 0 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6b7280 transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 5px 0 5px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -5px !important;
    margin-top: -2px !important;
    position: absolute !important;
    top: 50% !important;
    width: 0 !important;
}
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6b7280 transparent !important;
    border-width: 0 5px 5px 5px !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single:focus,
.woocommerce-checkout .select2-container--default .select2-selection--single.select2-container--focus {
    border-color: #e74c3c !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #e74c3c !important;
}
.woocommerce-checkout .select2-dropdown {
    background: #374151 !important;
    border: 1px solid #4b5563 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.woocommerce-checkout .select2-container--default .select2-results__option {
    background: transparent !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
}
.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #4b5563 !important;
    color: #e5e7eb !important;
}
.woocommerce-checkout .select2-container--default .select2-results__option[aria-selected=true] {
    background: #e74c3c !important;
    color: #ffffff !important;
}
.woocommerce-checkout .select2-container--default .select2-search--dropdown .select2-search__field {
    background: #4b5563 !important;
    border: 1px solid #6b7280 !important;
    color: #e5e7eb !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
}
.woocommerce-checkout .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #e74c3c !important;
    outline: none !important;
}
/* Single Product Page Styling */
.woocommerce div.product {
    color: #e5e7eb !important;
}
.woocommerce div.product .product_title {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}
.woocommerce div.product .price {
    color: #e74c3c !important;
    font-size: 1.875rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
    color: #d1d5db !important;
    font-size: 1.125rem !important;
    line-height: 1.75 !important;
    margin-bottom: 2rem !important;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
    color: #d1d5db !important;
}
.woocommerce div.product .woocommerce-product-details__short-description h1,
.woocommerce div.product .woocommerce-product-details__short-description h2,
.woocommerce div.product .woocommerce-product-details__short-description h3,
.woocommerce div.product .woocommerce-product-details__short-description h4,
.woocommerce div.product .woocommerce-product-details__short-description h5,
.woocommerce div.product .woocommerce-product-details__short-description h6 {
    color: #ffffff !important;
}
/* Product Gallery */
.woocommerce-product-gallery__wrapper {
    border-radius: 8px !important;
    overflow: hidden !important;
}
.woocommerce-product-gallery__image {
    border-radius: 8px !important;
}
/* Tabs */
.woocommerce-tabs {
    margin-top: 3rem !important;
}
.woocommerce-tabs ul.tabs {
    border-bottom: 2px solid #374151 !important;
    margin-bottom: 2rem !important;
}
.woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    margin-bottom: 0 !important;
}
.woocommerce-tabs ul.tabs li a {
    color: #9ca3af !important;
    font-weight: 500 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 6px 6px 0 0 !important;
    transition: all 0.3s ease !important;
}
.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #ffffff !important;
    background: #374151 !important;
}
.woocommerce-tabs .panel {
    background: #1f2937 !important;
    color: #d1d5db !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    margin-top: 0 !important;
}
.woocommerce-tabs .panel h2 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}
.woocommerce-tabs .panel p {
    color: #d1d5db !important;
    line-height: 1.7 !important;
}
.woocommerce-tabs .panel table {
    background: #374151 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}
.woocommerce-tabs .panel table th,
.woocommerce-tabs .panel table td {
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #4b5563 !important;
}
.woocommerce-tabs .panel table th {
    background: #4b5563 !important;
    font-weight: 600 !important;
}
/* Reviews */
.woocommerce-Reviews {
    background: #1f2937 !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    margin-top: 2rem !important;
}
.woocommerce-Reviews h3 {
    color: #ffffff !important;
}
.woocommerce-Reviews .comment-form {
    background: #374151 !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
}
.woocommerce-Reviews .comment-form label {
    color: #e5e7eb !important;
}
.woocommerce-Reviews .comment-form input[type="text"],
.woocommerce-Reviews .comment-form input[type="email"],
.woocommerce-Reviews .comment-form textarea {
    background: #4b5563 !important;
    border: 1px solid #6b7280 !important;
    color: #e5e7eb !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
}
.woocommerce-Reviews .comment-form input[type="text"]:focus,
.woocommerce-Reviews .comment-form input[type="email"]:focus,
.woocommerce-Reviews .comment-form textarea:focus {
    border-color: #e74c3c !important;
    outline: none !important;
}
.woocommerce-Reviews .comment-form .form-submit .submit {
    background: #e74c3c !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.woocommerce-Reviews .comment-form .form-submit .submit:hover {
    background: #c0392b !important;
}
.woocommerce-Reviews .commentlist .comment {
    border-bottom: 1px solid #374151 !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.woocommerce-Reviews .commentlist .comment .comment-author {
    color: #ffffff !important;
}
.woocommerce-Reviews .commentlist .comment .comment-meta {
    color: #9ca3af !important;
}
.woocommerce-Reviews .commentlist .comment .description p {
    color: #d1d5db !important;
}
/* Related Products */
.related.products {
    margin-top: 4rem !important;
}
.related.products h2 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}
.related.products .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}
.related.products .product {
    background: #1f2937 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}
.related.products .product:hover {
    transform: translateY(-5px) !important;
}
.related.products .product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}
.related.products .product .woocommerce-loop-product__title {
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    padding: 1rem !important;
    margin: 0 !important;
}
.related.products .product .price {
    color: #e74c3c !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    padding: 0 1rem 1rem !important;
}
.related.products .product .button {
    background: #e74c3c !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    margin: 0 1rem 1rem !important;
    transition: all 0.3s ease !important;
}
.related.products .product .button:hover {
    background: #c0392b !important;
    transform: translateY(-2px) !important;
}
/* Upsells */
.upsells.products {
    margin-top: 4rem !important;
}
.upsells.products h2 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}
.upsells.products .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}
.upsells.products .product {
    background: #1f2937 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}
.upsells.products .product:hover {
    transform: translateY(-5px) !important;
}
.upsells.products .product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}
.upsells.products .product .woocommerce-loop-product__title {
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    padding: 1rem !important;
    margin: 0 !important;
}
.upsells.products .product .price {
    color: #e74c3c !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    padding: 0 1rem 1rem !important;
}
.upsells.products .product .button {
    background: #e74c3c !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    margin: 0 1rem 1rem !important;
    transition: all 0.3s ease !important;
}
.upsells.products .product .button:hover {
    background: #c0392b !important;
    transform: translateY(-2px) !important;
}