.catalog-frames-block-6b28cd48 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    padding: 20px 0;
}

/* Hero Section */
.hero-container-6b28cd48 {
    background-color: var(--hero-bg, #f9f6f0);
    color: var(--hero-color, #2c2c2c);
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.hero-title-6b28cd48 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-subtitle-6b28cd48 {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Controls */
.filter-container-6b28cd48 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.filter-btn-6b28cd48 {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.filter-btn-6b28cd48:hover,
.filter-btn-6b28cd48.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Gallery Grid */
.gallery-grid-6b28cd48 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.frame-card-6b28cd48 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.frame-card-6b28cd48:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.frame-image-wrapper-6b28cd48 {
    position: relative;
    padding-top: 75%; /* 4:3 Ratio */
    background: #eaeaea;
    overflow: hidden;
}
.frame-image-wrapper-6b28cd48 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.frame-card-6b28cd48:hover .frame-image-wrapper-6b28cd48 img {
    transform: scale(1.05);
}
.frame-info-6b28cd48 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.frame-badge-6b28cd48 {
    align-self: flex-start;
    background: #eaeaea;
    color: #555;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.frame-title-text-6b28cd48 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #222;
}
.frame-desc-6b28cd48 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}
.quote-btn-6b28cd48 {
    width: 100%;
    background: #b8860b;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.quote-btn-6b28cd48:hover {
    background: #996515;
}

/* Modal Styling */
.modal-overlay-6b28cd48 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
body.admin-bar .modal-overlay-6b28cd48 {
    top: var(--wp-admin--admin-bar--height, 32px);
}
.modal-content-6b28cd48 {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.modal-close-6b28cd48 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #888;
}
.modal-close-6b28cd48:hover {
    color: #111;
}
.modal-title-6b28cd48 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: 700;
}
.modal-subtitle-6b28cd48 {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}
.form-group-6b28cd48 {
    margin-bottom: 15px;
}
.form-group-6b28cd48 label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}
.form-group-6b28cd48 input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.submit-btn-6b28cd48 {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}
.submit-btn-6b28cd48:hover {
    background: #333;
}
.success-message-6b28cd48 {
    text-align: center;
    padding: 20px 10px;
}
.success-message-6b28cd48 p {
    font-size: 1.05rem;
    color: #2e7d32;
    font-weight: 600;
    margin: 0;
}
