:root {
    --guest-primary: #4361ee;
    --guest-primary-dark: #3451d1;
    --guest-muted: #64748b;
    --guest-border: rgba(67, 97, 238, 0.1);
    --guest-card-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --guest-card-shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.14);
}

/* Shared section spacing */
.guest-section-wrapper {
    overflow-x: hidden;
}

/* Hero */
.guest-shop-hero {
    background:
        linear-gradient(135deg, rgba(67, 97, 238, 0.96), rgba(58, 12, 163, 0.92)),
        radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 42%);
    min-height: 330px;
    display: flex;
    align-items: center;
}

.guest-shop-hero h1 {
    letter-spacing: -0.02em;
}

.guest-shop-hero p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Search / filter box */
.guest-section-wrapper .form-control,
.guest-section-wrapper .form-select,
.guest-section-wrapper .input-group-text {
    min-height: 48px;
}

.guest-section-wrapper .input-group-text {
    border-color: #dee2e6;
}

/* Product cards */
.guest-shop-card,
.guest-product-card {
    border: 1px solid var(--guest-border) !important;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
    background: #ffffff;
}

.guest-shop-card:hover,
.guest-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--guest-card-shadow-hover) !important;
    border-color: rgba(67, 97, 238, 0.24) !important;
}

.guest-product-card .position-relative {
    overflow: hidden;
}

.guest-product-card .guest-product-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    background: #f8fafc;
    transition: transform 0.35s ease;
}

.guest-product-card:hover .guest-product-img {
    transform: scale(1.04);
}

.guest-product-title {
    min-height: 42px;
    line-height: 1.35;
    color: #172033;
}

.guest-small-text {
    font-size: 0.88rem;
    line-height: 1.5;
}

.guest-price {
    color: var(--guest-primary);
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.guest-product-card .badge {
    font-size: 0.68rem;
    padding: 0.45rem 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.guest-product-card .btn {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.guest-product-card .btn:hover {
    transform: translateY(-1px);
}

/* Empty state */
.guest-section-wrapper .display-4 {
    line-height: 1;
}

/* Pagination */
.guest-section-wrapper .pagination {
    gap: 0.25rem;
}

.guest-section-wrapper .page-link {
    border-radius: 999px !important;
    min-width: 38px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .guest-shop-hero {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .guest-shop-hero {
        min-height: 280px;
    }

    .guest-shop-hero h1 {
        font-size: 1.8rem !important;
    }

    .guest-product-card .guest-product-img {
        height: 145px;
    }

    .guest-product-title {
        min-height: auto;
        font-size: 0.86rem;
    }

    .guest-small-text {
        font-size: 0.78rem;
    }

    .guest-price {
        font-size: 0.88rem;
    }

    .guest-product-card .badge {
        font-size: 0.6rem;
        padding: 0.38rem 0.55rem;
    }
}