* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffc0cb;
    --secondary-color: #ff69b4;
    --accent-color: #ff1493;
    --background-color: #faf8f5;
    --card-background: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #ffc0cb;
    --hover-color: #ff69b4;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.header,
.main,
.footer {
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    position: relative;
}

.header {
    background-image: url('../images/Pink Watercolor Simple Coming Soon Twitter Header.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    color: black;
}

.store-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    opacity: 0.95;
    color: black;
}

.main {
    flex: 1;
}

.filters {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.info-links {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 5;
}

.info-buttons {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffc0cb;
    background-color: var(--card-background);
    color: #ffc0cb;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #ffc0cb;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background-color: #ffc0cb;
    color: white;
}

.info-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffc0cb;
    background-color: var(--card-background);
    color: #ffc0cb;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-btn:hover,
.info-btn:focus {
    background-color: #ffc0cb;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.info-btn.active {
    background-color: #ffc0cb;
    color: white;
}

.info-btn--heart {
    position: relative;
    width: 160px;
    height: 160px;
    padding: 1rem;
    border: 2px solid #ff69b4;
    background: #ffd1d9;
    color: #7a2b3a;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-btn--heart::before,
.info-btn--heart::after {
    display: none;
}

.info-btn--heart:hover,
.info-btn--heart:focus {
    color: #5a1e2a;
    background: #ff69b4;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-container {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.search-input:hover {
    border-color: var(--secondary-color);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.sort-select {
    padding: 0.6rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    color: var(--text-color);
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: var(--secondary-color);
}

.sort-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fall {
    to {
        transform: translateY(100vh) translateX(100px);
        opacity: 0;
    }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.product-card:hover .product-image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #999;
    font-size: 0.9rem;
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-stock {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.product-stock.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.product-stock.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
}

.product-stock-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.product-badge-new {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    background-color: #ff9800;
    color: white;
}

.loading,
.no-products,
.error-message {
    text-align: center;
    padding: 3rem 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.error-message {
    color: #c62828;
    background-color: #ffebee;
    border-radius: 8px;
    padding: 2rem;
}

.footer {
    background-color: #ffc0cb;
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a {
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer a:hover,
.footer a:focus {
    text-decoration: underline;
}

.info-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.info-section h2 {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.info-section div {
    font-size: 1.05rem;
    color: #555555;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.about-image-container {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* Product Detail Section Styles */
.product-detail-section {
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--border-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f9f9f9;
    min-height: 400px;
}

.detail-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.detail-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-product-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.detail-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.detail-stock {
    font-size: 1rem;
    font-weight: 600;
}

.detail-description {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.product-reviews-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.product-reviews-section h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.reviews-stats {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        min-height: 300px;
    }

    .detail-product-name {
        font-size: 1.5rem;
    }

    .detail-price {
        font-size: 1.5rem;
    }

    .product-detail-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 1rem;
    }

    .btn-back {
        width: 100%;
        text-align: center;
    }

    .detail-product-name {
        font-size: 1.3rem;
    }

    .detail-description {
        font-size: 0.95rem;
    }

    .product-reviews-section h2 {
        font-size: 1.2rem;
    }
}

/* Cherry Blossom Animation Styles */
#blossom_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.petal {
    background: url(http://talktofill.surge.sh/cherry-blossom.png) no-repeat;
    position: fixed;
}

.petal.petal-style1 {
    width: 45px;
    height: 20px;
    background-position: -31px 0;
}

.petal.petal-style2 {
    width: 42px;
    height: 22px;
    background-position: 0 -23px;
}

.petal.petal-style3 {
    width: 37px;
    height: 24px;
    background-position: 0 -50px;
}

.petal.petal-style4 {
    width: 26px;
    height: 34px;
    background-position: -49px -35px;
}

/* Review Image Styles */
.review-form .form-group input[type="file"] {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    background-color: #fff9f9;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
}

.review-form .form-group input[type="file"]:hover {
    border-color: var(--secondary-color);
    background-color: #fff5f7;
}

.review-image-preview {
    position: relative;
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    max-width: 200px;
}

.review-image-preview .preview-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.review-image-preview .btn-remove-preview {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(198, 40, 40, 0.9);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.review-image-preview .btn-remove-preview:hover {
    background-color: #c62828;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Rating & Reviews Styles */
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.star {
    font-size: 2rem;
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #ffc107;
    transform: scale(1.2);
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.average-rating .stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1.5rem;
}

.average-rating .stars .star {
    color: #ffc107;
    font-size: 1.5rem;
    cursor: default;
}

.average-rating .stars .star.empty {
    color: #ddd;
}

.average-rating .stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.average-rating .rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.average-rating .rating-count {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-form {
    background-color: #faf8f5;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.review-form h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form .rating-label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.review-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.btn-submit-review {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.btn-submit-review:active {
    transform: translateY(0);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    font-size: 1.1rem;
}

.review-rating .star {
    color: #ffc107;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.review-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.reviews-section {
    margin-top: 2rem;
}

.lightbox-reviews {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
    .header {
        min-height: 140px;
        background-size: 100% auto;
        background-position: center top;
    }

    .store-title {
        font-size: 3rem;
    }
    
    .store-subtitle {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .sort-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .sort-select {
        padding: 0.55rem 0.85rem;
        font-size: 0.9rem;
    }

    .products-header {
        gap: 1rem;
    }

    .search-container {
        min-width: 200px;
    }

    .search-input {
        font-size: 0.9rem;
    }

    .sort-label {
        font-size: 0.9rem;
    }

    .info-links {
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        margin-top: 0.1rem;
        display: flex;
        justify-content: center;
    }

    .info-buttons {
        align-items: center;
    }

    .info-btn--heart {
        width: 200px;
        height: 90px;
        font-size: 0.92rem;
        padding: 0.7rem 0.85rem;
        line-height: 1.2;
        border-radius: 18px;
    }

    .filters {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .store-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-image-container {
        height: 220px;
    }

    .products-header {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .search-container {
        width: 100%;
        min-width: auto;
    }

    .search-input {
        width: 100%;
        font-size: 16px;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
    }

    .sort-container {
        width: 100%;
        justify-content: center;
    }

    .sort-label {
        font-size: 0.9rem;
    }

    .sort-select {
        width: 100%;
        padding: 0.65rem;
        font-size: 16px;
    }
}
/* Image Lightbox Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox[style*="display: none"] {
    display: none !important;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.lightbox-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 3;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close-btn:hover {
    background-color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.lightbox-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .lightbox-container {
        padding: 1.5rem;
    }
    
    .lightbox-close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lightbox-container {
        max-width: 100vw;
        max-height: 100vh;
        padding: 1rem;
        border-radius: 0;
    }
    
    .lightbox-close-btn {
        width: 36px;
        height: 36px;
        font-size: 1.35rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-title {
        font-size: 1.1rem;
    }
}