/* --- Cart Toast Notification Styles --- */
.gp-cart-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(45, 90, 39, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    z-index: 100000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    white-space: nowrap;
}

.gp-cart-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Review Section Content Styles (Injected via JS) */
.gp-reviews-section {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.gp-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gp-rating-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.gp-rating-value {
    font-size: 48px;
    font-weight: 800;
    color: #2D5A27;
}

.gp-stars-container {
    display: flex;
    gap: 2px;
}

.gp-rating-count {
    font-size: 14px;
    color: #888;
}

.gp-stars-small {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.gp-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gp-review-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.gp-review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.gp-review-meta {
    margin-bottom: 15px;
}

.gp-review-author {
    font-weight: 700;
    color: #2D5A27;
    display: block;
    margin-bottom: 2px;
}

.gp-review-date {
    font-size: 12px;
    color: #888;
}

.gp-review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.gp-write-review-btn {
    background: #2D5A27;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gp-write-review-btn:hover {
    background: #1e3d1a;
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

.gp-no-reviews {
    text-align: center;
    padding: 40px;
    color: #888;
    font-style: italic;
}

.gp-related-section {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.gp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}