/* ============================================================
   Shop pages — matches site teal palette (#2b7a78 / #17252a)
   ============================================================ */

/* Hero */
.shop-hero {
    background: linear-gradient(135deg, #17252a 0%, #2b7a78 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.shop-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.shop-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.shop-subheading {
    max-width: 560px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
}

.shop-trust-badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.shop-trust-badge {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.shop-trust-badge i {
    color: #3aafa9;
    font-size: 0.95rem;
}

/* Product grid */
.shop-grid {
    padding-top: 2.5rem;
}

.shop-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    border-radius: 14px;
    overflow: hidden;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12) !important;
}

.shop-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.shop-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.shop-card-title {
    font-size: 0.95rem;
    color: #1a1a2e;
}

.shop-card .btn-outline-primary {
    border-color: #2b7a78;
    color: #2b7a78;
}

.shop-card .btn-outline-primary:hover {
    background-color: #2b7a78;
    color: #fff;
}

/* CTA banner */
.shop-cta-banner {
    background: linear-gradient(135deg, #def2f1 0%, #e8f7f7 100%);
    border-top: 2px solid #3aafa9;
}

/* ============================================================
   Detail page
   ============================================================ */
.shop-detail {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.shop-detail-breadcrumb {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.shop-detail-breadcrumb a {
    color: #2b7a78;
    text-decoration: none;
}

.shop-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.shop-detail-image-wrap {
    position: sticky;
    top: 80px;
}

.shop-detail-image-wrap img {
    border-radius: 14px;
    width: 100%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.shop-detail-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #17252a;
    letter-spacing: -0.4px;
}

.shop-detail-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2b7a78;
}

.shop-detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
    margin-bottom: 0.4rem;
}

/* Size / color selector buttons */
.size-btn,
.color-btn {
    min-width: 48px;
    font-size: 0.85rem;
    border-color: #ced4da;
    color: #333;
}

.size-btn.active,
.color-btn.active,
.size-btn.btn-primary,
.color-btn.btn-primary {
    background-color: #2b7a78;
    border-color: #2b7a78;
    color: #fff;
}

/* Add to cart button */
#addToCartBtn {
    background: linear-gradient(135deg, #2b7a78, #1f5f5d);
    border: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: opacity 0.15s;
}

#addToCartBtn:hover:not(:disabled) {
    opacity: 0.9;
}

#addToCartBtn:disabled {
    background: #ced4da;
    color: #6c757d;
    cursor: not-allowed;
}

/* Trust strip */
.shop-trust-strip {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: #555;
}

.shop-trust-strip i {
    color: #2b7a78;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 576px) {
    .shop-heading {
        font-size: 1.7rem;
    }
    .shop-detail-title {
        font-size: 1.4rem;
    }
}
