/* ── Shop Hero Header ── */
.shop-hero {
    background: var(--ink);
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 168, 0.15) 0%, transparent 60%);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
}

.shop-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin: 8px 0 20px;
}

.shop-hero p {
    font-family: 'Jost', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto;
}

/* ── Shop Layout Container ── */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 10, 16, 0.04);
    border: 1px solid rgba(180, 79, 212, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 10, 16, 0.08);
}

.product-img-link {
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #fcfcfc;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.product-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
}

.btn-shop-buy {
    display: block;
    background: var(--purple);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin: 15px auto 0;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 10px 22px;
    border-radius: 4px;
    transition: background 0.25s, transform 0.2s;
}

.btn-shop-buy:hover {
    background: var(--purple-light);
    transform: translateY(-1px);
}

/* Force the mobile menu to stay hidden on desktop screens */
@media (min-width: 992px) {
    .mob-menu {
        display: none !important;
    }
}
