.page-main {
    margin-top: 0 !important;
}

.page-header {
    /*background-image: url('../images/header-bckimg.png') !important;*/
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    /*  transparent !important; */ 
    background-color:#f1f1f1;
}
#store.menu, #store.menu.navigation, .nav-sections .section-item-content, .nav-sections .section-item-content.navigation{
background-image: url('../images/header-bckimg.png') !important;
}
.nav-sections-item-content>.navigation{
background-image: url('../images/header-bckimg.png') !important;
}
.nav-sections{
margin-bottom: 2px !important;
}
.header.panel>.header.links>li>a:visited{
    color: #000 !important;
}

.navigation .level0>.level-top{
color: #ffffff !important;
font-size: 18px;
}
.page-header .panel.wrapper{
border-bottom: 1px solid #8b8b8b !important;
            background-color: #dddddd !important;
}
.header.panel>.header.links>li>a, .header.panel>.header.links>li, .page-header .panel.wrapper .switcher strong, .page-footer .switcher strong{
color: #000;
    text-decoration: none;
    font-weight: 600;
}
.block-search, .minicart-wrapper{
margin-top: 15px;
}
.page-header .panel.wrapper{
color: #000;
}



.page-footer {
    background-image: url('../images/header-bckimg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

/* Footer text and links styling */
.page-footer,
.page-footer .footer.content {
    color: #ffffff !important;
}

.page-footer a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800 !important;
}

.page-footer a:hover {
    color: #ffdd00 !important;
    text-decoration: underline;
}

.page-footer .footer-links li a {
    color: #ffffff !important;
}

.page-footer .copyright {
    color: #ffffff !important;
}

/* Newsletter section in footer */
.page-footer .block.newsletter {
    color: #ffffff !important;
}

.page-footer .block.newsletter .title {
    color: #ffffff !important;
}

.block.widget .product-item-info
{
    border: 1px solid #ccc;
    padding: 10px;
}


@media screen and (min-width: 1480px) {

    .page-main{
        max-width: 1480px;
    }
}

/******************************************************************************/
/* Banner Slider Styles - Full Width */
.banner-slider-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: fadeIn 1s;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    z-index: 2;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.slider-btn {
    display: inline-block;
    padding: 15px 40px;
    background-image: url('../images/button-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s;
}
.slider-btn:hover {
    background-image: url('../images/button-bg.jpeg');
    transform: scale(1.05);
}

/* Navigation Arrows */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 16px;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Dots Navigation */
.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 3;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background-color: white;
    transform: scale(1.2);
}

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

/* Responsive */
/* Your existing CSS remains the same until the mobile media query */

@media screen and (max-width: 768px) {
    .slider-container {
        height: auto;
        position: relative;
    }
    
    .slide {
        display: none;
        position: relative;
        width: 100%;
        height: auto;
        animation: fadeIn 1s;
    }
    
    .slide.active {
        display: block;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0;
    }
    
    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        z-index: 2;
        width: 90%;
    }
    
    .slide-content h2 {
        font-size: 18px;
        margin: 5px 0;
    }
    
    .slide-content p {
        font-size: 12px;
        margin: 5px 0;
    }
    
    .slider-btn {
        padding: 6px 15px;
        font-size: 11px;
    }
    
    /* Fix prev/next buttons */
    .slider-prev,
    .slider-next {
        padding: 8px 12px;
        font-size: 16px;
        top: 40%; /* Position at 40% instead of 50% */
        transform: translateY(-50%);
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    /* Fix dots position */
    .slider-dots {
        position: absolute;
        bottom: 5px;
        margin: 0;
    }
    
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 3px;
    }
    
    /* Remove any extra spacing */
    .banner-slider-wrapper {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .banner-slider {
        margin-bottom: 0;
    }
}

/* ========== DIVIDER AFTER SWATCHES ========== */
.catalog-product-view .product-info-main .box-tocart {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.product-items .product-item .product-item-info .swatch-attribute .swatch-option.image {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    padding: 0 !important;
    margin-right: 5px !important;
    margin-bottom: 5px !important;
    border: 1px solid #ddd !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
}

/* Make images fill properly at smaller size */
.product-items .product-item .product-item-info .swatch-attribute .swatch-option img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
}


/********************************Button styling for the website*****************************************/

.action.primary,
.action.primary:focus,
.action.primary:active {
    background-image: url('../images/button-bg.jpeg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
    color: #fff !important;
    border: none !important;
}

/* Hover State */
.action.primary:hover {
    background-image: url('../images/button-bg.jpeg') !important;
    background-color: transparent !important;
    filter: brightness(1.15);
    transform: translateY(-2px);
}


/* ========================================================= */
/* 🔥 MOBILE FOOTER FIX — ADDED HERE */
/* ========================================================= */

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

    .page-footer {
        background-image: url('../images/header-bckimg.png') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
        margin-top:0px !important;
    }

    .page-footer .footer.content {
        display: block !important;
        text-align: center !important;
    }

    .page-footer .footer-links,
    .page-footer .footer-links ul,
    .page-footer .footer-links li {
        float: none !important;
        display: block !important;
        text-align: center !important;
        margin: 6px 0 !important;
    }

    .page-footer .block.newsletter {
        width: 100% !important;
        text-align: center !important;
        margin-top: 15px !important;
    }

    .page-footer .block.newsletter input[type="email"] {
        width: 90% !important;
        margin-bottom: 10px !important;
    }

    .page-footer .block.newsletter .actions {
        text-align: center !important;
        display: block !important;
    }

    .page-footer .copyright {
        text-align: center !important;
        padding: 10px 0 !important;
        display: block !important;
        width: 100% !important;
    }
    .footer.content .links > li {
        background: #f4f4f400 !important;
        font-size: 1.6rem;
        border-top: 1px solid #cecece;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .page-header {
        /* background-image: url('../images/mobile-footer.jpeg') !important;*/
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        /*background-color: transparent !important;*/
        background-color:#cbcbcb !important;
        margin-bottom: 0px !important;
    }

    .page-header .block-search .label:before {
        color: #fff !important;   /* make the icon white */
    }

    .page-header .block-search .label:hover:before {
        color: #ffffff !important;
    }

    /* Normal state – cart icon */
    .page-header .minicart-wrapper .action.showcart:before {
        color: #ffffff !important;
    }

    /* Hover state – cart icon */
    .page-header .minicart-wrapper .action.showcart:hover:before {
        color: #ffffff !important;
    }

    .page-header .nav-toggle:before,
    .page-header .nav-toggle:hover:before {
        color: #ffffff !important;
    }
    
    .block-search, .minicart-wrapper{
            margin-top: 27px;
    }
    .nav-toggle{
        margin-top: 5px;
    }

    .header.content{
        adding-top: 21px;
    }
    .logo{
        margin-left: 100px;
    }
    .block-search .label
    {
        top: -10px;
        position: relative;
    }
    .minicart-wrapper .action.showcart
    {
        top: -12px; 
        position: relative;
    }

    .navigation .submenu:not(:first-child) > li > a
    {
        color: white !important;
    }
    .nav-sections .header.links li > a
    {
        color: white !important;
    }
    .nav-sections .header.links li.greet.welcome {
        display: none !important;
    }


}

@media only screen and (min-width: 1200px) {
    .block-search input
    {
        border-radius: 15px;
        padding: 15px;
        height: 35px;
    }
    .block-search
    {
        width: 300px !important;
    }

    .header.panel .header.links .greet.welcome {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .header.panel > .header.links
    {
        float: left !important;
    }

    .authorization-link .auth-icon {
        display: inline-block;
        vertical-align: middle;
        margin-right: 6px;
    }

    .authorization-link svg {
        display: block;
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

}

/***************menubar sticky***************/


@media only screen and (min-width: 768px) {
    .sections.nav-sections {
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        top: 0;
        z-index: 100;
        width: 100%;
        background: #fff; /* Ensure it has a background so content doesn't bleed through */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds a slight shadow when scrolling */
    }

}
/* Sticky Header for Mobile View Only */
@media screen and (max-width: 768px) {
    .page-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 99 !important;
        width: 100% !important;
    }
    
    /* Ensure mobile menu/drawer stays above sticky header */
    .nav-sections,
    .nav-toggle,
    .sections.nav-sections,
    [data-action="toggle-nav"],
    .navigation,
    .nav-sections-items,
    .nav-sections-item-content {
        z-index: 100 !important;
    }
    
    /* Mobile menu overlay */
    body.nav-open .page-wrapper::before,
    body._has-modal-custom .page-wrapper::before,
    .modals-overlay {
        z-index: 100 !important;
    }
    
    /* Ensure smooth scrolling behavior */
    body {
        padding-top: 0;
    }
}

/* Optional: Add a subtle shadow when scrolling for better visibility */
@media screen and (max-width: 768px) {
    .page-header.scrolled {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

/*************************custom menu style*********************************/


.nav-toggle {
    cursor: pointer;
}

#custom-mobile-menu {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
    z-index: 99;
}

#custom-mobile-menu .custom-menu-wrapper {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

/* Scrollbar styling */
#custom-mobile-menu .custom-menu-wrapper::-webkit-scrollbar {
    width: 6px;
}

#custom-mobile-menu .custom-menu-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#custom-mobile-menu .custom-menu-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#custom-mobile-menu .custom-menu-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#custom-mobile-menu .custom-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#custom-mobile-menu .custom-menu-list .menu-item {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
    background: #ffffff;
    transition: background 0.2s;
}

#custom-mobile-menu .custom-menu-list .menu-item:hover {
    background: #fafafa;
}

#custom-mobile-menu .custom-menu-list .menu-item:last-child {
    border-bottom: none;
}

/* Main menu item without submenu */
#custom-mobile-menu .custom-menu-list .menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

#custom-mobile-menu .custom-menu-list .menu-item > a:hover {
    color: #ff5501;
    padding-left: 25px;
}

/* Menu item with submenu */
#custom-mobile-menu .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    transition: background 0.2s;
    background-image: url('../images/header-bckimg.png') !important;
}

#custom-mobile-menu .menu-item.has-submenu:hover .menu-item-header {
    background: #fafafa;
}

#custom-mobile-menu .menu-item-header .category-link {
    flex: 1;
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
}

#custom-mobile-menu .menu-item-header .category-link:hover {
    color: #ff5501;
}

#custom-mobile-menu .menu-item-header .category-name {
    color: inherit;
}

#custom-mobile-menu .toggle-submenu {
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    padding: 5px 10px;
    color: white;
    transition: all 0.3s;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
    border-radius: 4px;
}

#custom-mobile-menu .toggle-submenu:hover {
    /*background: #fff5f0;*/
}

#custom-mobile-menu .toggle-submenu.open {
    transform: rotate(90deg);
    /*background: #fff5f0;*/
}

#custom-mobile-menu .arrow {
    font-size: 20px;
    font-weight: bold;
    color: #999;
}

/* Submenu styles */
#custom-mobile-menu .submenu-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    border-top: none;
    border-bottom: none;
}

#custom-mobile-menu .submenu-list li {
    padding: 0;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

#custom-mobile-menu .submenu-list li:last-child {
    border-bottom: none;
}

#custom-mobile-menu .submenu-list li:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #ff5501;
    border-radius: 50%;
}

#custom-mobile-menu .submenu-list a {
    display: block;
    padding: 14px 20px 14px 40px;
    text-decoration: none;
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    background: #ffffff;
    border-left: 3px solid transparent;
}

#custom-mobile-menu .submenu-list a:hover {
    color: #ff5501;
    background: #fafafa;
    padding-left: 45px;
    border-left: 3px solid #ff5501;
}

#custom-mobile-menu .submenu-list a:active {
    background: #f5f5f5;
}

/* Add decorative line after each submenu item */
#custom-mobile-menu .submenu-list li:after {
    content: '';
    position: absolute;
    left: 40px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, #000 0%, #e0e0e0 20%, #e0e0e0 100%);
}

#custom-mobile-menu .submenu-list li:last-child:after {
    display: none;
}

/* Add a nice fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#custom-mobile-menu {
    animation: fadeIn 0.3s ease-out;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    #custom-mobile-menu .custom-menu-wrapper {
        max-height: 350px;
    }
    
    #custom-mobile-menu .menu-item-header,
    #custom-mobile-menu .custom-menu-list .menu-item > a {
        padding: 14px 15px;
        font-size: 14px;
    }
    
    #custom-mobile-menu .submenu-list a {
        padding: 10px 15px 10px 35px;
        font-size: 13px;
    }
}

/***************************************Newsletter sidebar on homepage***************************************/


/* ============================================
   Global Two-Column Layout with Newsletter
   ============================================ */

/* Two-Column Wrapper */
.global-two-column-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    align-items: flex-start;
}

/* Main Content Column (Left) */
.global-main-content {
    flex: 0 0 70%;
    width: 70%;
}

/* Sidebar Column (Right) */
.global-sidebar {
    flex: 0 0 27%;
    width: 27%;
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: flex-start;
}


/* ============================================
   Newsletter Sidebar Styling
   ============================================ */

.homepage-newsletter-sidebar {
    background: url('../images/newsletter-bg.jpeg') center center/cover no-repeat;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 600px;
}

/* Premium Badge */
.premium-badge-container {
    margin-bottom: 35px;
}

/*.premium-badge-container .premium-badge-image {
    max-width: 300px;
    width: 100%;
    height: auto;
}*/

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hide Default Page Messages */
.page.messages {
    display: none !important;
}

/* ============================================
   Newsletter Form Styling
   ============================================ */

.newsletter-form-wrapper .field.newsletter {
    margin-bottom: 15px;
}

.newsletter-form-wrapper .field.newsletter .control {
    width: 100%;
}

.newsletter-form-wrapper .field.newsletter .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Input Fields */
.newsletter-form-wrapper .field.newsletter input[type="text"],
.newsletter-form-wrapper .field.newsletter input[type="email"] {
    width: 100%;
    padding: 22px 18px;
    border: 2px solid #41505c;
    border-radius: 5px;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form-wrapper .field.newsletter input[type="text"]:focus,
.newsletter-form-wrapper .field.newsletter input[type="email"]:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    background: #fffef8;
}

.newsletter-form-wrapper .field.newsletter input::placeholder {
    color: #999;
}

.newsletter-form-wrapper .field.newsletter input.mage-error {
    border: 2px solid #e02b27;
}

/* Subscribe Button */
.newsletter-form-wrapper .actions {
    margin-top: 20px;
}

.newsletter-form-wrapper .actions button.subscribe {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A029 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.newsletter-form-wrapper .actions button.subscribe:hover {
    background: linear-gradient(135deg, #C9A029 0%, #B8941F 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.newsletter-form-wrapper .actions button.subscribe:active {
    transform: translateY(-1px);
}

.newsletter-form-wrapper .actions button.subscribe:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Error Messages */
.newsletter-form-wrapper .mage-error {
    color: #e02b27;
    font-size: 12px;
    margin-top: 10px;
    display: block;
}

/* ============================================
   Newsletter Messages (Success/Error)
   ============================================ */

.homepage-newsletter-messages {
    margin-top: 20px;
}

.homepage-newsletter-messages .message-success,
.homepage-newsletter-messages .message-error {
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.homepage-newsletter-messages .message-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(56, 142, 60, 0.95) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.homepage-newsletter-messages .message-error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.95) 0%, rgba(211, 47, 47, 0.95) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Desktop: Add border separator */
@media (min-width: 1025px) {
    .global-main-content {
        padding-right: 20px;
        border-right: 1px solid #ccc;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .global-two-column-wrapper {
        gap: 20px;
    }

    .global-main-content {
        flex: 0 0 65%;
        width: 65%;
        padding-right: 0;
        border-right: none;
    }

    .global-sidebar {
        flex: 0 0 32%;
        width: 32%;
    }
    
    .homepage-newsletter-sidebar {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .global-two-column-wrapper {
        flex-direction: column;
        padding: 10px;
    }
    
    .global-main-content,
    .global-sidebar {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .global-sidebar {
        position: relative;
        margin-top: 30px;
        top: 0;
    }

    .homepage-newsletter-sidebar {
        padding: 30px 20px;
        min-height: auto;
    }

    .premium-badge-container .premium-badge-image {
        max-width: 180px;
    }
}

/* ============================================
   Footer Newsletter (Keep Original Styling)
   ============================================ */

.footer .block.newsletter {
    /* Ensure footer newsletter is not affected */
}

/**************************************footer customization**************************************************/
/* MAIN FOOTER WRAPPER */
.custom-footer-wrapper {
    padding: 20px 20px;
}

/* COLUMNS WRAPPER */
.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    padding-left: 40px; /* Left spacing */
}

/* EACH COLUMN */
.footer-columns > div {
    width: 33%;
    padding-left: 6%;
}

/* HEADINGS */
.footer-columns h3,
.footer-columns h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* LINKS INSIDE LISTS */
.footer-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-columns ul li {
    margin-bottom: 6px;
}

.footer-columns ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-columns ul li a:hover {
    text-decoration: underline;
}

/* PAYMENT IMAGES */
.footer-columns img {
    height: 35px;
    margin-right: 10px;
}

/* TOP LINKS BAR */
.footer-top-menu {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-top-menu a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
}

.footer-top-menu a:hover {
    text-decoration: underline;
}

.footer-top-links-wrapper {
    width: 100%;
    background-image: url('../images/footer-top-bg.png');
    padding: 12px 20px;
    text-align: center;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 2px
}

.footer-top-links-wrapper .block {
  margin: 0 auto;
  max-width: 1200px;
}

.footer-top-links-wrapper a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800 !important;
}


/* MOBILE VIEW */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        gap: 30px;
        padding-right: 27px;
    }

    .footer-columns > div {
        width: 100%;
    }

    /* Payment icons center on mobile */
    .footer-columns img {
        margin: 10px 5px;
    }
}

.copyright
{
    background-image: url('../images/footer-top-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-weight: bold;

}

