/**
 * Minimal Shop Page Styles - Okoboji Theme
 * Essential WooCommerce pagination only
 */

/* Product Card Glass Effects */
.product-card { 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.product-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px 0 rgba(0, 1, 15, 0.4); 
}

.product-image-wrapper img { 
    transition: transform 0.2s ease; 
}

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

.product-glass-overlay {
    position: absolute;
    inset: 0;
    background:none;
    border-color: rgb(0, 0, 0);
    border-style: solid;
    border-width: 2px 2px 0 2px;
    backdrop-filter: blur(90px);
}

.product-details-glass {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
}

.star-rating {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.star-yellow {
    color: #fbbf24;
}

.star-gray {
    color: #6b7280;
}

.enquiry-button {
    margin-top: 1rem;
    width: 100%;
    background-color: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.enquiry-button:hover {
    background-color: #059669;
}

/* Tailwind-only Pagination Styling */
.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-pagination ul li {
    margin: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background-color: rgba(94, 137, 218, 0.685);
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    min-width: 2.5rem;
    min-height: 2.5rem;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span:hover {
    background-color: rgba(94, 137, 218, 0.685);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.woocommerce-pagination ul li a:focus,
.woocommerce-pagination ul li span:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    background-color: rgba(94, 137, 218, 0.685);
}

.woocommerce-pagination ul li span.current {
    background-color: rgba(94, 137, 218, 0.685);
    border-color: rgba(94, 137, 218, 0.685);
    font-weight: 600;
    border-radius: 0;
}


