/* ========== PRODUCT ACTION BUTTONS - 3 STYLES ========== */

/* Common Button Base */
/*
.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
*/
/* ========== REMOVE PRODUCT ACTION BUTTONS ========== */
.product-actions {
 display: none !important;
}

.btn-action {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 border: none;
 cursor: pointer;
 position: relative;
 transition: all 0.3s ease;
 font-size: 20px;
}

.btn-action i {
 position: relative;
 z-index: 2;
}

/* Tooltip */
.btn-action::before {
 content: attr(data-tooltip);
 position: absolute;
 left: 60px;
 background: rgba(0, 0, 0, 0.9);
 color: #fff;
 padding: 8px 15px;
 border-radius: 8px;
 font-size: 13px;
 font-weight: 500;
 white-space: nowrap;
 opacity: 0;
 pointer-events: none;
 transform: translateX(-10px);
 transition: all 0.3s ease;
 font-family: 'Poppins', sans-serif;
}

.btn-action::after {
 content: '';
 position: absolute;
 left: 55px;
 border: 6px solid transparent;
 border-right-color: rgba(0, 0, 0, 0.9);
 opacity: 0;
 transition: all 0.3s ease;
}

.btn-action:hover::before,
.btn-action:hover::after {
 opacity: 1;
 transform: translateX(0);
}

/* Counter Badge */
.btn-action .action-badge {
 position: absolute;
 top: -5px;
 right: -5px;
 background: var(--vegetable-red);
 color: #fff;
 border-radius: 50%;
 width: 22px;
 height: 22px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 11px;
 font-weight: 700;
 border: 2px solid #fff;
 z-index: 3;
}

/* Animated Border for Counter > 0 */
.btn-action.has-items {
 position: relative;
}

.btn-action.has-items::before {
 left: 60px; /* Keep tooltip position */
}

.btn-action.has-items::after {
 content: '';
 position: absolute;
 top: -3px;
 left: -3px;
 right: -3px;
 bottom: -3px;
 border-radius: 50%;
 background: linear-gradient(45deg, var(--vegetable-orange), var(--vegetable-red), var(--secondary-green), var(--fresh-green));
 background-size: 300% 300%;
 animation: gradientRotate 3s ease infinite;
 z-index: 0;
 opacity: 0.8;
}

@keyframes gradientRotate {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}

/* ========== STYLE 1: GLASS-MORPHISM (DEFAULT) ========== */
.btn-action.style-glass {
 background: rgba(255, 255, 255, 0.25);
 backdrop-filter: blur(10px);
 border: 2px solid rgba(255, 255, 255, 0.4);
 color: var(--primary-green);
 box-shadow: 0 8px 32px rgba(61, 90, 44, 0.2);
}

.btn-action.style-glass:hover {
 background: rgba(255, 255, 255, 0.4);
 transform: scale(1.1) rotate(5deg);
 box-shadow: 0 12px 40px rgba(61, 90, 44, 0.3);
}

.btn-action.style-glass:active {
 transform: scale(0.95);
}

/* ========== STYLE 2: SOLID COLOR ========== */
.btn-action.style-solid {
 background: var(--fresh-green);
 color: #fff;
 border: 2px solid var(--fresh-green);
 box-shadow: 0 4px 15px rgba(74, 124, 47, 0.3);
}

.btn-action.style-solid:hover {
 background: var(--secondary-green);
 border-color: var(--secondary-green);
 transform: scale(1.1);
 box-shadow: 0 8px 25px rgba(143, 179, 57, 0.4);
}

.btn-action.style-solid.btn-wishlist_delme {
 background: var(--vegetable-red);
 border-color: var(--vegetable-red);
}
/*
.btn-action.style-solid.btn-wishlist_delme:hover {
    background: #e05555;
    border-color: #e05555;
}
*/

/* ========== STYLE 3: GRADIENT ========== */
.btn-action.style-gradient {
 background: linear-gradient(135deg, var(--fresh-green), var(--secondary-green));
 color: #fff;
 border: 2px solid transparent;
 box-shadow: 0 4px 15px rgba(74, 124, 47, 0.3);
 position: relative;
 overflow: hidden;
}

.btn-action.style-gradient::before {
 left: 60px; /* Reset for tooltip */
}

.btn-action.style-gradient:hover {
 background: linear-gradient(135deg, var(--secondary-green), var(--vegetable-orange));
 transform: scale(1.1);
 box-shadow: 0 8px 25px rgba(143, 179, 57, 0.4);
}

.btn-action.style-gradient.btn-wishlist_delme {
 background: linear-gradient(135deg, var(--vegetable-red), var(--vegetable-orange));
}

.btn-action.style-gradient.btn-wishlist_delme:hover {
 background: linear-gradient(135deg, var(--vegetable-orange), var(--vegetable-red));
}

/* Ripple Effect */
.btn-action.style-gradient::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 0;
 height: 0;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.5);
 transform: translate(-50%, -50%);
 transition: width 0.6s, height 0.6s;
}

.btn-action.style-gradient:active::after {
 width: 100px;
 height: 100px;
}

/* ========== REMOVE OLD OVERLAY BUTTONS ========== */
.product-overlay {
 display: none !important;
}

/* ========== LOADING SPINNER ========== */
.loading-spinner {
 text-align: center;
 padding: 40px 0;
 display: none;
}

.loading-spinner.active {
 display: block;
}

.spinner {
 width: 50px;
 height: 50px;
 margin: 0 auto;
 border: 4px solid var(--accent-cream);
 border-top-color: var(--fresh-green);
 border-radius: 50%;
 animation: spin 1s linear infinite;
}

@keyframes spin {
 to { transform: rotate(360deg); }
}

.loading-text {
 margin-top: 15px;
 color: var(--text-light);
 font-size: 14px;
}

/* ========== SKELETON LOADER ========== */
.skeleton-card {
 background: #fff;
 border-radius: 15px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(61, 90, 44, 0.1);
}

.skeleton-image {
 height: 250px;
 background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
 background-size: 200% 100%;
 animation: shimmer 1.5s infinite;
}

.skeleton-content {
 padding: 20px;
}

.skeleton-line {
 height: 16px;
 background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
 background-size: 200% 100%;
 animation: shimmer 1.5s infinite;
 border-radius: 4px;
 margin-bottom: 10px;
}

.skeleton-line.short {
 width: 60%;
}

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

/* ========== NO MORE PRODUCTS MESSAGE ========== */
.no-more-products {
 text-align: center;
 padding: 40px 0;
 color: var(--text-light);
 display: none;
}

.no-more-products.active {
 display: block;
}

.no-more-products i {
 font-size: 48px;
 color: var(--secondary-green);
 margin-bottom: 15px;
}
/*
.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--accent-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

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

/* ========== PRODUCT CARD IMPROVEMENTS ========== */
.product-link {
 text-decoration: none;
 display: block;
}

/* Product Image - Perfect Square */
.product-image {
 position: relative;
 overflow: hidden;
 width: 100%;
 aspect-ratio: 1 / 1; /* Perfect square */
 background: linear-gradient(135deg, var(--accent-cream) 0%, #f8f5f0 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 20px;
}

.product-image img {
 max-width: 100%;
 max-height: 100%;
 width: auto;
 height: auto;
 object-fit: contain;
 object-position: center;
 transition: transform 0.3s ease, filter 0.3s ease;
 display: block;
 border-radius: 15px;
}

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

/* Product Info */
.product-info {
 /*padding: 20px;*/
 flex: 1;
 display: flex;
 flex-direction: column;
}

.product-title {
 font-size: 16px;
 font-weight: 600;
 margin-bottom: 10px;
 min-height: 48px;
 overflow: hidden;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
}

.product-title a {
 color: var(--text-dark);
 text-decoration: none;
 transition: color 0.3s ease;
}

.product-title a:hover {
 color: var(--fresh-green);
}

.product-rating {
 margin-bottom: 10px;
 color: var(--vegetable-orange);
 font-size: 14px;
}

.product-rating i {
 font-size: 14px;
}

.product-price {
 /*display: flex;*/
 align-items: center;
 gap: 10px;
 margin-bottom: 15px;
}

.current-price {
 font-size: 1.2em;
 /*font-weight: 700;*/
 color: var(--fresh-green);
}

.old-price {
    font-size: 1.2rem;
    color: #e85151;
    text-decoration: line-through;
    margin-left: 15px;
}

/* Bottom Action Buttons */
.product-actions-bottom {
 display: flex;
 gap: 10px;
 margin-top: auto;
}

.btn-add-cart_delme_delme {
 flex: 1;
 background: linear-gradient(135deg, var(--fresh-green), var(--secondary-green));
 color: #fff;
 border: none;
 padding: 12px 20px;
 border-radius: 8px;
 font-weight: 600;
 font-size: 14px;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
}
.btn-wishlist{
 color: #fff;
 border: #d103bc;
}
.btn-wishlist:hover{
 color: #d103bc;
}
.btn-add-cart_delme:hover {
 background: linear-gradient(135deg, var(--secondary-green), var(--vegetable-orange));
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(74, 124, 47, 0.3);
}

.btn-add-cart_delme:active {
 transform: translateY(0);
}

.btn-wishlist_delme {
 background: #fff;
 color: var(--vegetable-red);
 border: 2px solid var(--vegetable-red);
 padding: 12px 16px;
 border-radius: 8px;
 font-size: 16px;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
}

.btn-wishlist_delme:hover {
 background: var(--vegetable-red);
 color: #1d1c1c !important;
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(201, 69, 69, 0.3);
}

.btn-wishlist_delme:active {
 transform: translateY(0);
}

.btn-wishlist_delme i {
 font-size: 18px;
}

/* Product Badge */
.product-badge {
 position: absolute;
 top: 15px;
 right: 15px;
 background: var(--vegetable-red);
 background: #ffffffad;
 color: #026302;
 padding: 8px 15px;
 border-radius: 25px;
 font-weight: 600;
 font-size: 14px;
 z-index: 5;
 box-shadow: 0 4px 10px rgba(201, 69, 69, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
 .product-image {
  padding: 15px;
 }
}

@media (max-width: 768px) {
 .product-image {
  padding: 15px;
 }

 .product-info {
  padding: 15px;
 }

 .current-price {
  font-size: 20px;
 }

 .btn-add-cart_delme {
  font-size: 13px;
  padding: 10px 15px;
 }
}

@media (max-width: 576px) {
 .product-image {
  padding: 10px;
 }

 .product-actions-bottom {
  flex-direction: column;
 }

 .btn-wishlist_delme {
  width: 100%;
 }
}

button.btn.btn-add-cart_delme_delme {
 color: black;
}

/* ========== QUICK VIEW OVERLAY ========== */
.quick-view-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(61, 90, 44, 0.9);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 opacity: 0;
 transition: opacity 0.3s ease;
 color: #fff;
 font-size: 18px;
 font-weight: 600;
 gap: 10px;
}

.product-image:hover .quick-view-overlay {
 opacity: 1;
}

.quick-view-overlay i {
 font-size: 32px;
}

/* ========== PRODUCT ACTIONS BOTTOM ========== */
.product-actions-bottom {
 display: flex;
 gap: 8px;
 margin-top: auto;
}
/*
.btn-quick-view {
 flex: 1;
 background: linear-gradient(135deg, var(--basket-brown), var(--vegetable-orange));
 color: #333;
 border: none;
 padding: 10px 15px;
 border-radius: 8px;
 font-weight: 600;
 font-size: 13px;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 6px;
}

.btn-quick-view:hover {
 background: linear-gradient(135deg, var(--vegetable-orange), var(--vegetable-red));
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(139, 90, 60, 0.3);
}

*/
.btn-add-cart_delme_delme {
 flex: 1;
 background: linear-gradient(135deg, var(--fresh-green), var(--secondary-green));
 color: #fff;
 border: none;
 padding: 10px 15px;
 border-radius: 8px;
 font-weight: 600;
 font-size: 13px;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 6px;
}

.btn-add-cart_delme_delme:hover {
 background: linear-gradient(135deg, var(--secondary-green), var(--vegetable-orange));
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(74, 124, 47, 0.3);
}

.btn-wishlist_delme {
 background: #fff;
 color: var(--vegetable-red);
 border: 2px solid var(--vegetable-red);
 padding: 10px 12px;
 border-radius: 8px;
 font-size: 16px;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
}

.btn-wishlist_delme:hover {
 background: var(--vegetable-red);
 color: #fff;
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(201, 69, 69, 0.3);
}

/* ========== QUICK VIEW MODAL ========== */
#quickViewModal .modal-content {
 border-radius: 15px;
 overflow: hidden;
 border: none;
}

#quickViewModal .modal-header {
 position: absolute;
 top: 0;
 right: 0;
 z-index: 10;
 padding: 15px;
}

#quickViewModal .btn-close {
 background: #fff;
 border-radius: 50%;
 opacity: 1;
 width: 40px;
 height: 40px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Product Gallery */
.product-gallery {
 background: var(--accent-cream);
 padding: 30px;
 height: 100%;
 display: flex;
 flex-direction: column;
}

.main-image-container {
 position: relative;
 width: 100%;
 aspect-ratio: 1 / 1;
 background: #fff;
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 20px;
 overflow: hidden;
 cursor: zoom-in;
 box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-image {
 max-width: 100%;
 max-height: 100%;
 object-fit: contain;
 transition: transform 0.3s ease;
}

.main-image-container:hover .main-image {
 transform: scale(1.05);
}

.image-zoom-hint {
 position: absolute;
 bottom: 15px;
 right: 15px;
 background: rgba(0,0,0,0.7);
 color: #fff;
 padding: 8px 15px;
 border-radius: 20px;
 font-size: 12px;
 display: flex;
 align-items: center;
 gap: 8px;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.main-image-container:hover .image-zoom-hint {
 opacity: 1;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
 display: flex;
 gap: 10px;
 overflow-x: auto;
 padding: 10px 0;
}

.thumbnail-gallery::-webkit-scrollbar {
 height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
 background: #f1f1f1;
 border-radius: 10px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
 background: var(--secondary-green);
 border-radius: 10px;
}

.thumbnail-item {
 min-width: 80px;
 width: 80px;
 height: 80px;
 border-radius: 8px;
 overflow: hidden;
 cursor: pointer;
 border: 3px solid transparent;
 transition: all 0.3s ease;
 background: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 5px;
}

.thumbnail-item:hover {
 border-color: var(--secondary-green);
 transform: scale(1.05);
}

.thumbnail-item.active {
 border-color: var(--fresh-green);
 box-shadow: 0 4px 10px rgba(74, 124, 47, 0.3);
}

.thumbnail-item img {
 max-width: 100%;
 max-height: 100%;
 object-fit: contain;
}

/* Product Details Modal */
.product-details-modal {
 padding: 40px;
 height: 100%;
 overflow-y: auto;
}

.product-category {
 color: var(--text-light);
 font-size: 14px;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 10px;
}

.product-name-modal {
 font-size: 28px;
 font-weight: 700;
 color: var(--primary-green);
 margin-bottom: 15px;
 line-height: 1.3;
}

.product-rating-modal {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 20px;
 color: var(--vegetable-orange);
}

.product-rating-modal .stars {
 font-size: 18px;
}

.product-rating-modal .review-count {
 color: var(--text-light);
 font-size: 14px;
}

.product-price-modal {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 20px;
 flex-wrap: wrap;
}

.current-price-modal {
 font-size: 36px;
 font-weight: 700;
 color: var(--fresh-green);
}

.old-price-modal {
 font-size: 24px;
 color: var(--text-light);
 text-decoration: line-through;
}

.discount-badge-modal {
 background: var(--vegetable-red);
 color: #fff;
 padding: 6px 12px;
 border-radius: 20px;
 font-size: 14px;
 font-weight: 600;
}

.product-stock {
 margin-bottom: 20px;
 padding: 12px 20px;
 border-radius: 8px;
 font-weight: 600;
 display: inline-block;
}

.product-stock.in-stock {
 background: rgba(74, 124, 47, 0.1);
 color: var(--fresh-green);
}

.product-stock.out-of-stock {
 background: rgba(201, 69, 69, 0.1);
 color: var(--vegetable-red);
}

.product-description-modal {
 margin-bottom: 25px;
 color: var(--text-dark);
 line-height: 1.8;
 font-size: 15px;
}

.product-features {
 margin-bottom: 25px;
}

.product-features h6 {
 font-weight: 700;
 color: var(--primary-green);
 margin-bottom: 15px;
}

.product-features ul {
 list-style: none;
 padding: 0;
}

.product-features li {
 padding: 8px 0;
 color: var(--text-dark);
 display: flex;
 align-items: center;
 gap: 10px;
}

.product-features li i {
 color: var(--secondary-green);
 font-size: 12px;
}

/* Quantity Selector */
.quantity-selector {
 margin-bottom: 25px;
}

.quantity-selector label {
 display: block;
 font-weight: 600;
 margin-bottom: 10px;
 color: var(--text-dark);
}

.qty-input {
 display: flex;
 align-items: center;
 gap: 0;
 width: fit-content;
 border: 2px solid var(--border-color);
 border-radius: 8px;
 overflow: hidden;
}

.qty-btn {
 background: var(--accent-cream);
 border: none;
 width: 45px;
 height: 45px;
 cursor: pointer;
 transition: all 0.3s ease;
 color: var(--primary-green);
 font-size: 16px;
}

.qty-btn:hover {
 background: var(--secondary-green);
 color: #fff;
}

.qty-input input {
 width: 70px;
 height: 45px;
 border: none;
 text-align: center;
 font-size: 16px;
 font-weight: 600;
 color: var(--text-dark);
}

.qty-input input:focus {
 outline: none;
}

/* Modal Actions */
.modal-actions {
 display: flex;
 flex-direction: row;
 gap: 12px;
}

.btn-add-cart_delme-modal,
.btn-wishlist_delme-modal,
.btn-view-full {
 padding: 15px 30px;
 border-radius: 8px;
 font-weight: 600;
 font-size: 16px;
 color: #333;
 cursor: pointer;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 border: none;
 text-decoration: none;
}

.btn-add-cart_delme-modal {
 background: linear-gradient(135deg, var(--fresh-green), var(--secondary-green));
 /*color: #333;*/
}

.btn-add-cart_delme-modal:hover {
 background: linear-gradient(135deg, var(--secondary-green), var(--vegetable-orange));
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(74, 124, 47, 0.3);
}

.btn-wishlist_delme-modal {
 background: #fff;
 color: var(--vegetable-red);
 border: 2px solid var(--vegetable-red);
}

.btn-wishlist_delme-modal:hover {
 background: var(--vegetable-red);
 /*color: #333;*/
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(201, 69, 69, 0.3);
}

.btn-view-full {
 background: var(--basket-brown);
 /*color: #333;*/
}

.btn-view-full:hover {
 background: var(--vegetable-orange);
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(139, 90, 60, 0.3);
}

/* Image Zoom Modal */
#imageZoomModal .modal-body {
 padding: 40px;
}

#imageZoomModal img {
 max-width: 100%;
 max-height: 90vh;
 object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
 .product-details-modal {
  padding: 30px 20px;
 }

 .product-name-modal {
  font-size: 24px;
 }

 .current-price-modal {
  font-size: 28px;
 }
}

@media (max-width: 768px) {
 .product-gallery {
  padding: 20px;
 }

 .product-actions-bottom {
  flex-wrap: wrap;
 }

 .btn-quick-view,
 .btn-add-cart_delme {
  flex: 1 1 calc(50% - 4px);
  font-size: 12px;
  padding: 8px 10px;
 }

 .btn-wishlist_delme {
  flex: 1 1 100%;
 }
}


.slide-bg {
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 position: relative;
}

.slide-content {
 position: relative;
 z-index: 2;
 height: 100%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 max-width: 600px;
 --bs-bg-opacity: 1;
 background-color: rgb(33 37 41 / 69%) !important;
}

/* Modal Header Fix */
#quickViewModal .modal-header {
 padding: 20px;
 border-bottom: 1px solid var(--border-color);
 background: var(--accent-cream);
}

#quickViewModal .modal-title {
 font-weight: 700;
 color: var(--primary-green);
 font-size: 20px;
}

#quickViewModal .btn-close {
 opacity: 1;
 background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233d5a2c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

#quickViewModal .btn-close:hover {
 opacity: 0.7;
}
.btn i { font-size: 1rem; }
.ct-actions .btn { padding: .375rem .6rem; }
