body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.header-content { 
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #FFFFFF;
}

.cart-icon {
    font-size: 5px; 
    cursor: pointer;
    background-color: #d4c09e;
    border-radius: 50%;
    padding: 11px;
    margin-right: 5px;
    display: inline-block;
    width: 45px;
    height: 45px;
    box-sizing: border-box;
}

.menu-icon {
    font-size: 20px;
    cursor: pointer;
    background-color: #f6f6f4;
    border-radius: 50%;
    padding: 11px;
    margin-right: 5px;
    display: inline-block;
    width: 45px;
    height: 45px;
    box-sizing: border-box;
}

.welcome-section {
    padding: 20px;
    background-color: #FFFFFF;
}

.welcome-section h1 {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.welcome-section h2 {
    font-weight: 600;
    font-size: 20px;
    margin: 5px 0 0 0;
}

.search-section {
    position: relative;
    display: flex;
    padding: 0 20px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
}

.search-section input {
    flex: 1;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 14px 0 0 14px;
    border-right: transparent;
    background-image: url('./luxa.org-opacity-changed-buscar.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left 15px center;
}

.search-section input::placeholder {
    color: #e6e6e6;
    font-weight: 500;
    font-size: 15px;
    padding-left: 30px;
}

.search-section .search-btn {
    background-color: transparent;
    padding: 10px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    border: 2px solid #e5e5e5;
    border-left: transparent;
}

.category-section {
    padding: 0 5px;
    background-color: #FFFFFF;
}

.category-section h3 {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 10px 0;
    margin-left: 15px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-item {
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: calc(50% - 10px);
    box-sizing: border-box;
    text-align: left;
}

.category-item img {
    width: 107%;
    height: auto;
    border-radius: 10px;
}

.category-item p, .category-item span {
    width: 100%;
    text-align: left;
}

.category-item p {
    font-weight: 600;
    margin: 10px 0 0 0;
    font-size: 12px;
}

.category-item span {
    font-weight: 400;
    color: #888888;
    font-size: 10px;
}

@media (min-width: 400px) {
    .category-item {
        width: calc(33.33% - 10px);
    }
}

@media (min-width: 768px) {
    .category-item {
        width: calc(25% - 10px);
    }
}

.year-header {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 70%;
    max-width: 700px;
    height: auto;
    max-height: 70%;
    border-radius: 10px;
}

.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    text-align: left;
    font-size: 20px;
    margin-left: 20px;
}

.month-header{
    margin-left: 15px;
}


.skeleton {
    background-color: #e0e0e0;
    border-radius: 4px;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

.skeleton-title {
    width: 70%;
    height: 20px;
    margin-bottom: 10px;
}

.skeleton-text {
    width: 100%;
    height: 15px;
    margin-bottom: 10px;
}


.watermarked {
    position: relative;
    display: inline-block;
}

.watermarked img {
    display: block;
}






