/* Shop Page Specific Styles */

.shop-wrapper {
    background: var(--parchment);
    min-height: calc(100vh - 400px);
}

.shop-section {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
}

.shop-container {
    filter: blur(8px) grayscale(40%);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
    transition: all 0.5s ease;
}

.card-img-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.shop-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Overlay Styles */
.shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, rgba(253, 246, 236, 0.1) 0%, rgba(253, 246, 236, 0.8) 15%, rgba(253, 246, 236, 1) 30%);
}

.overlay-content {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 650px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-dark);
    margin: 0 auto;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Form Styles */
.interest-form {
    text-align: left;
    margin-top: 2rem;
}

.interest-form .form-group {
    margin-bottom: 1.25rem;
}

.interest-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.interest-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-mid);
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.interest-form input,
.interest-form select,
.interest-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: var(--parchment);
    color: var(--ink);
    transition: var(--transition);
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
    outline: none;
    border-color: var(--crimson);
    box-shadow: 0 0 0 3px rgba(218, 11, 11, 0.1);
    background: var(--white);
}

.interest-form textarea {
    resize: vertical;
    min-height: 100px;
}

.interest-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

@media (max-width: 768px) {
    .interest-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .overlay-content {
        padding: 2.5rem 1.5rem;
    }
}
