/**
 * Whisky Heritage Addon - Public Styles
 */

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.product-actions button,
.product-actions .rate-btn {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-actions button:hover,
.product-actions .rate-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.product-actions button.in-collection,
.product-actions button.in-wishlist {
    background: #C9A962;
    border-color: #C9A962;
    color: #fff;
}

/* Collection & Wishlist Pages */
.whisky-collection,
.whisky-wishlist {
    padding: 40px 0;
}

.whisky-collection h2,
.whisky-wishlist h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.1rem;
}

/* Flavour Profile */
.whisky-flavour-profile {
    padding: 40px 0;
    text-align: center;
}

.whisky-flavour-profile h2 {
    margin-bottom: 10px;
}

.whisky-flavour-profile canvas {
    max-width: 500px;
    margin: 30px auto;
}

/* Friends */
.whisky-friends {
    padding: 40px 0;
}

.friends-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.friend-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.friend-card h4 {
    margin: 0 0 15px 0;
}

/* Member Directory */
.whisky-member-directory {
    padding: 40px 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.member-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.member-card h4 {
    margin: 0 0 15px 0;
}

/* Price Comparison */
.whisky-price-comparison {
    margin: 30px 0;
}

.whisky-price-comparison h3 {
    margin-bottom: 20px;
}

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

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price-table a {
    color: #C9A962;
    text-decoration: none;
    font-weight: 600;
}

/* Retailers */
.whisky-retailers {
    padding: 40px 0;
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.retailer-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.retailer-card img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.retailer-card h4 {
    margin: 0 0 15px 0;
}

/* Timeline */
.whisky-timeline {
    padding: 40px 0;
}

.timeline-filters {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.timeline-filter {
    padding: 10px 20px;
    border: 2px solid #1a1a1a;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-filter.active,
.timeline-filter:hover {
    background: #1a1a1a;
    color: #fff;
}

.timeline-entries {
    position: relative;
    padding-left: 30px;
}

.timeline-entry {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.timeline-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C9A962;
    min-width: 80px;
}

.timeline-content h4 {
    margin: 0 0 10px 0;
}

/* Flavour Radar */
.whisky-flavour-radar {
    margin: 30px 0;
}

/* Buttons */
.follow-btn,
.unfollow-btn {
    padding: 8px 16px;
    border-radius: 5px;
    border: 2px solid #1a1a1a;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.unfollow-btn {
    background: #C9A962;
    border-color: #C9A962;
    color: #fff;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions button,
    .product-actions .rate-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-grid,
    .friends-list,
    .members-grid,
    .retailers-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
