/* Additional Pages Styles - beursagenda, livestream, contact */

/* Events Section */
.events-section {
    padding: 80px 0;
}

.events-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-2);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.event-card {
    background: var(--surface-1);
    border: 2px solid var(--border-1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.event-card.upcoming {
    border-color: var(--primary-600);
    background: linear-gradient(to bottom, rgba(236, 72, 153, 0.08) 0%, var(--surface-1) 100%);
}

.event-card.past {
    opacity: 0.6;
}

.event-card:hover:not(.past) {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-600);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.event-badge.past-badge {
    background: var(--gray-400);
}

.event-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.event-date {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.date-day {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-info {
    flex: 1;
}

.event-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 8px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-2);
}

.event-location svg {
    flex-shrink: 0;
}

.event-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
    margin-bottom: 20px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-2);
    font-weight: 500;
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--primary-600);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
}

.cta-box-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Livestream Specific Styles */
.header-content-stream {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    border-radius: 100px;
    color: #ef4444;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.stream-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background: var(--page-bg);
}

.schedule-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 1400px) {
    .schedule-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    .live-badge {
        display: none;
    }
}

.schedule-day {
    background: linear-gradient(to bottom, rgba(236, 72, 153, 0.06) 0%, var(--surface-1) 55%, var(--surface-1) 100%);
    border: 2px solid var(--border-1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.day-streams {
    display: flex;
    flex-direction: column;
}

.schedule-day:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-300);
}

.schedule-day.highlight {
    border-color: var(--accent-yellow);
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.10) 0%, var(--surface-1) 100%);
}

.day-header {
    padding: 20px 24px;
    background: var(--surface-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-1);
}

.day-streams {
    display: flex;
    flex-direction: column;
}

.schedule-day.highlight .day-header {
    background: rgba(251, 191, 36, 0.1);
}

.day-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-1);
}

.popular-badge {
    padding: 4px 12px;
    background: var(--accent-yellow);
    color: var(--text-1);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
}

.schedule-item {
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    transition: background 0.2s ease;
}

.schedule-item:hover {
    background: var(--surface-2);
}

.schedule-item + .schedule-item {
    border-top: 1px solid var(--border-1);
}

.schedule-time {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary-600);
    margin-bottom: 0;
    padding-top: 2px;
}

.schedule-content {
    min-width: 0;
}

.schedule-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 6px;
}

.schedule-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin-bottom: 12px;
}

.schedule-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface-2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
}

/* Livestream schedule: make it feel tighter and more "product" */
.schedule-day:hover .day-header {
    border-bottom-color: rgba(236, 72, 153, 0.25);
}

.schedule-day:hover .schedule-platform {
    color: var(--text-1);
}

/* Stream Features */
.stream-features {
    margin-bottom: 60px;
}

.features-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-2);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--surface-1);
    border: 2px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
}

.info-text a {
    color: var(--primary-600);
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    background: var(--surface-2);
    border-radius: 24px;
    padding: 48px;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.form-description {
    font-size: 16px;
    color: var(--text-2);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--surface-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

/* Owner Section */
.owner-section {
    padding: 80px 0;
}

.owner-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.owner-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.owner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-bio {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 24px;
}

.owner-expertise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
}

.expertise-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.expertise-number {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 8px;
}

.expertise-label {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .owner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .owner-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .store-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .owner-expertise {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-box-title {
        font-size: 28px;
    }
}

/* Better layout for Beursagenda + Livestream on mobile (portrait + landscape) */
@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .event-card {
        padding: 24px;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .schedule-item {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-date {
        width: 64px;
        height: 64px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .events-section,
    .schedule-section {
        padding: 48px 0;
    }

    .events-intro,
    .schedule-intro {
        margin-bottom: 32px;
    }

    .events-grid,
    .schedule-grid {
        gap: 16px;
        margin-bottom: 40px;
    }

    .event-card {
        padding: 20px;
    }

    .day-header {
        padding: 16px 18px;
    }

    .schedule-item {
        padding: 18px;
    }
}

/* ==========================
   ABOUT PAGE FIXES (2026-01)
   - Force story stats in one row
   - Force store gallery to be a true 2x2 square (4 photos)
   ========================== */

/* Keep the 3 story stats next to each other so the gallery below has room */
.about-story .story-stats {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
    flex-wrap: nowrap;
    margin-top: 28px;
}

.about-story .story-stat {
    flex: 1 1 0;
    min-width: 0;
}

.about-story .story-stat .stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.05;
    color: var(--primary-600);
}

.about-story .story-stat .stat-label {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
}

/* Force the store gallery to be a clean 2x2 grid (no 3-column override later in the file) */
.store-gallery .gallery-grid.gallery-grid--square {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    max-width: 980px;
    margin: 40px auto 0;
}

.store-gallery .gallery-grid.gallery-grid--square .gallery-item {
    aspect-ratio: 1 / 1;
}

.store-gallery .gallery-grid.gallery-grid--square .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

@media (max-width: 900px) {
    .about-story .story-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    .store-gallery .gallery-grid.gallery-grid--square {
        grid-template-columns: 1fr !important;
    }
}

/* About/Over Ons Page Styles */
.page-hero {
    padding: 100px 0 15px;
    background: radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
}

.page-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-hero-description {
    font-size: 20px;
    color: var(--text-2);
    line-height: 1.6;
}

.about-story {
    padding: 20px 0 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 24px;
}

/* About page: image sizing (prevents oversized photos) */
.about-story .story-images {
    margin-top: 28px;
}

.about-story .story-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-story .story-img {
    width: 100%;
    height: 220px;
    object-fit: contain !important;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Gallery: make cards smaller + more compact */
.store-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.store-gallery .gallery-item {
    aspect-ratio: auto;
    height: 220px;
}

.store-gallery .gallery-item.gallery-large {
    height: 320px;
    grid-column: span 2;
}



/* Store gallery: force a clean 2x2 square grid (About page) */
.store-gallery .gallery-grid--square {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.store-gallery .gallery-grid--square .gallery-item {
    height: auto;
    aspect-ratio: 1 / 1;
}

.store-gallery .gallery-grid--square .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

@media (max-width: 700px) {
    .store-gallery .gallery-grid--square {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .store-gallery .gallery-item.gallery-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .about-story .story-image-grid {
        grid-template-columns: 1fr;
    }
    .story-img,
    .store-gallery .gallery-item {
        height: 210px;
    }
    .store-gallery .gallery-item.gallery-large {
        height: 240px;
    }
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateX(8px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-2);
    margin: 0;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-image-main {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--dark-border);
}

.about-image-small {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--dark-border);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.05);
}

.owner-section {
    padding: 100px 0;
    background: var(--surface-2);
}

.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.owner-images {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--dark-border);
}

.owner-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 24px;
}

.owner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--dark-border);
}

.owner-stat {
    text-align: center;
}

.owner-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 8px;
}

.owner-stat-label {
    font-size: 14px;
    color: var(--text-2);
    font-weight: 600;
}

.store-gallery {
    padding: 100px 0;
}

.store-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.store-gallery .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid var(--dark-border);
    transition: all 0.3s ease;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.services-section {
    padding: 100px 0;
    background: var(--surface-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: var(--dark-card);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 72, 153, 0.5);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
    margin-bottom: 24px;
}

.service-link {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: var(--accent-purple);
    padding-left: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .owner-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .store-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 36px;
    }
    
    .page-hero-description {
        font-size: 18px;
    }
    
    .about-story,
    .owner-section,
    .store-gallery,
    .services-section {
        padding: 60px 0;
    }
    
    .owner-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .store-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   GRADING PAGE STYLES
   ========================================== */

/* Steps Section */
.grading-steps-section {
    padding: 100px 0;
    background: var(--surface-2);
}

.grading-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.grading-step-card {
    background: var(--surface-1);
    border: 2px solid var(--border-1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.grading-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(236, 72, 153, 0.5);
}

.grading-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
}

.grading-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 12px;
}

.grading-step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
}

@media (max-width: 1100px) {
    .grading-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .grading-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Partners Section */
.grading-partners-section {
    padding: 100px 0;
}

.grading-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grading-partner-card {
    background: var(--surface-1);
    border: 2px solid var(--border-1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.grading-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.grading-partner-highlight {
    border-color: var(--primary-600);
    background: linear-gradient(to bottom, rgba(236, 72, 153, 0.08) 0%, var(--surface-1) 100%);
}

.grading-partner-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-600) 0%, #8b5cf6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    letter-spacing: 0.5px;
}

.grading-partner-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 10px;
}

.grading-partner-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 0;
}

@media (max-width: 1024px) {
    .grading-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grading-partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Slabs Gallery Grid */
.grading-slabs-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px;
}

.grading-slabs-grid .gallery-item {
    aspect-ratio: 3 / 4;
    height: auto;
}

.grading-slabs-grid .gallery-item img {
    object-fit: contain !important;
    background: var(--surface-2);
}

@media (max-width: 1024px) {
    .grading-slabs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .grading-slabs-grid {
        grid-template-columns: 1fr !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* FAQ Section */
.grading-faq-section {
    padding: 100px 0;
    background: var(--surface-2);
}

.grading-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.grading-faq-item {
    background: var(--surface-1);
    border: 2px solid var(--border-1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.grading-faq-item:hover {
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-3px);
}

.grading-faq-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 10px;
}

.grading-faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-2);
    margin: 0;
}

@media (max-width: 700px) {
    .grading-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .grading-steps-section,
    .grading-partners-section,
    .grading-faq-section {
        padding: 60px 0;
    }
}
