html {
    font-size: 16px;
}

:root {
    --lavender-dark: #5d4d7a;
    --lavender-main: #967bb6;
    --lavender-light: #e6e0f0;
    --leaf-green: #7a8d6e;
    --cream: #fdfaf6;
    --text-color: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button,
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet,
.lightbox,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-content,
.gallery-slide,
.seedling-main-card {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-pagination-bullet:focus,
.lightbox:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus,
.gallery-slide:focus,
.seedling-main-card:focus {
    outline: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--cream);
    font-size: 1rem;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--lavender-dark);
}

h3 {
    font-size: 1.75rem;
}

.container {
    max-width: 68.75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header & Nav */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 5%;
    max-width: 75rem;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    text-decoration: none;
}

.logo {
    height: 3.75rem;
    width: 3.75rem;
    object-fit: cover;
    border-radius: 50%;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--lavender-dark);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.875rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

nav a:hover {
    color: var(--lavender-main);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.625rem;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--lavender-dark);
    transition: 0.3s;
}

/* Burger Animation */
.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
#hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/images/photo8.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    border-radius: 1.25rem;
    backdrop-filter: blur(4px);
    max-width: 90%;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0,0,0,0.5);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1.875rem;
    text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0,0,0,0.4);
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.875rem;
    background-color: var(--lavender-main);
    color: white;
    text-decoration: none;
    border-radius: 1.875rem;
    transition: background 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    min-width: 12.5rem;
}

.btn:hover {
    background-color: var(--lavender-dark);
}

/* Sections */
section {
    padding: 2rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.125rem;
}

/* About */
.about-flex {
    display: flex;
    align-items: center;
    gap: 3.125rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 0.9375rem;
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--lavender-main);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.social-link:hover {
    background-color: var(--lavender-dark);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 0.9375rem;
    box-shadow: 0.9375rem 0.9375rem 0 var(--lavender-light);
}

/* Grid/Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
}

.card {
    background: white;
    padding: 1.25rem;
    border-radius: 0.9375rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.seedling-main-card {
    grid-column: span 2;
    overflow: hidden;
    padding: 0;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 28rem;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    margin-bottom: 0;
}

.seedling-main-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 77, 122, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}

.seedling-main-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(150, 123, 182, 0.4);
}

.card img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    border-radius: 0.625rem;
}

.card h3 {
    margin-bottom: 0.9375rem;
}

.card p {
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.card-footer {
    margin-top: auto;
    min-height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--lavender-main);
    display: block;
}

.stock-count {
    font-size: 0.9rem;
    color: var(--leaf-green);
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.out-of-stock {
    color: #d9534f;
    font-weight: 600;
    display: block;
}

.order-btn {
    cursor: pointer;
    border: none;
}

/* Messenger Modal */
.messenger-list {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    margin-top: 1.25rem;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem;
    border-radius: 0.625rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: opacity 0.3s;
}

.messenger-btn:hover {
    opacity: 0.9;
}

.viber { background-color: #7360f2; }
.whatsapp { background-color: #25d366; }
.telegram { background-color: #0088cc; }

/* Photosessions */
#photosessions {
    display: none;
    background-color: var(--lavender-light);
}

#photosessions .about-flex {
    flex-direction: row;
}

#photosessions .about-image img {
    box-shadow: 15px 15px 0 white;
}

#photosessions .about-text {
    text-align: left;
}

/* Delivery & Payment */
#delivery {
    background-color: white;
}

/* Places Preview on Main Page */
#places-preview {
    background-color: #f9f7f2;
    padding: 5rem 0;
}

#places-preview .about-image img {
    box-shadow: 15px 15px 0 var(--lavender-light);
}

/* Places Page Styles */
.place-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(150, 123, 182, 0.1);
}

.place-item .place-badge {
    display: inline-block;
    background: var(--lavender-main);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.place-item h3 {
    margin-bottom: 1rem;
}

/* Seedling Gallery Styles (Shared with seedlings.html) */
.seedling-section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.seedling-gallery {
    flex: 1;
    max-width: 500px;
}

.main-img-container {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.main-img-container:hover img {
    transform: scale(1.05);
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.thumb-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    border: 2px solid transparent;
}

.thumb-grid img:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.seedling-info {
    flex: 1;
}

/* Gallery Section */
#gallery {
    background-color: white;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.delivery-item {
    background: var(--cream);
    padding: 1.875rem;
    border-radius: 0.9375rem;
    border-left: 0.3125rem solid var(--lavender-main);
    transition: transform 0.3s;
}

.delivery-item:hover {
    transform: translateY(-0.3125rem);
}

.delivery-item h3 {
    margin-bottom: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.delivery-item ul {
    list-style: none;
    padding-left: 0;
}

.delivery-item ul li {
    margin-bottom: 0.625rem;
    position: relative;
    padding-left: 1.25rem;
}

.delivery-item ul li::before {
    content: "•";
    color: var(--lavender-main);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.delivery-title {
    text-align: center;
    margin-bottom: 1rem;
}

.delivery-description {
    text-align: center;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--lavender-dark);
    color: white;
    padding: 1.75rem 0 1.25rem;
    text-align: center;
}

footer h2 {
    color: white;
}

.contact-info {
    margin: 1.875rem 0;
}

.contact-info p {
    margin: 0.625rem 0;
}

.contact-info p a {
    color: #c9bbd7;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info p a:hover {
    color: var(--lavender-light);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(93, 77, 122, 0.7); /* var(--lavender-dark) with opacity */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus {
    background-color: rgba(93, 77, 122, 0.9);
    transform: translateY(-5px);
    outline: none;
}

.back-to-top:active {
    background-color: var(--lavender-dark);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--cream);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 0.9375rem;
    width: 90%;
    max-width: 31.25rem;
    position: relative;
    box-shadow: 0 0.3125rem 1.875rem rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-3.125rem);}
    to {opacity: 1; transform: translateY(0);}
}

.close {
    color: var(--lavender-dark);
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close:hover {
    color: var(--lavender-main);
}

.modal-content h2 {
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--lavender-dark);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 0.0625rem solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--lavender-main);
    box-shadow: 0 0 0 0.1875rem rgba(150, 123, 182, 0.2);
}

/* Gallery Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
}

.filter-btn {
    padding: 0.625rem 1.5625rem;
    border: 0.125rem solid var(--lavender-main);
    background: transparent;
    color: var(--lavender-dark);
    border-radius: 1.5625rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--lavender-main);
    color: white;
}

.gallery-container {
    padding: 1.25rem 0 2.5rem;
    position: relative;
}

.gallery-container .swiper-gallery {
    width: 100%;
    padding-bottom: 3.125rem;
}

.gallery-slide {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    height: 28.125rem;
    cursor: pointer;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

.gallery-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(93, 77, 122, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.875rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide:hover .gallery-slide-overlay {
    opacity: 1;
}

.gallery-slide-overlay span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.0625rem;
    padding-left: 0.125rem;
    transform: translateY(1.25rem);
    transition: transform 0.4s ease;
}

.gallery-slide:hover .gallery-slide-overlay span {
    transform: translateY(0);
}

.swiper-gallery .swiper-button-next,
.swiper-gallery .swiper-button-prev {
    color: white;
    background: rgba(93, 77, 122, 0.3);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    backdrop-filter: blur(0.3125rem);
    transition: all 0.3s ease;
}

.swiper-gallery .swiper-button-next:hover,
.swiper-gallery .swiper-button-prev:hover {
    background: rgba(93, 77, 122, 0.6);
    transform: scale(1.05);
}

.swiper-gallery .swiper-button-next:after,
.swiper-gallery .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: normal;
}

.swiper-gallery .swiper-pagination-bullet-active {
    background: var(--lavender-main);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(0.625rem);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.3125rem;
    box-shadow: 0 0 1.25rem rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.875rem;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--lavender-main);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0;
    user-select: none;
    transition: color 0.3s, background 0.3s, transform 0.3s;
    background: rgba(93, 77, 122, 0.3);
    backdrop-filter: blur(0.3125rem);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(93, 77, 122, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 1.25rem;
}

.lightbox-next {
    right: 1.25rem;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Seedlings Page Styles */
.seedlings-page {
    padding: 1.5rem 0.5rem;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--lavender-main);
    font-weight: 600;
    transition: color 0.3s;
    margin: 0 1rem;
}
.back-link:hover {
    color: var(--lavender-dark);
}
.seedling-section {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.05);
    display: flex;
    gap: 3rem;
}
.seedling-gallery {
    flex: 1;
}
.seedling-info {
    flex: 1.2;
}
.main-img-container {
    width: 100%;
    height: 30rem;
    border-radius: 0.9375rem;
    overflow: hidden;
    margin-bottom: 1rem;
}
.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.thumb-grid img {
    width: 100%;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.thumb-grid img:hover {
    transform: scale(1.05);
}
.seedling-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.description-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.description-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.description-list li::before {
    content: "✓";
    color: var(--lavender-main);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--lavender-main);
    margin: 1.5rem 0;
    display: block;
}

/* Inline styles from HTML */
.seedlings-title {
    text-align: center;
    font-size: 2.5rem;
}

.seedlings-intro {
    text-align: center;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    color: var(--lavender-dark);
    line-height: 1.8;
    position: relative;
    padding:  1.5rem;
}

.seedlings-intro::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--lavender-main);
    border-radius: 2px;
    opacity: 0.6;
}

.messenger-product-title {
    margin-bottom: 20px;
    color: var(--lavender-main);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .seedling-main-card {
        grid-column: span 1;
    }

    .seedling-section {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 1.5rem 0;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Nav */
    nav {
        padding: 0.5rem 1rem;
        flex-direction: row; /* Keep logo and burger on same line */
        justify-content: space-between;
        width: 100%;
    }

    .logo {
        height: 3rem;
        width: 3rem;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .burger-menu {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        box-shadow: -0.3125rem 0 0.9375rem rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav ul.active {
        right: 0;
    }

    /* Hero */
    #hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 1.5rem;
        width: 90%;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* About & Photosessions */
    .about-flex, #photosessions .about-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image img {
        box-shadow: 0.625rem 0.625rem 0 var(--lavender-light);
        height: 30rem;
        object-fit: cover;
    }

    #photosessions .about-image img {
        box-shadow: 0.625rem 0.625rem 0 white;
    }

    #places-preview .about-text {
        text-align: center;
    }

    #places-preview .btn {
        display: flex;
        margin: 0 auto;
        width: max-content;
    }

    /* Grid & Cards */
    .card-image-wrapper, .card img {
        height: 20rem;
    }

    .card-content {
        padding: 1rem;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    .card {
        box-shadow: 0 0.9375rem 2.5rem rgba(150, 123, 182, 0.4);
    }

    /* Delivery */
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .delivery-item {
        padding: 1.25rem;
    }

    /* Gallery */
    .gallery-slide {
        height: 20rem;
    }

    .gallery-container {
        padding: 1.25rem 0 0.5rem;
    }

    .swiper-gallery .swiper-button-next,
    .swiper-gallery .swiper-button-prev {
        display: none;
    }

    /* Seedlings Page */
    .seedlings-page {
        padding: 1rem 0;
    }

    .back-link {
        margin-bottom: 1rem;
    }

    .main-img-container {
        height: 20rem;
    }

    .thumb-grid img {
        height: 4rem;
    }

    .seedling-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .seedlings-title {
        font-size: 2rem;
        margin-bottom: 0rem;
    }

    .seedlings-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Seedling Gallery */
    .seedling-gallery {
        max-width: 100%;
    }

    /* Lightbox */
    .lightbox-prev, .lightbox-next {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    #hero {
        height: 50vh;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .card-image-wrapper, .card img, .main-img-container {
        height: 15rem;
    }

    .gallery-slide {
        height: 15rem;
    }

    .thumb-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .thumb-grid img {
        height: 3.5rem;
    }

    .modal-content {
        padding: 1.25rem;
    }
    .modal-content h2 {
        font-size: 1.2rem;
    }
    .close {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .hero-content {
        padding: 1rem 0.5rem;
        width: 95%;
        max-width: 260px;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }
}
