/**
 * Frontend SEO Styles for Garden Deals
 */

/* Deal Card Styles */
.deal-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.deal-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.deal-card--featured {
    border-color: #ffcc00;
    box-shadow: 0 3px 10px rgba(255, 204, 0, 0.2);
}

.deal-card__image {
    position: relative;
}

.deal-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
}

.deal-card__content {
    padding: 15px;
}

.deal-card__title {
    font-size: 18px;
    margin: 0 0 10px;
}

.deal-card__price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.deal-card__current-price {
    font-size: 22px;
    font-weight: bold;
    color: #2ecc71;
    margin-right: 10px;
}

.deal-card__regular-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
}

.deal-card__merchant {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.deal-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.deal-card__button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.deal-card__button:hover {
    background-color: #2980b9;
}

.deal-card__expiration {
    font-size: 12px;
    color: #999;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Single Deal Page Styles */
.garden-deal {
    margin-bottom: 30px;
}

.deal-header {
    margin-bottom: 20px;
}

.deal-title {
    font-size: 28px;
    margin: 0 0 15px;
}

.deal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.deal-quality {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
}

.deal-quality--good {
    background-color: #3498db;
    color: white;
}

.deal-quality--great {
    background-color: #2ecc71;
    color: white;
}

.deal-quality--exceptional {
    background-color: #f39c12;
    color: white;
}

.deal-merchant,
.deal-expiration {
    font-size: 14px;
    color: #666;
}

.deal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .deal-content {
        grid-template-columns: 1fr;
    }
}

.deal-image-gallery {
    margin-bottom: 20px;
}

.deal-main-image {
    position: relative;
    margin-bottom: 10px;
}

.deal-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.deal-thumbnails {
    display: flex;
    gap: 10px;
}

.deal-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.deal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-price-box {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.deal-current-price {
    font-size: 32px;
    font-weight: bold;
    color: #2ecc71;
    margin-bottom: 10px;
}

.deal-regular-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
}

.deal-savings {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.deal-button {
    display: block;
    width: 100%;
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.deal-button:hover {
    background-color: #2980b9;
}

.deal-description {
    line-height: 1.6;
}

.deal-description p {
    margin-bottom: 15px;
}
