/**
 * Custom Elementor Widgets Styles
 *
 * @package HelloElementorChild
 */

/* ==========================================================================
   Sample Widget
   ========================================================================== */

.lumare-sample-widget {
    text-align: left;
}

.lumare-sample-widget__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.lumare-sample-widget__description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.lumare-sample-widget__button {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lumare-sample-widget__button:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   Image Slider Widget
   ========================================================================== */

.lumare-slider {
    position: relative;
    width: 100%;
}

.lumare-slider__wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.lumare-slider__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.lumare-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.lumare-slider__slide:first-child {
    position: relative;
}

.lumare-slider__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.lumare-slider__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.lumare-slider__slide:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.lumare-slider__slide a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lumare-slider__nav {
    position: absolute;
    bottom: 0;
    right: -142px;
    display: flex;
    gap: 2px;
    z-index: 10;
}

.lumare-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #d5ddd6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lumare-slider__arrow:hover {
    background-color: #c5cec6;
}

.lumare-slider__arrow img {
    width: 20px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.lumare-slider__arrow:hover img {
    opacity: 0.8;
    filter: brightness(0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lumare-slider__nav {
        position: relative;
        right: 0;
        bottom: 0;
        justify-content: flex-end;
        margin-top: 10px;
    }
    
    .lumare-slider__arrow {
        width: 50px;
        height: 50px;
    }
    
    .lumare-slider__arrow img {
        width: 16px;
        height: auto;
    }
}

/* ==========================================================================
   Product Carousel Widget (Vertical)
   ========================================================================== */

.lumare-product-carousel {
    position: relative;
    width: 100%;
}

.lumare-product-carousel__wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.lumare-product-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    padding: 20px 40px;
}

/* Hide all slides by default, show only active ones */
.lumare-product-carousel__slide {
    display: none;
    width: 100%;
}

.lumare-product-carousel__slide.is-active {
    display: block;
}

/* Mobile: single column */
@media (max-width: 767px) {
    .lumare-product-carousel__track {
        display: block;
        padding: 10px 20px;
    }
}

.lumare-product-card {
    position: relative;
    background-color: #fff;
    text-align: center;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.lumare-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.lumare-product-card__image-wrapper {
    position: relative;
    background-color: #FEFAFA;
    padding: 60px 20px;
    overflow: hidden;
}

.lumare-product-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #86A090;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.lumare-product-card__icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.lumare-product-card__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 40px !important;
    background-color: #fff !important;
    border: 1px solid #D5D5D5 !important;
    border-radius: 5px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    outline: none;
    box-shadow: none !important;
    min-width: 50px !important;
    max-width: 50px !important;
}

.lumare-product-card__icon.loading {
    opacity: 0.4;
    pointer-events: none;
}

.lumare-product-card__icon.added_to_cart {
    display: none !important;
}

.lumare-product-card__icon--wishlist {
    width: 50px !important;
    height: 40px !important;
    border-radius: 5px !important;
}

.lumare-product-card__icon--wishlist.active {
    border-color: #86A090 !important;
    background-color: #fff !important;
    position: relative;
}

.lumare-product-card__icon--wishlist.active img {
    display: none;
}

.lumare-product-card__icon--wishlist.active::before {
    content: "♥";
    font-size: 20px;
    color: #86A090;
    line-height: 1;
}

.lumare-product-carousel .added_to_cart {
    display: none !important;
}

.lumare-cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #D4EDDA;
    color: #28A745;
    padding: 16px 24px;
    border-radius: 8px;
    border-left: 4px solid #28A745;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 16px;
    font-weight: 500;
    z-index: 99999;
    animation: lumare-slide-in 0.3s ease;
    max-width: 300px;
}

.lumare-cart-toast.hiding {
    animation: lumare-slide-out 0.3s ease;
}

/* Hide ShopEngine default wishlist notifications */
.parent-notification,
.shopengine-wishlist-message {
    display: none !important;
}

@keyframes lumare-slide-in {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes lumare-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.lumare-product-card__icon img {
    width: 20px;
    height: auto;
    display: block;
}

.lumare-product-card__icon:hover {
    border-color: #999;
    transform: scale(1.05);
}

.lumare-product-card__image-link {
    display: block;
    text-decoration: none;
}

.lumare-product-card__image {
    max-width: 60%;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.lumare-product-card:hover .lumare-product-card__image {
    transform: scale(1.08);
}

.lumare-product-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.lumare-product-card__content {
    padding: 25px 0;
}

.lumare-product-card__price {
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lumare-product-card__price del {
    color: #999;
    font-size: 18px;
    font-weight: 400;
    margin-right: 8px;
}

.lumare-product-card__price ins {
    text-decoration: none;
    color: #86A090;
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    font-weight: 900;
}

.lumare-product-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 15px;
}

.lumare-product-card__title a {
    color: #333;
    text-decoration: none !important;
}

.lumare-product-card__title a:hover {
    color: #333;
    text-decoration: none;
}

.lumare-product-card__category {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lumare-product-card__actions {
    margin-top: 15px;
}

/* Video Popup Widget Styles - Simple Icon Only */
.lumare-video-popup-simple {
    display: inline-block;
}

.lumare-video-popup__icon {
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 80px;
    height: 80px;
}

.lumare-video-popup__icon img,
.lumare-video-popup__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lumare-video-popup__error {
    padding: 20px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    text-align: center;
}

/* Lightbox Styles */
.lumare-video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lumare-video-lightbox.active {
    display: flex;
}

.lumare-video-lightbox__content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.lumare-video-lightbox__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.lumare-video-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.lumare-video-lightbox__close:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Video Background Widget
   ========================================================================== */
.lumare-video-bg {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lumare-video-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.lumare-video-bg__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.lumare-video-bg__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 20px;
}

.lumare-video-bg__error {
    padding: 20px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    text-align: center;
}

/* Testimonial Carousel Widget Styles */
.lumare-testimonial-carousel {
    position: relative;
    padding: 60px 40px;
    background-color: #f5f0ed;
    text-align: center;
}

.lumare-testimonial__header {
    margin-bottom: 60px;
}

.lumare-testimonial__top-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
}

.lumare-testimonial__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #000;
    margin: 0 0 30px;
}

.lumare-testimonial__divider {
    width: 60px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
}

.lumare-testimonial__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.lumare-testimonial__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lumare-testimonial__slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.lumare-testimonial__content {
    position: relative;
    padding: 0 80px;
}

.lumare-testimonial__quote {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.lumare-testimonial__quotation {
    position: absolute;
    width: 130px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.lumare-testimonial__author {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.lumare-testimonial__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none !important;
    background-color: transparent !important;
    cursor: pointer;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: opacity 0.3s ease;
    padding: 0;
    outline: none;
    box-shadow: none !important;
}

.lumare-testimonial__arrow:hover,
.lumare-testimonial__arrow:focus,
.lumare-testimonial__arrow:active {
    opacity: 0.7;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.lumare-testimonial__arrow--prev {
    left: 20px;
    background-image: url('../../assets/arrow-left.png') !important;
}

.lumare-testimonial__arrow--next {
    right: 20px;
    background-image: url('../../assets/arrow-right.png') !important;
}

/* Responsive */
@media (max-width: 768px) {
    .lumare-testimonial-carousel {
        padding: 40px 20px;
    }
    
    .lumare-testimonial__content {
        padding: 0 20px;
    }
    
    .lumare-testimonial__top-labels {
        gap: 40px;
        font-size: 10px;
    }
    
    .lumare-testimonial__heading {
        font-size: 24px;
    }
    
    .lumare-testimonial__quote {
        font-size: 16px;
    }
    
    .lumare-testimonial__arrow {
        width: 40px;
        height: 40px;
    }
    
    .lumare-testimonial__arrow--prev {
        left: 10px;
    }
    
    .lumare-testimonial__arrow--next {
        right: 10px;
    }
}

/* ==============================================
   BOXES PAGE STYLES
   ============================================= */

.lumare-boxes-page {
    background: #fff;
}

.lumare-boxes-banner {
    padding: 120px 20px 100px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lumare-boxes-banner__content {
    max-width: 800px;
    margin: 0 auto;
}

.lumare-boxes-banner__title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.2;
}

.lumare-boxes-banner__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.lumare-boxes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.lumare-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.lumare-boxes-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.lumare-boxes-empty p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .lumare-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lumare-boxes-banner__title {
        font-size: 36px;
    }
    
    .lumare-boxes-banner__subtitle {
        font-size: 16px;
    }
    
    .lumare-boxes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================= */

.lumare-single-product-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.lumare-single-product__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Product Gallery */
.lumare-single-product__gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.lumare-single-product__main-image {
    background: #f5f5f5;
    padding: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.lumare-single-product__main-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lumare-single-product__thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lumare-single-product__thumb {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.lumare-single-product__thumb:hover,
.lumare-single-product__thumb.active {
    border-color: #86A090;
}

.lumare-single-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.lumare-single-product__info {
    padding-top: 20px;
}

.lumare-single-product__category {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #86A090;
    margin-bottom: 15px;
}

.lumare-single-product__category a {
    color: #86A090;
    text-decoration: none;
}

.lumare-single-product__title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lumare-single-product__price {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.lumare-single-product__price del {
    color: #999;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

.lumare-single-product__price ins {
    text-decoration: none;
    color: #86A090;
}

.lumare-single-product__short-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.lumare-single-product__short-desc p {
    margin: 0 0 15px;
}

.lumare-single-product__short-desc p:last-child {
    margin-bottom: 0;
}

.lumare-single-product__description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.lumare-single-product__description p {
    margin: 0 0 15px;
}

.lumare-single-product__description p:last-child {
    margin-bottom: 0;
}

/* Action Buttons Container */
.lumare-single-product__actions {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

/* Add to Cart */
.lumare-single-product__add-to-cart {
    flex: 0 0 auto;
}

.lumare-single-product__add-to-cart form.cart {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.lumare-single-product__add-to-cart .quantity {
    display: flex;
    align-items: center;
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
}

.lumare-single-product__add-to-cart .quantity .qty {
    width: 70px;
    height: 48px;
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 1px solid #ddd;
    background: #fff;
    margin: 0 !important;
    padding: 0 10px !important;
}

.lumare-single-product__add-to-cart .single_add_to_cart_button {
    display: inline-block;
    background: #86A090 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 14px 35px !important;
    height: 48px !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

.lumare-single-product__add-to-cart .single_add_to_cart_button:hover {
    background: #000 !important;
}

/* Wishlist Button */
.lumare-single-product__wishlist {
    flex: 0 0 auto;
}

.lumare-single-product__wishlist-btn {
    display: inline-block;
    background: #D5B8B0 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 14px 35px !important;
    height: 48px !important;
    border: 1px solid #D5B8B0 !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

.lumare-single-product__wishlist-btn:hover {
    background: #fff !important;
    color: #D5B8B0 !important;
    border-color: #D5B8B0 !important;
}

.lumare-single-product__wishlist-btn.active {
    background: #86A090 !important;
    color: #fff !important;
}

/* Product Meta */
.lumare-single-product__meta {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
}

.lumare-single-product__meta > div {
    margin-bottom: 10px;
}

.lumare-single-product__meta .label {
    color: #333;
    font-weight: 500;
    margin-right: 8px;
}

.lumare-single-product__meta a {
    color: #86A090;
    text-decoration: none;
}

.lumare-single-product__meta a:hover {
    text-decoration: underline;
}

/* Product Tabs */
.lumare-single-product__tabs {
    margin-bottom: 80px;
}

.lumare-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.lumare-tabs__btn {
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.lumare-tabs__btn:hover {
    color: #333;
}

.lumare-tabs__btn.active {
    color: #000;
}

.lumare-tabs__btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #86A090;
}

.lumare-tabs__panel {
    display: none;
}

.lumare-tabs__panel.active {
    display: block;
}

.lumare-tabs__panel h2 {
    display: none;
}

.lumare-tabs__content {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.lumare-tabs__content p {
    margin: 0 0 20px;
}

.lumare-tabs__content table {
    width: 100%;
    border-collapse: collapse;
}

.lumare-tabs__content table th,
.lumare-tabs__content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.lumare-tabs__content table th {
    font-weight: 500;
    color: #333;
    width: 200px;
}

/* Related Products */
.lumare-single-product__related {
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.lumare-single-product__related > section > h2,
.lumare-single-product__related .related > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.lumare-single-product__related ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: center !important;
}

.lumare-single-product__related ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* Hide WooCommerce default empty elements in related */
.lumare-single-product__related ul.products::before,
.lumare-single-product__related ul.products::after {
    display: none !important;
    content: none !important;
}

/* Style related products same as shop product cards */
.lumare-single-product__related ul.products li.product {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: visible;
}

.lumare-single-product__related ul.products li.product:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lumare-single-product__related ul.products li.product a img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 30px 20px;
}

.lumare-single-product__related ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    text-align: center;
    padding: 10px 15px 5px;
    margin: 0;
}

.lumare-single-product__related ul.products li.product .price {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #333;
    text-align: center;
    display: block;
    padding: 15px 15px 5px;
}

.lumare-single-product__related ul.products li.product .price del {
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

.lumare-single-product__related ul.products li.product .price ins {
    text-decoration: none;
    color: #86A090;
}

.lumare-single-product__related ul.products li.product .button {
    display: none !important;
}

/* Product Badges - All Pages */
.woocommerce span.onsale,
span.onsale,
.lumare-shop-product-card span.onsale,
.lumare-single-product-wrapper span.onsale,
.lumare-product-card__badge,
.product span.onsale {
    background-color: #86A090 !important;
    color: #fff !important;
}

/* Hide Compare Button & Small Icon Buttons */
.shopengine-compare,
.shopengine_add_to_compare,
.shopengine-single-product-compare,
a.compare,
.compare-button,
[class*="compare"],
.woocommerce-product-gallery ~ .shopengine-single-product-item,
.summary .shopengine-single-product-item,
.cart .shopengine_add_to_list_action,
.cart .shopengine_add_to_compare {
    display: none !important;
}

/* Fix WooCommerce/ShopEngine Button Styles */
.lumare-single-product .single_add_to_cart_button,
.woocommerce .single_add_to_cart_button,
.woocommerce div.product form.cart .button {
    background: #86A090 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    padding: 15px 35px !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

.lumare-single-product .single_add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button:hover {
    background: #000 !important;
}

/* Hide default ShopEngine wishlist/action buttons in cart area */
.shopengine-wishlist,
.shopengine_add_to_list,
.shopengine-single-wishlist,
.woocommerce div.product form.cart .shopengine_add_to_list_action,
.woocommerce div.product form.cart .shopengine_add_to_compare,
form.cart .shopengine-single-product-item,
.single-product .shopengine-single-product-item {
    display: none !important;
}

/* Clean up Add to Wishlist button below cart */
.woocommerce div.product .shopengine-single-product-item.wishlist-btn-area {
    display: none !important;
}

/* WooCommerce Cart Notice Styling */
.woocommerce-message {
    background: #f5f5f5 !important;
    border-top: 3px solid #86A090 !important;
    padding: 15px 45px !important;
    margin-bottom: 30px !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

.woocommerce-message::before {
    color: #86A090 !important;
}

.woocommerce-message a.button {
    background: #86A090 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 0 !important;
    float: right;
}

.woocommerce-message a.button:hover {
    background: #000 !important;
}

/* Fix Tabs - Remove Background Colors */
.lumare-tabs__btn,
.woocommerce-tabs .tabs li a,
.wc-tabs li a {
    background: transparent !important;
    border: none !important;
    color: #999 !important;
}

.lumare-tabs__btn.active,
.woocommerce-tabs .tabs li.active a,
.wc-tabs li.active a {
    background: transparent !important;
    color: #000 !important;
}

.lumare-tabs__btn:hover,
.woocommerce-tabs .tabs li a:hover,
.wc-tabs li a:hover {
    background: transparent !important;
    color: #333 !important;
}

/* WooCommerce Tabs Override */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    background: transparent !important;
    color: #999 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 25px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #000 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 30px;
    border-bottom: 1px solid #eee;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: none;
}

/* Responsive Single Product */
@media (max-width: 1024px) {
    .lumare-single-product__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lumare-single-product__gallery {
        position: static;
    }
    
    .lumare-single-product__related ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .lumare-single-product-wrapper {
        padding: 30px 15px;
    }
    
    .lumare-single-product__title {
        font-size: 28px;
    }
    
    .lumare-single-product__price {
        font-size: 24px;
    }
    
    .lumare-tabs__nav {
        flex-wrap: wrap;
    }
    
    .lumare-tabs__btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .lumare-single-product__related ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Override Hello Elementor max-width */
@media (min-width: 1200px) {
    .page-header .entry-title,
    .site-footer .footer-inner,
    .site-footer:not(.dynamic-footer),
    .site-header .header-inner,
    .site-header:not(.dynamic-header),
    body:not([class*=elementor-page-]) .site-main {
        max-width: 1400px !important;
    }
}

/* Shop Page Styles */
.lumare-shop-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

/* Shop Banner */
.lumare-shop-banner {
    text-align: center;
    padding: 120px 20px 100px;
    margin: 0 0 40px 0;
    background: #f5f0ed;
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.lumare-shop-banner__title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 10px;
}

.lumare-shop-banner__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin: 0;
}

.lumare-shop-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Sidebar Filter Styles */
.lumare-shop-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.lumare-filter-widget {
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.lumare-filter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lumare-category-filter {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lumare-category-filter li {
    margin-bottom: 10px;
}

.lumare-category-filter li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.lumare-category-filter li a:hover,
.lumare-category-filter li.active a {
    color: #000;
    font-weight: 600;
}

.lumare-category-filter .count {
    font-size: 12px;
    color: #999;
}

/* Products Grid */
.lumare-shop-main {
    min-width: 0;
    width: 100%;
}

/* Fix WooCommerce default toolbar */
.lumare-shop-main .woocommerce-result-count,
.woocommerce-result-count {
    float: left !important;
    margin: 0 0 30px 0 !important;
}

.lumare-shop-main .woocommerce-ordering,
.woocommerce-ordering {
    float: right !important;
    margin: 0 0 30px 0 !important;
}

.woocommerce-ordering select {
    padding: 10px 15px 10px 15px;
    border: 1px solid #86A090;
    border-radius: 0;
    background-color: #fff;
    color: #86A090;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2386A090' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover {
    border-color: #6d8074;
    background-color: #f9f9f9;
}

.woocommerce-ordering select:focus {
    border-color: #86A090;
}

.lumare-products-grid,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 30px 0 0 0 !important;
    padding: 0 !important;
    width: 100% !important;
    list-style: none !important;
    clear: both !important;
}

/* Shop Product Card Styles - Matching Widget Design Exactly */
.lumare-shop-product-card {
    background: #fff;
    border: none;
    transition: all 0.4s ease;
    overflow: visible;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lumare-shop-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.lumare-shop-product-card__inner {
    position: relative;
}

.lumare-shop-product-card__image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    text-align: center;
    padding: 30px 20px;
}

.lumare-shop-product-card__image a {
    display: block;
}

.lumare-shop-product-card__image img {
    max-width: 60%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.lumare-shop-product-card:hover .lumare-shop-product-card__image img {
    transform: scale(1.08);
}

.lumare-shop-product-card__actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.lumare-shop-product-card__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 40px !important;
    background-color: #fff !important;
    border: 1px solid #D5D5D5 !important;
    border-radius: 5px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    outline: none;
    box-shadow: none !important;
    position: relative;
}

.lumare-shop-product-card__icon img {
    width: 20px;
    height: auto;
    display: block;
}

.lumare-shop-product-card__icon:hover {
    border-color: #999;
    transform: scale(1.05);
}

.lumare-shop-product-card__icon--wishlist.active {
    border-color: #86A090 !important;
    background-color: #fff !important;
}

.lumare-shop-product-card__icon--wishlist.active img {
    display: none;
}

.lumare-shop-product-card__icon--wishlist.active::before {
    content: "♥";
    font-size: 20px;
    color: #86A090;
    line-height: 1;
}

.lumare-shop-product-card__icon.loading {
    opacity: 0.4;
    pointer-events: none;
}

/* Hide WooCommerce "Added to cart" link */
.woocommerce a.added_to_cart,
.lumare-shop-product-card a.added_to_cart {
    display: none !important;
}

.lumare-shop-product-card__info {
    padding: 25px 0;
    text-align: center;
}

.lumare-shop-product-card__price {
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.lumare-shop-product-card__price del {
    color: #999;
    font-size: 18px;
    font-weight: 400;
    margin-right: 8px;
}

.lumare-shop-product-card__price ins {
    text-decoration: none;
    color: #86A090;
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    font-weight: 900;
}

.lumare-shop-product-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 15px;
    text-align: center;
}

.lumare-shop-product-card__title a {
    color: #333;
    text-decoration: none !important;
}

.lumare-shop-product-card__title a:hover {
    color: #333;
    text-decoration: none;
}

.lumare-shop-product-card__category {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .lumare-shop-content {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }
    
    .lumare-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lumare-shop-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Categories as scrollable chips on mobile */
    .lumare-shop-sidebar {
        position: static;
        order: -1;
    }
    
    .lumare-filter-widget {
        background: transparent;
        padding: 0;
        border: none;
    }
    
    .lumare-filter-title {
        display: none;
    }
    
    .lumare-category-filter {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .lumare-category-filter::-webkit-scrollbar {
        display: none;
    }
    
    .lumare-category-filter li {
        margin: 0;
        flex-shrink: 0;
    }
    
    .lumare-category-filter li a {
        display: inline-block;
        padding: 8px 16px;
        background: #f5f5f5;
        border-radius: 20px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .lumare-category-filter li.active a {
        background: #86A090;
        color: #fff;
    }
    
    .lumare-category-filter .count {
        display: none;
    }
    
    /* Shop grid: 2 items per row, smaller */
    .lumare-products-grid,
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .lumare-shop-product-card__image {
        padding: 15px 10px;
    }
    
    .lumare-shop-product-card__info {
        padding: 12px 8px;
    }
    
    .lumare-shop-product-card__title a {
        font-size: 13px;
    }
    
    .lumare-shop-product-card__price {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .lumare-shop-product-card__category {
        font-size: 11px;
    }
    
    .lumare-shop-product-card__icon {
        width: 36px !important;
        height: 30px !important;
    }
    
    .lumare-shop-product-card__icon img {
        width: 14px;
    }
    
    .lumare-shop-product-card__actions {
        gap: 6px;
        top: 8px;
        right: 8px;
    }
}

.lumare-product-card__actions .button {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    padding: 8px 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lumare-product-card__actions .button:hover {
    background: #333;
    color: #fff;
}

.lumare-product-carousel__nav {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.lumare-product-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    color: transparent !important;
    text-decoration: none !important;
}

.lumare-product-carousel__arrow img {
    width: 40px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.lumare-product-carousel__arrow:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}

/* Horizontal arrow mode */
.lumare-product-carousel--horizontal {
    position: relative;
}

.lumare-product-carousel--horizontal .lumare-product-carousel__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.lumare-product-carousel--horizontal .lumare-product-carousel__arrow {
    pointer-events: auto;
}

.lumare-product-carousel--horizontal .lumare-product-carousel__arrow--prev {
    margin-left: -60px;
}

.lumare-product-carousel--horizontal .lumare-product-carousel__arrow--next {
    margin-right: -60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lumare-product-carousel__nav {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .lumare-product-carousel--horizontal .lumare-product-carousel__nav {
        position: relative;
        transform: none;
        padding: 0;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
    
    .lumare-product-carousel--horizontal .lumare-product-carousel__arrow--prev,
    .lumare-product-carousel--horizontal .lumare-product-carousel__arrow--next {
        margin: 0;
    }
    
    .lumare-product-carousel__arrow img {
        width: 30px;
    }
}

/* ==========================================================================
   Blog / Tips Page Styles
   ========================================================================== */

/* Blog Archive Banner */
.lumare-blog-banner {
    background: #f5f0ed;
    padding: 120px 20px 100px;
    text-align: center;
}

.lumare-blog-banner__content {
    max-width: 800px;
    margin: 0 auto;
}

.lumare-blog-banner__title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 15px;
}

.lumare-blog-banner__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Blog Container */
.lumare-blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Blog Grid */
.lumare-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Blog Card */
.lumare-blog-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.lumare-blog-card.animate-in {
    animation: slideUpFadeIn 0.6s ease forwards;
}

@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lumare-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.lumare-blog-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.lumare-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lumare-blog-card:hover .lumare-blog-card__image img {
    transform: scale(1.05);
}

.lumare-blog-card__content {
    padding: 25px 20px;
}

.lumare-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.lumare-blog-card__date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lumare-blog-card__category {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #86A090;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.lumare-blog-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 15px;
}

.lumare-blog-card__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lumare-blog-card__title a:hover {
    color: #86A090;
}

.lumare-blog-card__excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lumare-blog-card__link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #86A090;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 3px;
}

.lumare-blog-card__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #86A090;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.lumare-blog-card__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Blog Pagination */
.lumare-blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.lumare-blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lumare-blog-pagination a,
.lumare-blog-pagination span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lumare-blog-pagination a:hover {
    background: #f5f5f5;
}

.lumare-blog-pagination .current {
    background: #86A090;
    color: #fff;
}

/* Blog Empty State */
.lumare-blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #666;
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

/* Post Header */
.lumare-single-post__header {
    background: #f5f0ed;
    padding: 80px 20px;
    text-align: center;
}

.lumare-single-post__header-content {
    max-width: 800px;
    margin: 0 auto;
}

.lumare-single-post__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.lumare-single-post__category {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #86A090;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lumare-single-post__category:hover {
    color: #1a1a1a;
}

.lumare-single-post__date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lumare-single-post__title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 20px;
}

.lumare-single-post__excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.lumare-single-post__excerpt p {
    margin: 0;
}

/* Featured Image */
.lumare-single-post__featured-image {
    max-width: 1000px;
    margin: -40px auto 0;
    padding: 0 20px;
}

.lumare-single-post__featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.lumare-single-post__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.lumare-single-post__content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.lumare-single-post__content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: #1a1a1a;
}

.lumare-single-post__content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.lumare-single-post__content p {
    margin-bottom: 25px;
}

.lumare-single-post__content ul,
.lumare-single-post__content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.lumare-single-post__content li {
    margin-bottom: 10px;
}

.lumare-single-post__content blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: #f5f0ed;
    border-left: 4px solid #86A090;
    font-style: italic;
    font-size: 18px;
}

.lumare-single-post__content blockquote p {
    margin: 0;
}

.lumare-single-post__content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.lumare-single-post__content a {
    color: #86A090;
    text-decoration: underline;
}

.lumare-single-post__content a:hover {
    color: #1a1a1a;
}

/* Post Footer */
.lumare-single-post__footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.lumare-single-post__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lumare-single-post__tags-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.lumare-single-post__tag {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    padding: 5px 12px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.lumare-single-post__tag:hover {
    background: #86A090;
    color: #fff;
}

.lumare-single-post__share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lumare-single-post__share-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.lumare-single-post__share-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lumare-single-post__share-link:hover {
    color: #86A090;
}

/* Post Navigation */
.lumare-single-post__navigation {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.lumare-single-post__nav-link {
    text-decoration: none;
    max-width: 45%;
}

.lumare-single-post__nav-link--prev {
    text-align: left;
}

.lumare-single-post__nav-link--next {
    text-align: right;
    margin-left: auto;
}

.lumare-single-post__nav-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.lumare-single-post__nav-title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.lumare-single-post__nav-link:hover .lumare-single-post__nav-title {
    color: #86A090;
}

/* Related Posts */
.lumare-single-post__related {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.lumare-single-post__related-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px;
}

.lumare-single-post__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lumare-blog-card--small .lumare-blog-card__title {
    font-size: 20px;
}

.lumare-blog-card--small .lumare-blog-card__content {
    padding: 20px;
}

/* ==========================================================================
   Blog Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .lumare-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .lumare-single-post__related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   WooCommerce My Account Page Styles
   ========================================================================== */

.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 25%;
    padding-right: 40px;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 75%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    color: #86A090;
    padding-left: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #86A090;
    font-weight: 600;
}

/* Account Content */
.woocommerce-account .woocommerce-MyAccount-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    margin-bottom: 20px;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #86A090;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* Account Forms */
.woocommerce-account .woocommerce-EditAccountForm label,
.woocommerce-account .woocommerce-address-fields label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.woocommerce-account .woocommerce-EditAccountForm input[type="text"],
.woocommerce-account .woocommerce-EditAccountForm input[type="email"],
.woocommerce-account .woocommerce-EditAccountForm input[type="password"],
.woocommerce-account .woocommerce-address-fields input[type="text"],
.woocommerce-account .woocommerce-address-fields input[type="tel"],
.woocommerce-account .woocommerce-address-fields select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.woocommerce-account .woocommerce-EditAccountForm input:focus,
.woocommerce-account .woocommerce-address-fields input:focus,
.woocommerce-account .woocommerce-address-fields select:focus {
    outline: none;
    border-color: #86A090;
}

.woocommerce-account button[type="submit"],
.woocommerce-account .woocommerce-Button {
    background: #86A090 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.woocommerce-account button[type="submit"]:hover,
.woocommerce-account .woocommerce-Button:hover {
    background: #000 !important;
}

/* Orders Table */
.woocommerce-account .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-account .woocommerce-orders-table th {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    padding: 15px;
    background: #f5f5f5;
    text-align: left;
}

.woocommerce-account .woocommerce-orders-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button {
    font-size: 12px;
    padding: 8px 15px;
}

/* Addresses */
.woocommerce-account .woocommerce-Addresses {
    display: flex;
    gap: 40px;
}

.woocommerce-account .woocommerce-Address {
    flex: 1;
}

.woocommerce-account .woocommerce-Address-title h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.woocommerce-account .woocommerce-Address-title .edit {
    font-size: 13px;
    color: #86A090;
}

/* Modern Wishlist Grid - Compact Version */
.lumare-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lumare-wishlist-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.lumare-wishlist-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.lumare-wishlist-item__remove {
    display: block;
    width: 100%;
    background: transparent;
    color: #c9a07a;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 15px;
    border: 1px solid #c9a07a;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.lumare-wishlist-item__remove:hover {
    background: #c9a07a;
    color: #fff;
}

.lumare-wishlist-item__image {
    position: relative;
    background: #f8f8f8;
    padding: 15px;
    text-align: center;
}

.lumare-wishlist-item__image img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.lumare-wishlist-item__stock {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 15px;
}

.lumare-wishlist-item__stock.in-stock {
    background: rgba(134, 160, 144, 0.15);
    color: #86A090;
}

.lumare-wishlist-item__stock.out-of-stock {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.lumare-wishlist-item__content {
    padding: 15px;
    text-align: center;
}

.lumare-wishlist-item__title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.3;
}

.lumare-wishlist-item__title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lumare-wishlist-item__title a:hover {
    color: #86A090;
}

.lumare-wishlist-item__price {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.lumare-wishlist-item__price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
    margin-right: 6px;
}

.lumare-wishlist-item__price ins {
    text-decoration: none;
    color: #86A090;
}

.lumare-wishlist-item__add-to-cart {
    display: block;
    width: 100%;
    background: #86A090;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lumare-wishlist-item__add-to-cart:hover {
    background: #7b5f6b;
    color: #fff !important;
}

.lumare-wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.lumare-wishlist-empty p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.lumare-wishlist-empty a {
    display: inline-block;
    background: #86A090;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.lumare-wishlist-empty a:hover {
    background: #1a1a1a;
}

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

@media (max-width: 600px) {
    .lumare-wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .lumare-wishlist-item__image img {
        height: 180px;
    }
}

/* Login/Register Forms - Tabbed Layout */
.woocommerce-account .u-columns.col2-set {
    max-width: 600px;
    margin: 0 auto;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
    float: none;
}
/* Tab Navigation - Modern Luxury Style */
.lumare-account-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    border-bottom: none;
    margin-bottom: 30px;
}

.lumare-account-tab {
    padding: 15px 40px !important;
    text-align: center !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 0 !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    box-shadow: none !important;
}

.lumare-account-tab:hover {
    background: #f9f9f9 !important;
    color: #333 !important;
}

.lumare-account-tab.active {
    background: #86A090 !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-color: #86A090 !important;
}

/* Hide inactive forms */
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    display: none;
}

.woocommerce-account .u-column1.active,
.woocommerce-account .u-column2.active {
    display: block;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2,
.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2,
.woocommerce-account h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px !important;
}

/* Form Labels - Reduce spacing */
.woocommerce-account .woocommerce-form-login label,
.woocommerce-account .woocommerce-form-register label,
.woocommerce-form-login label,
.woocommerce-form-register label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #373b3b;
    font-weight: 500;
    text-transform: uppercase;
}

/* Hide br tags that create unwanted spacing */
.woocommerce-account .woocommerce-form-login label + br,
.woocommerce-account .woocommerce-form-register label + br,
.woocommerce-form-login label + br,
.woocommerce-form-register label + br,
.woocommerce-account .woocommerce-form-login .woocommerce-form__label + br,
.woocommerce-account .woocommerce-form-register .woocommerce-form__label + br,
.woocommerce-form-login .woocommerce-form__label + br,
.woocommerce-form-register .woocommerce-form__label + br {
    display: none;
}

/* Form Inputs */
.woocommerce-account .woocommerce-form-login input[type="text"],
.woocommerce-account .woocommerce-form-login input[type="email"],
.woocommerce-account .woocommerce-form-login input[type="password"],
.woocommerce-account .woocommerce-form-register input[type="text"],
.woocommerce-account .woocommerce-form-register input[type="email"],
.woocommerce-account .woocommerce-form-register input[type="password"],
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="email"],
.woocommerce-form-register input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Form Row Spacing */
.woocommerce-account .woocommerce-form-row,
.woocommerce-account .form-row,
.woocommerce-form-login .woocommerce-form-row,
.woocommerce-form-login .form-row,
.woocommerce-form-register .woocommerce-form-row,
.woocommerce-form-register .form-row {
    margin-bottom: 15px;
}

.woocommerce-account .woocommerce-form-login input:focus,
.woocommerce-account .woocommerce-form-register input:focus,
.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
    outline: none;
    border-color: #86A090;
}

/* Password Field Container */
.woocommerce-account .password-input,
.woocommerce-form-login .password-input {
    position: relative;
    display: block;
}

/* Show Password Eye Icon */
.woocommerce-account .show-password-input,
.woocommerce-form-login .show-password-input {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Links */
.woocommerce-account .woocommerce-form-login a,
.woocommerce-account .woocommerce-form-register a,
.woocommerce-form-login a,
.woocommerce-form-register a,
.woocommerce-account a,
.woocommerce-MyAccount-content a {
    color: #7b5f6b;
    text-decoration: none;
}

.woocommerce-account .woocommerce-form-login a:hover,
.woocommerce-account .woocommerce-form-register a:hover,
.woocommerce-form-login a:hover,
.woocommerce-form-register a:hover,
.woocommerce-account a:hover,
.woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* Remember Me Checkbox */
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox,
.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"],
.woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

/* Forgot Password */
.woocommerce-account .woocommerce-form-login .lost_password,
.woocommerce-form-login .lost_password {
    margin: 0 0 20px 0;
    font-size: 13px;
    text-align: right;
}

.woocommerce-account .woocommerce-form-login .lost_password a,
.woocommerce-form-login .lost_password a {
    font-size: 13px;
}

/* Form Buttons */
.woocommerce-account .woocommerce-form-login button[type="submit"],
.woocommerce-account .woocommerce-form-register button[type="submit"],
.woocommerce-form-login button[type="submit"],
.woocommerce-form-register button[type="submit"] {
    background: #86A090 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    display: block;
    width: auto;
}

.woocommerce-account .woocommerce-form-login button[type="submit"]:hover,
.woocommerce-account .woocommerce-form-register button[type="submit"]:hover,
.woocommerce-form-login button[type="submit"]:hover,
.woocommerce-form-register button[type="submit"]:hover {
    background: #7b5f6b !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 30px;
    }
    
    .woocommerce-account .woocommerce-Addresses {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .lumare-blog-banner {
        padding: 60px 20px;
    }
    
    .lumare-blog-banner__title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .lumare-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .lumare-blog-card__title {
        font-size: 22px;
    }
    
    .lumare-single-post__header {
        padding: 60px 20px;
    }
    
    .lumare-single-post__title {
        font-size: 28px;
    }
    
    .lumare-single-post__content {
        padding: 40px 20px;
    }
    
    .lumare-single-post__content h2 {
        font-size: 26px;
    }
    
    .lumare-single-post__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lumare-single-post__navigation {
        flex-direction: column;
        gap: 30px;
    }
    
    .lumare-single-post__nav-link {
        max-width: 100%;
    }
    
    .lumare-single-post__nav-link--next {
        text-align: left;
    }
    
    .lumare-single-post__related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Page Banner Widget
   ======================================== */
.lumare-page-banner {
    background-color: #f5f0ed;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    margin: 0 0 40px 0;
    position: relative;
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.lumare-page-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    z-index: 1;
}

.lumare-page-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lumare-page-banner__title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 15px;
}

.lumare-page-banner__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lumare-page-banner {
        padding: 60px 20px;
    }
    
    .lumare-page-banner__title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .lumare-page-banner__subtitle {
        font-size: 16px;
    }
}

/* ========================================
   Header Icons Widget
   ======================================== */
.lumare-header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lumare-header-icons__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.lumare-header-icons__icon img,
.lumare-header-icons__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lumare-header-icons__icon svg {
    stroke: #333;
}

.lumare-header-icons__icon:hover img,
.lumare-header-icons__icon:hover svg {
    opacity: 0.7;
    transform: scale(1.1);
}

.lumare-header-icons__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: #86A090;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .lumare-header-icons {
        gap: 15px;
    }
    
    .lumare-header-icons__icon img {
        width: 20px;
    }
    
    .lumare-header-icons__badge {
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        line-height: 16px;
        top: -6px;
        right: -6px;
    }
}
