@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2c3e50;
    --secondary: #8e44ad;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #1a252f;
    --gold: #d4a574;
    --cream: #faf8f5;
    --text: #34495e;
    --border: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--accent); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

header {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.header-contact {
    display: none;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.header-contact a {
    color: rgba(255,255,255,0.8);
}

.header-contact a:hover {
    color: var(--gold);
}

.header-contact i {
    margin-right: 5px;
    color: var(--gold);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 5px;
}

.main-nav a {
    display: block;
    padding: 12px 15px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    padding-left: 20px;
}

.main-nav a i {
    width: 20px;
    margin-right: 10px;
    text-align: center;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 15px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    background: var(--gold);
    color: var(--dark);
}

.hero .btn:hover {
    background: #fff;
}

.hero .btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.hero .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text);
    max-width: 550px;
    margin: 0 auto;
    font-size: 14px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto;
}

.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px;
    background: var(--cream);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 22px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
}

.about-section {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 12px;
    font-size: 14px;
}

.about-list {
    list-style: none;
    margin: 15px 0;
}

.about-list li {
    padding: 6px 0;
    font-size: 13px;
}

.about-list i {
    color: var(--gold);
    margin-right: 8px;
}

.products {
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.product-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text);
}

.process {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
}

.process .section-header h2,
.process .section-header p {
    color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--text);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.cta {
    background: var(--gold);
    text-align: center;
    padding: 40px 0;
}

.cta h2 {
    color: var(--dark);
    margin-bottom: 12px;
}

.cta p {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta .btn {
    background: var(--primary);
}

.cta .btn:hover {
    background: var(--dark);
}

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 30px 0 15px;
    font-size: 12px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.footer-brand p {
    font-size: 12px;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}

.footer-contact i {
    color: var(--gold);
    width: 14px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.policy-links a {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

.policy-links a:hover {
    color: var(--gold);
}

.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.page-banner h1 {
    color: #fff;
    margin-bottom: 8px;
}

.page-banner p {
    opacity: 0.9;
    margin: 0;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    opacity: 0.6;
}

.contact-section {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 8px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 13px;
    margin: 0;
    color: var(--text);
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 25px;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
}

.map-section {
    background: var(--cream);
    padding: 40px 0;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

.content-section {
    background: #fff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin: 25px 0 12px;
}

.content-wrapper h3 {
    margin: 20px 0 10px;
}

.content-wrapper p {
    text-align: justify;
}

.content-wrapper ul {
    margin: 12px 0;
    padding-left: 25px;
}

.content-wrapper li {
    margin-bottom: 6px;
    font-size: 13px;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    background: var(--cream);
}

.error-content h1 {
    font-size: 6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    background: var(--cream);
}

.thankyou-content {
    max-width: 500px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 36px;
}

.thankyou-content h1 {
    margin-bottom: 12px;
}

.thankyou-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.cookie-content p {
    font-size: 12px;
    margin: 0;
}

.cookie-content a {
    color: var(--gold);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 11px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-image {
    height: 150px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    font-size: 13px;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 30px;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.team-card span {
    font-size: 12px;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    margin: 0;
}

.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    flex-shrink: 0;
}

.value-card h4 {
    margin-bottom: 5px;
}

.value-card p {
    font-size: 13px;
    margin: 0;
}

@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 2.5rem; }
    
    .header-contact {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
    
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
    }
    
    .main-nav ul {
        display: flex;
        justify-content: center;
        gap: 5px;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        padding-left: 14px;
        background: rgba(255,255,255,0.15);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 368px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .feature-card,
    .contact-info-card,
    .contact-form-wrapper {
        padding: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
