/* ============================================ */
/* ===== ANNIVERSARY GIFTS SECTION ===== */
/* ============================================ */
.anniversary-section {
    padding: 80px 8%;
    background: #fff5f7;
}

.anniversary-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== SECTION TITLE ===== */
.anniversary-title {
    text-align: center;
    margin-bottom: 50px;
}

.anniversary-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1e272e;
}

.anniversary-title h2 span {
    color: #ff4757;
    position: relative;
}

.anniversary-title h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 71, 87, 0.15);
    border-radius: 4px;
}

.anniversary-title p {
    color: #747d8c;
    font-size: 17px;
    margin-top: 8px;
}

/* ===== 4 COLUMN GRID ===== */
.anniversary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== PRODUCT CARD ===== */
.anniversary-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0e6e8;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.anniversary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.10);
    border-color: #ff4757;
}

/* ===== BADGES ===== */
.anniversary-card .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    color: #ffffff;
}

.anniversary-card .badge.hot {
    background: #ff4757;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.anniversary-card .badge.new {
    background: #2ecc71;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.anniversary-card .badge.bestseller {
    background: #f39c12;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

/* ===== WISHLIST BUTTON ===== */
.anniversary-card .wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 5;
    color: #ccc;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anniversary-card .wishlist-btn:hover {
    background: #ff4757;
    color: #ffffff;
    transform: scale(1.1);
}

/* ===== PRODUCT IMAGE ===== */
.anniversary-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
}

.anniversary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.anniversary-card:hover .anniversary-img img {
    transform: scale(1.05);
}

/* ===== PRODUCT DETAILS ===== */
.anniversary-details {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.anniversary-details .category-tag {
    font-size: 12px;
    color: #747d8c;
    margin-bottom: 4px;
    display: block;
}

.anniversary-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e272e;
    margin-bottom: 6px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== RATING ===== */
.anniversary-details .rating {
    color: #ffb703;
    font-size: 13px;
    margin-bottom: 8px;
    min-height: 20px;
}

.anniversary-details .rating span {
    color: #747d8c;
    font-size: 12px;
    margin-left: 4px;
}

/* ===== PRICE ===== */
.anniversary-details .price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    min-height: 30px;
}

.anniversary-details .price-current {
    font-size: 18px;
    font-weight: 700;
    color: #ff4757;
}

.anniversary-details .price-original {
    font-size: 13px;
    color: #b0b0b0;
    text-decoration: line-through;
}

.anniversary-details .price-discount {
    font-size: 11px;
    font-weight: 600;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.12);
    padding: 2px 10px;
    border-radius: 20px;
}

/* ===== ADD TO CART ===== */
.anniversary-details .add-cart-btn {
    width: 100%;
    padding: 11px;
    background: #1e272e;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.anniversary-details .add-cart-btn:hover {
    background: #ff4757;
    transform: scale(1.02);
}

/* ============================================ */
/* ===== RESPONSIVE ===== */
/* ============================================ */
@media (max-width: 1024px) {
    .anniversary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .anniversary-section {
        padding: 50px 5%;
    }
    .anniversary-title h2 {
        font-size: 28px;
    }
    .anniversary-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .anniversary-section {
        padding: 40px 4%;
    }
    .anniversary-title h2 {
        font-size: 22px;
    }
    .anniversary-title p {
        font-size: 14px;
    }
    .anniversary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .anniversary-img {
        height: 150px;
    }
    .anniversary-details {
        padding: 12px 14px 16px;
    }
    .anniversary-details h3 {
        font-size: 13px;
        min-height: 36px;
    }
    .anniversary-details .price-current {
        font-size: 15px;
    }
    .anniversary-details .price-original {
        font-size: 12px;
    }
    .anniversary-details .price-discount {
        font-size: 10px;
        padding: 1px 8px;
    }
    .anniversary-details .add-cart-btn {
        font-size: 12px;
        padding: 10px;
    }
    .anniversary-card .badge {
        font-size: 9px;
        padding: 2px 10px;
        top: 10px;
        left: 10px;
    }
    .anniversary-card .wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
        top: 10px;
        right: 10px;
    }
    .anniversary-details .rating {
        font-size: 11px;
    }
    .anniversary-details .category-tag {
        font-size: 10px;
    }
}