/* ===================================
   PREMIUM SHOP STYLES
   Enterprise-level e-commerce styling
   ================================== */

/* Shop Hero Banner */
.shop-hero {
    background: #0D0D0D;
    padding: 5rem 2rem 4rem;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(180,120,60,0.15) 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(139,92,246,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.shop-hero-content { position: relative; z-index: 1; }
.shop-hero-content h1 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    color: #fff;
}
.shop-hero-content p {
    font-family: var(--font-body, 'Tenor Sans', sans-serif);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.55;
    text-transform: uppercase;
}
/* Occasion Filter Bar */
.occasion-filter-bar {
    background: #F9F7F4;
    border-bottom: 1px solid #E5E7EB;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.occasion-filter-bar .occ-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #9CA3AF;
    text-transform: uppercase;
    margin-right: 0.5rem;
}
.occasion-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid #D1D5DB;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: white;
    color: #374151;
    transition: all 0.2s;
    white-space: nowrap;
}
.occasion-pill:hover, .occasion-pill.active {
    background: #111;
    border-color: #111;
    color: white;
}
.occasion-pill .occ-emoji { font-size: 0.9rem; }

/* Search Panel (slides down from top) */
.search-panel {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: top 0.4s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.search-panel.active {
    top: 0;
}

.search-panel-content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.close-search {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-search:hover {
    color: #000;
}

.advanced-search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #8B5CF6;
}

.search-btn {
    padding: 1.2rem 3rem;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #7C3AED;
}

.search-suggestions {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.popular-searches h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #666;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-tag {
    padding: 0.6rem 1.2rem;
    background: #F3F4F6;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.search-tag:hover {
    background: #8B5CF6;
    color: white;
}

/* Category Navigation */
.category-nav-section {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-nav {
    display: flex;
    gap: 0.5rem;
    padding: 1.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    position: relative;
}

.category-btn:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
}

.category-btn.active {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: white;
}

.badge-new {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EF4444;
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Shop Container */
.shop-container {
    padding: 3rem 0;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Filters Sidebar */
.shop-filters {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E5E7EB;
}

.filters-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.clear-filters-btn {
    background: none;
    border: none;
    color: #8B5CF6;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.filter-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1.5rem;
}

.filter-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.filter-section.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.filter-section.collapsed .filter-content {
    display: none;
}

/* Price Range Filter */
.price-range-container {
    padding: 0.5rem 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-inputs input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-size: 0.9rem;
}

.price-slider input[type="range"] {
    width: 100%;
    margin: 1rem 0;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

/* Size Filter */
.size-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.size-filter-btn {
    padding: 0.6rem;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s;
}

.size-filter-btn:hover {
    border-color: #8B5CF6;
}

.size-filter-btn.active {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: white;
}

/* Color Filter */
.color-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.color-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.color-filter:hover {
    background: #F9FAFB;
}

.color-filter.active {
    background: #F3E8FF;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
}

.color-check {
    margin-left: auto;
    color: #8B5CF6;
    font-weight: bold;
    display: none;
}

.color-filter.active .color-check {
    display: block;
}

/* Material & Availability Filters */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    position: relative;
}

.filter-checkbox input:checked + .checkmark {
    background: #8B5CF6;
    border-color: #8B5CF6;
}

.filter-checkbox input:checked + .checkmark::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.results-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.results-description {
    color: #666;
    font-size: 0.95rem;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-toggle {
    display: flex;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    padding: 0.6rem 1rem;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #F9FAFB;
}

.view-btn.active {
    background: #8B5CF6;
    color: white;
}

.sort-select {
    padding: 0.6rem 1.2rem;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: var(--font-body);
    cursor: pointer;
    background: white;
}

/* Active Filters */
.active-filters {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.active-filters-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.active-filters-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.4rem 1rem;
    background: #F3E8FF;
    color: #8B5CF6;
    border-radius: 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag button {
    background: none;
    border: none;
    color: #8B5CF6;
    cursor: pointer;
    font-weight: bold;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: #D1D5DB;
}

/* Occasion badge on card */
.occasion-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    background: rgba(255,255,255,0.92);
    color: #374151;
    backdrop-filter: blur(4px);
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 10;
}

.badge-new {
    background: #8B5CF6;
    color: white;
}

.badge-sale {
    background: #EF4444;
    color: white;
}

.product-image {
    width: 100%;
    padding-bottom: 140%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s;
    overflow: hidden;
    flex-shrink: 0;
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.product-rating-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars-small {
    color: #F59E0B;
    font-size: 0.9rem;
}

.rating-number {
    font-size: 0.85rem;
    color: #666;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
}

.product-price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-meta-small {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.btn-wishlist {
    width: 44px;
    height: 44px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-wishlist:hover,
.btn-wishlist.active {
    border-color: #EF4444;
    color: #EF4444;
}

.btn-quick-view {
    flex: 1;
    padding: 0.75rem;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.3s;
}

.btn-quick-view:hover {
    background: #7C3AED;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.page-btn:hover:not(:disabled) {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-number:hover,
.page-number.active {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #666;
    margin-bottom: 2rem;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: white;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.modal-image-section {
    position: sticky;
    top: 0;
}

.product-image-large {
    width: 100%;
    padding-bottom: 140%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.modal-product-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
}

.reviews {
    color: #666;
    font-size: 0.9rem;
}

.product-price-section {
    margin-bottom: 1.5rem;
}

.product-price-section .product-price {
    font-size: 2rem;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.meta-item {
    color: #666;
}

.size-selector {
    margin-bottom: 2rem;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.size-header label {
    font-weight: 600;
}

.size-guide-link {
    background: none;
    border: none;
    color: #8B5CF6;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.size-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.size-btn {
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: #8B5CF6;
}

.size-btn.active {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: white;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.add-to-cart-btn-modal {
    flex: 1;
    padding: 1.2rem;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-btn-modal:hover {
    background: #7C3AED;
}

.wishlist-btn-modal {
    width: 56px;
    height: 56px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.wishlist-btn-modal:hover {
    border-color: #EF4444;
    color: #EF4444;
}

.shipping-info {
    border-top: 1px solid #E5E7EB;
    padding-top: 1.5rem;
}

.shipping-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.shipping-info .icon {
    font-size: 1.2rem;
}

/* Size Guide Modal */
.size-guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

.size-guide-modal.active {
    display: flex;
}

.modal-content-small {
    position: relative;
    background: white;
    max-width: 600px;
    padding: 3rem;
    border-radius: 12px;
    z-index: 1;
}

.modal-content-small h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.size-table th {
    font-weight: 600;
    background: #F9FAFB;
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-filters {
        position: static;
    }
    
    .modal-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .category-nav {
        overflow-x: scroll;
    }
}

/* FIX: Ensure buttons are clickable and not covered by image */
.product-card {
    position: relative;
}

.product-image {
    position: relative;
    pointer-events: auto;
    z-index: 1;
}

.product-info {
    position: relative;
    z-index: 2;
    background: white;
}

.product-actions {
    position: relative;
    z-index: 3;
}

.product-actions button {
    position: relative;
    z-index: 4;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.btn-wishlist,
.btn-quick-view {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 5 !important;
}

/* Ensure buttons are not blocked */
.product-card .product-actions * {
    pointer-events: auto !important;
}


/* CRITICAL FIX: Force buttons to be visible */
.product-actions {
    display: flex !important;
    gap: 0.75rem !important;
    margin-top: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-wishlist {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border: 2px solid #E5E7EB !important;
    background: white !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    transition: all 0.3s !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-quick-view {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    padding: 0.75rem !important;
    background: #8B5CF6 !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-wishlist:hover {
    border-color: #8B5CF6 !important;
    color: #8B5CF6 !important;
    background: #F3F4F6 !important;
}

.btn-quick-view:hover {
    background: #7C3AED !important;
}

/* Make sure nothing hides the buttons */
.product-card .product-actions,
.product-card .product-actions *,
.product-card .btn-wishlist,
.product-card .btn-quick-view {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

