/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    min-width: 280px;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card:hover .btn-add-full { background: var(--primary-dark); }
.product-card .card-img {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}
.product-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card .card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pink);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 1;
}
.product-card .card-cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.92);
    color: var(--text);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    z-index: 1;
    backdrop-filter: blur(4px);
}
.product-card .card-body {
    padding: 14px 16px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card .card-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card .card-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 39px;
}
.product-card .card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.product-card .card-price small { font-size: 12px; font-weight: 400; color: var(--text-light); }
.product-card .card-footer {
    padding: 0 16px 14px;
    margin-top: auto;
}

/* ===== FEATURED CARD ===== */
.featured-card {
    width: 280px;
    flex-shrink: 0;
}
.featured-card .product-card {
    min-width: unset;
    width: 100%;
}

/* ===== OCCASION CARD ===== */
.occasion-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 40px 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.occasion-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}
.occasion-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    opacity: 0.6;
}
.occasion-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.occasion-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
}
.occasion-card h3 {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

/* ===== FEATURE CARD (Why Choose) ===== */
.feature-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.feature-card .icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}
.feature-card .icon svg {
    width: 28px; height: 28px;
    fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--pink));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; font-weight: 700;
    box-shadow: 0 2px 8px rgba(20,83,45,0.15);
}
.testimonial-meta .name { font-size: 15px; font-weight: 600; color: var(--text); }
.testimonial-meta .date { font-size: 12px; color: var(--text-lighter); }
.testimonial-stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}
