:root {
    --bg-soft: #f6f9f6;
}

body {
    background-color: var(--bg-soft);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: -6px;
    font-size: .65rem;
}

.hero {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
}

.product-card {
    border-radius: 10px;
    transition: box-shadow .15s ease;
}

.product-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

/* Product card image: a perfect square, like Flipkart/Amazon listing tiles, so a tall
   bottle and a wide bunch of bananas still line up in a tidy grid. object-fit: contain
   (not cover) keeps each product's true shape intact on the light padding background,
   rather than cropping it to fill the square. */
.pc-image-wrap {
    position: relative;
}

.pc-image-square {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f7f5;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.pc-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    opacity: 0;
    transition: opacity .25s ease;
}

.pc-image.active {
    opacity: 1;
}

.pc-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 2;
}

.pc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

.pc-dot.active {
    background-color: var(--brand-green);
    transform: scale(1.25);
}

.no-image-placeholder {
    background: #f5f7f5;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-no-image {
    height: 320px;
    background: #eef1ee;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: .85rem;
}

.category-card {
    border-radius: 12px;
    text-align: center;
    transition: transform .15s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

.category-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #eef1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.site-footer {
    background: #eef3ee;
    border-top: 1px solid #dfe7df;
}

.status-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.status-step.active .status-circle {
    background: var(--brand-green);
}

.status-step .small {
    color: #999;
}

.status-step.active .small {
    color: var(--brand-green-dark);
    font-weight: 600;
}
