/* Main Styles for Thirsty Now Shop */



/* Product Cards */

.product-card {

    transition: transform 0.3s, box-shadow 0.3s;

    height: 100%;

    position: relative;

    z-index: 1;

    border-radius: 16px;

    overflow: hidden;

    border: none;

    box-shadow: 0 8px 16px rgba(0,0,0,0.1);

}



.product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 16px 32px rgba(0,0,0,0.15);

}



.product-image {

    height: 220px;

    object-fit: contain;

    background-color: #f8f9fa;

    padding: 1.5rem;

    width: 100%;

    pointer-events: none;

    border-radius: 16px 16px 0 0;

    transition: transform 0.3s;

}



.product-card:hover .product-image {

    transform: scale(1.05);

}



.product-price {

    font-size: 1.25rem;

    font-weight: bold;

    color: #2c3e50;

}



/* Category Titles */

.category-title {

    margin-top: 2.5rem;

    margin-bottom: 1.5rem;

    padding-bottom: 0.5rem;

    border-bottom: 2px solid #e9ecef;

    font-weight: 600;

    color: #2c3e50;

    position: relative;

}



.category-title:after {

    content: '';

    position: absolute;

    bottom: -2px;

    left: 0;

    width: 60px;

    height: 3px;

    background-color: #3498db;

}



/* Product Links */

.product-link {

    color: inherit;

    text-decoration: none;

    display: block;

    position: relative;

    z-index: 2;

    cursor: pointer;

}



.product-link:hover {

    text-decoration: none;

    color: inherit;

}



/* Card Body */

.card-body {

    pointer-events: none;

    padding: 1.5rem;

}



/* Buttons */

.btn-primary {

    pointer-events: auto;

    border-radius: 12px;

    padding: 0.5rem 1.25rem;

    font-weight: 500;

    transition: all 0.2s;

    background-color: #3498db;

    border-color: #3498db;

    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);

}



.btn-primary:hover {

    background-color: #2980b9;

    border-color: #2980b9;

    transform: translateY(-2px);

    box-shadow: 0 6px 8px rgba(52, 152, 219, 0.3);

}



/* Product Button */

.product-card .product-button {

    transition: all 0.3s ease !important;

    background-color: transparent !important;

    color: black !important;

    border: 2px solid black !important;

    padding: 0.5rem 1.5rem !important;

    cursor: pointer !important;

}



.product-card .product-button:hover {

    background-color: black !important;

    color: white !important;

    transform: translateY(-2px) !important;

}



/* Override any parent link styles */

.product-card a {

    text-decoration: none;

    color: inherit;

}



.product-card a:hover {

    text-decoration: none;

    color: inherit;

}



/* Card Typography */

.card-title {

    font-weight: 600;

    margin-bottom: 0.75rem;

    color: #2c3e50;

}



.card-text {

    color: #7f8c8d;

    font-size: 0.95rem;

    margin-bottom: 1.25rem;

}



/* Container */

.container {

    max-width: 1200px;

    padding: 0 1.5rem;

}



/* Page Title */

.page-title {

    font-weight: 700;

    color: #2c3e50;

    margin-bottom: 2rem;

    position: relative;

    display: inline-block;

}



.page-title:after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 80px;

    height: 4px;

    background-color: #3498db;

}



/* Alert */

.alert-info {

    border-radius: 12px;

    background-color: #e8f4fd;

    border-color: #bee5eb;

    color: #0c5460;

    box-shadow: 0 4px 6px rgba(0,0,0,0.05);

}

