#categories_slider {
    margin-top: 30px;
}

/* Lazy Loading Styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.lazy-loaded {
    opacity: 1;
}

.lazy.lazy-loading {
    opacity: 0.5;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.lazy.lazy-error {
    opacity: 0.3;
    background-color: #f8f8f8;
    border: 1px dashed #ccc;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Ensure images maintain aspect ratio during loading */
.lazy[data-src] {
    min-height: 100px;
    background-color: #f5f5f5;
}

.carousel-img{
    max-height: 190px !important;
    width: auto !important;
}
.logo {
    text-align: center;
}

.logo img {
    height: 175px;
}

.logo_container {
}
.body-background{
    display: none;
}
header .logo_container img {
    width: auto;
    height: 260px;
}

footer .logo_container img {
    width: 250px;
    height: auto;
}


.cat_menu_icon {
    width: 50px;
    display: inline-block;
}

/* Ensure category menu items are properly centered */
.cat_menu li {
    display: flex;
    align-items: center;
    height: auto;
}

.cat_menu li a {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Mobile responsive adjustments for category icons */
@media (max-width: 768px) {
    .cat_menu_icon {
        width: 35px;
    }
    
    .cat_menu_icon img {
        width: 20px !important;
        height: auto;
    }
    
    /* Adjust category menu item spacing for tablet */
    .cat_menu li a {
        font-size: 15px;
        line-height: 42px;
        padding: 3px 8px;
        display: flex;
        align-items: center;
        height: 35px;
    }

}

@media (max-width: 576px) {
    .cat_menu_icon {
        width: 30px;
    }
    
    .cat_menu_icon img {
        width: 18px !important;
        height: auto;
    }
    
    /* Adjust category menu item spacing for mobile */
    .cat_menu li a {
        font-size: 14px;
        line-height: 40px;
        padding: 5px 10px;
        display: flex;
        align-items: center;
    }
    
    /* Ensure proper alignment of category text with smaller icons */
    .cat_menu li a span {
        display: flex;
        align-items: center;
    }
}

/* Cart Icon as Navigation Item */
.cart-nav-item {
    position: relative;
}

.cart-nav-item .cart-icon {
    position: relative;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 5px;
    background: transparent;
}

.cart-nav-item .cart-icon:hover {
    color: #667eea;
    text-decoration: none;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.cart-nav-item .cart-icon i {
    font-size: 23px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
}

/* Ensure badge is visible when cart has items */
.cart-nav-item .cart-icon:hover .cart-count {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Cart Page Summary Styling */
.cart-summary .cart-count {
    position: static;
    display: inline;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    box-shadow: 0 2px 6px rgba(244, 192, 39, 0.3);
    border: none;
    min-width: auto;
    height: auto;
    line-height: 1;
    white-space: nowrap;
    overflow: visible;
    z-index: auto;
    transform: none;
    transition: all 0.3s ease;
}

.cart-summary .cart-count:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.4);
}

/* Cart Item Checkboxes */
.item-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.item-select-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Select All Checkbox */
.select-all-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

#select-all-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.select-all-label {
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    margin: 0;
}

.candle-info-sm{
    display: none;
}
.candle-info-lg{
    display: block;
}
.candle-mobile-image {
    display: none;
}
@media only screen and (max-width: 1445px) {
    header .logo_container img {
        width: 270px;
        height: auto;
        margin-top: 10px;
    }

    .carousel-img {
        padding-top: 20px;
        width: 90% !important;
        height: auto !important;
    }
}

@media only screen and (max-width: 1199px) {
    header .logo_container img {
        width: 270px;
        height: auto;
        margin-top: 10px;
    }

    .header_main {
        height: 220px;
    }

    .main_nav {
        margin-top: 10px;
    }
    .carousel-img{
        width: 90% !important;
        height: auto !important
    }
    .logo_container {
        height: 175px;
    }
}
.custom-select {
    width:96% !important;
}

@media only screen and (max-width: 768px) {
   

    .logo_container {
        height: 119px;
    }
    .carousel-img{
        width: 83px;
        margin-right: 25px;
        padding-top: 0px;
        
    }
    .header_main {
        height: 150px;
    }
    .shop_sidebar{
        display: none;
    }
    .candle-info-image{
        width: 85px;
    }
    header .logo_container img {
        width: 151px;
        height: auto;
        margin-top: 10px;
    }

    .main_nav {
        margin-top: 10px;
    }
    .candle-title,.candle-description {
        padding-left:50px;
    }
    .sidebar_title {
        margin-left: 280px;
    }
    .sidebar_categories{
        margin-left:40px;
    }
    .custom-select {
        margin-left: 5px;
    }
    .banner_content{
        width: auto !important
    }
}

@media all and (max-width: 575px) {
    .carousel-item img{
        width: 215px !important;
        margin: 0 auto;
        padding-top: 8px;
    }
    .header_main {
        height: 80px;
    }

    .logo_container {
        height: 8px;
    }
    .candle-info-image{
        width: 85px;
    }
    header .logo_container img {
        width: 107px;
        height: auto;

    }

    .main_nav {
        margin-top: 0 !important;
    }
    #categories_slider {
        margin-top: -11px;
    }
    .banner_product_image{
        display: none;
    }
    .banner{
        padding-top: 0px !important;
        height: 180px !important;
    }
    .shop_sidebar{
        display: none;
    }
    .sidebar_title {
        margin-left:100px;
    }
    .candle-info-sm{
        display: block;
        text-align: left;
        padding-left: 10px;
        padding-right: 0px;
    }
    .candle-categories-block {
        text-align: center !important;

        padding: 0;
    }
    .candle-image-block {
        text-align: center !important;
        margin-bottom: 10px;
        padding-right: 0px;
        padding-left: 22px;

    }
    .candle-body {
        margin-left:10px;
        margin-right:4px;
    }

}

.rendered-list {
    list-style: circle;
    margin-left: 20px;
}

.candle-more-link {
    font-style: italic;
    color: mediumblue;
}

/*********************************
6. Shop Sidebar
*********************************/

.shop_sidebar {
    width: 100%;
    box-sizing: border-box;
    -webkit-transform: translateX(-37px);
    -moz-transform: translateX(-37px);
    -ms-transform: translateX(-37px);
    -o-transform: translateX(-37px);
    transform: translateX(-37px);
}

.sidebar_title {
    font-size: 18px;
    font-weight: 500;
}

.sidebar_categories {
    margin-top: 10px;
}

.sidebar_categories tr {
}

.sidebar_categories tr td {
    padding-bottom: 7px;

}

.sidebar_categories_name {
    padding-left: 15px;
}

.sidebar_categories td a {
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.sidebar_categories td a:hover {
    color: #84261B;
}

.candle-categories td {
    border-top: none;
    padding-right: 5px;
}

.candle-large-categories td img {
    max-width: 50px;
    width: 50px;
}

.candle-categories img {
    vertical-align: baseline;
}

.candle_image {
    text-align: center;
    box-sizing: border-box;

}

.candle_image img {
    width: 100%;
}

.candle-row {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;
}

.candle-categories-block table {
    display: inline;
}

.candle-categories-block {
    text-align: right;
    padding: 0;
}

.candle-image-block {
    text-align: right;
    margin-left: -5px;
}

.candle-body {
    text-align: left;
    box-sizing: border-box;
}

.candle-row:last-child {
    border-bottom: transparent;

}

@media all and (min-width: 768px) {
    body {
        padding-left: 88px;
    }
    .body-background{
        display: block;
        position: fixed;
        left: 0;
        top: 0;
    }
    .body-background img{
        height: 100vh;
        width: 88px;
    }

}

.candle-title {
    display: inline-block;
    width: 100%;
}
.candle-list-cart-btn{
    position: absolute;
    top: 0;
    right: 0;
}

/* Modal Button Styles - Using Bootstrap classes */
.candle-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 20px 0;
}

/* Modal Form Enhancements */
#candleCartModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: none;
    overflow: hidden;
}



#candleCartModal .modal-body {
    padding: 30px 25px;
    background: #f8f9fa;
}

#candleCartModal .form-group {
    margin-bottom: 25px;
}

#candleCartModal .form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#candleCartModal .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    margin: 0;
    min-height: 50px;
}

#candleCartModal .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-1px);
}

/* Toast Notification Styles */
.cart-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast.toast-success {
    border-left: 4px solid #28a745;
}

.cart-toast.toast-error {
    border-left: 4px solid #dc3545;
}

.cart-toast i {
    font-size: 18px;
}

.cart-toast.toast-success i {
    color: #28a745;
}

.cart-toast.toast-error i {
    color: #dc3545;
}

.cart-toast span {
    font-weight: 500;
    color: #333;
}
.recipe-list li {
    width: 48%;
    display: inline-block;
}

ul.recipe-list > li:before {
    content: '\ffed';
    margin-right: 0.5em;
}

@media only screen and (max-width: 575px) {
    .candle-title {
        text-align: left;
        margin-bottom: 0px;
        width: 70%;
    }
    .candle-mobile-image {
        display: inline-block;
        width: 25%;
        float: left;
        margin-right: 10px;
    }
    .candle-list-cart-btn{
        position: static;
        margin-top: 10px;
    }
    .candle-image-block {
        display: none;
    }
    .candle-description {
        text-align: justify;
        padding-right:10px;
        margin-top: 10px;
        line-height: 1.5;
        max-height: 6em; /* Allow for approximately 4 lines to accommodate 20 words */
        overflow: hidden;
        position: relative;
        text-decoration: none !important; /* Remove any strikethrough or other text decorations */
        font-style: normal !important; /* Ensure normal font style */
        font-weight: normal !important; /* Ensure normal font weight */
    }
    .candle-title,.candle-description {
        padding-left:0px;
    }
    .candle-categories{
        margin-top: 10px;
    }
    .sidebar_categories {
        margin-left: 35px;
    }

}

/* Global Cursor Pointer for Interactive Elements */
a, button, .btn, input[type="button"], input[type="submit"], 
.cart-icon, .cat_menu_container, .menu_trigger_container,
.carousel-control-prev, .carousel-control-next, .carousel-indicators li,
.dropdown-toggle, .nav-link, .page-link, .close, .modal-header .close,
[data-toggle="modal"], [data-dismiss="modal"], [data-toggle="dropdown"],
[data-toggle="collapse"], [data-toggle="tooltip"], [data-toggle="popover"],
.fa, .fas, .far, .fab, .fal, .fad, .icon, .logo a, .footer_list a,
.cat_menu li a, .main_nav_dropdown li a, .page_menu_item a,
.top_bar_contact_item a, .top_bar_user a, .wishlist_text a, .cart_text a,
.custom_list li a, .standard_dropdown li a, .page_menu_selection li a,
.menu_contact_item a, .logos_list a, .copyright_content a {
    cursor: pointer !important;
}

/* Mobile Cart Icon Styles - Now positioned alongside menu */
.mobile-cart-icon {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.mobile-cart-icon .cart-icon {
    color: #84261B;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-cart-icon .cart-icon:hover {
    background: #84261B;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.mobile-cart-icon .cart-icon i {
    font-size: 18px;
}

.mobile-cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Menu trigger container adjustments for mobile cart */
.menu_trigger_container .menu_trigger {
    gap: 10px;
}

/* Hide mobile cart on desktop */
@media (min-width: 768px) {
    .mobile-cart-icon {
        display: none !important;
    }
}

/* Additional mobile responsive adjustments */
@media (max-width: 576px) {
    .mobile-cart-icon {
        margin-right: 10px;
    }
    
    .mobile-cart-icon .cart-icon {
        width: 30px;
        height: 30px;
    }
    
    .mobile-cart-icon .cart-icon i {
        font-size: 16px;
    }
    
    .mobile-cart-icon .cart-count {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .menu_trigger_container .menu_trigger {
        gap: 8px;
    }
}

/* Cart Action Popup Modal Styles */
#cartActionModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#cartActionModal .modal-header {
    background: linear-gradient(135deg, #84261B, #a52d20);
    color: white;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

#cartActionModal .modal-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: white !important;
}

#cartActionModal .modal-title i {
    margin-right: 10px;
    font-size: 1.3rem;
    color: white;
}

#cartActionModal .modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

#cartActionModal .modal-body p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
}

#cartActionModal .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 5px;
    min-width: 160px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

#cartActionModal .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

#cartActionModal .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    transform: translateY(-2px);
}

#cartActionModal .btn-primary {
    background: linear-gradient(135deg, #84261B, #a52d20);
    border: none;
}

#cartActionModal .btn-primary:hover {
    background: linear-gradient(135deg, #a52d20, #84261B);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 38, 27, 0.3);
}

#cartActionModal .btn i {
    margin-right: 8px;
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    #cartActionModal .modal-body {
        padding: 1.5rem;
    }
    
    #cartActionModal .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    #cartActionModal .btn {
        width: 100%;
        min-width: auto;
    }
}

@media print {
    body {
        padding-left: 0;
        background-image: none;
    }

    .candle-image-block {
        width: 15% !important;
        text-align: right;
    }

    .candle-body {
        width: 85% !important;
    }
}

.paypal-form table {
    width: 100%;
}

.paypal-form tr {
    width: 100%;
}

.paypal-form tr td textarea {
    width: 100%;
    padding: 5px;
    margin: 5px;
    height: 60px;
}

.active-category {
    background-color: #FDFAD8;
    font-weight: 600;
}

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

/****** LINKED TEMPLATES START *********/
.linked-templates-block {
}

.linked-templates {
    padding: 5px;

}
.linked-templates h4{
    font-weight: 400;
    text-align: center;
    font-size: 1.7em;
}

.linked-templates h4, .linked-templates-mobile h4{
    font-weight: 400;
    text-align: center;
    font-size: 1.3em;
}
.lt-gallery {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

.lt-gallery-image {
    display: inline-block;
    box-sizing: border-box;
    margin: 10px 3px;
    border: 2px inset #1E90FF;
}


.lt-gallery-image img {
    height: 120px;
    max-width: 56px;
}

.linked-templates-mobile {
    display: none;
}

.linked-templates {
    display: block;
}

@media all and (max-width: 575px) {

    .linked-templates-mobile {
        display: block;
    }

    .linked-templates {
        display: none;
    }

    .lt-gallery-image img {
        height: 95px;
    }
}

/****** LINKED TEMPLATES END *********/


.airr-link-table ul {
    list-style-type: circle;
}

/* ///// paypal */
.paypal-form input[type=text]{
    width: 95%;
    margin-left: 11px;
    border: #D3D3D3 solid 1px;
    height: 36px;
    border-radius: 3px;
    padding: 13px;
}
.paypal-form input[type=image]{
    margin-top:8px;
}
.paypal-form input[type=image] {
    display: inline-block;
    padding: 10px 20px;
    width: 200px;
}
.pookline-seperator{
    text-align: center;
}

.pookline-seperator img {
    max-width: 90%;
}

/* Candle Description Styling */
.candle-description {
    line-height: 1.5;
    max-height: 6em; /* Allow for approximately 4 lines to accommodate 20 words */
    overflow: hidden;
    position: relative;
    text-decoration: none !important; /* Remove any strikethrough or other text decorations */
    font-style: normal !important; /* Ensure normal font style */
    font-weight: normal !important; /* Ensure normal font weight */
}

/* Candle Large Categories Styling */
.candle-large-categories {
    border-collapse: separate;
    border-spacing: 10px 10px; /* 10px gap between cells */
}

.candle-large-categories td {
    padding: 5px;
    text-align: center;
}

/* Modal Text Fields Mobile Improvements */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 8px 12px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .modal-title {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .modal-body {
        padding: 8px 12px;
    }
    
    /* Form styling improvements */
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-weight: 600;
        color: #84261B;
        margin-bottom: 6px;
        font-size: 0.95rem;
    }
    
    .form-control {
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 1rem;
        line-height: 1.5;
        transition: border-color 0.3s ease;
    }
    
    .form-control:focus {
        border-color: #84261B;
        box-shadow: 0 0 0 0.2rem rgba(132, 38, 27, 0.25);
    }
    
    /* Textarea specific improvements */
    .form-control[type="textarea"], 
    textarea.form-control {
        min-height: 80px;
        resize: vertical;
        font-family: inherit;
    }
    
    /* Select dropdown improvements */
    select.form-control {
        padding: 10px 12px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 40px;
    }
    
    /* Button improvements */
    .submit-btn {
        margin-top: 16px;
        display: flex;
        gap: 8px;
    }
    
    .submit-btn .btn {
        flex: 1;
    }
    
    /* Tab navigation improvements */
    .nav-tabs {
        border-bottom: 2px solid #e9ecef;
        margin-bottom: 16px;
    }
    
    .nav-tabs .nav-link {
        border: none;
        border-bottom: 3px solid transparent;
        color: #6c757d;
        font-weight: 500;
        padding: 10px 16px;
        border-radius: 0;
    }
    
    .nav-tabs .nav-link.active {
        color: #84261B;
        border-bottom-color: #84261B;
        background: none;
    }
    
    .nav-tabs .nav-link:hover {
        border-bottom-color: #84261B;
        color: #84261B;
    }
}

/* Desktop Modal Button Styling */
@media (min-width: 769px) {
    .submit-btn {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }
    
    .submit-btn .btn {
        flex: 1;
    }
}

/* 992 px */
@media only screen and (max-width:992px) {
    .shop_sidebar{
        display: none;
    }
    .banner_product_image{
        display: none;
    }
    .banner {
        height: 300px;
        padding-top: 50px;
    }
}

/* Featured Candle Styles */
.featured-candle {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-candle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800, #ffc107);
    background-size: 200% 100%;
    animation: featured-shine 3s ease-in-out infinite;
}

@keyframes featured-shine {
    0% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
    animation: featured-pulse 2s ease-in-out infinite;
}

@keyframes featured-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile responsive adjustments for featured candles */
@media only screen and (max-width: 575px) {
    .featured-candle {
        margin: 10px 5px;
        border-radius: 6px;
    }
    
    .featured-badge {
        font-size: 9px;
        padding: 3px 6px;
        margin-left: 5px;
    }
}