/* Blesshop Style Port */
:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #2563eb;
    --bg-light: #f8fafc;
    --price-color: #16a34a;
    --text-color: #334155;
}

body {
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* NAVBAR Styles override Bootstrap */
.navbar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 10px;
}

/* TRUST SECTION */
.trust-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    padding: 35px 0;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
}

.trust-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.2rem;
    color: #fbbf24;
    margin-bottom: 12px;
}

.trust-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-desc {
    font-size: 0.8rem;
    color: #e2e8f0;
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
}

/* ANIMATIONS */
@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
}

.card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 1px solid #f1f5f9;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.prices {
    margin-top: auto;
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--price-color);
}

.btn-buy {
    background-color: var(--accent);
    color: #fff;
    width: 100%;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
    border: none;
    padding: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.btn-buy:hover {
    background-color: #1d4ed8;
    color: #fff;
}

/* FOOTER */
footer {
    background: #343a40;
    color: white;
    padding: 40px 0;
    margin-top: 5rem;
}