 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    
}

/* Header Styles */
header {
    background: linear-gradient(to right, #e60073, #6600cc);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.search-container {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
}

.search-bar {
    display: flex;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
}

.search-bar input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
}


.search-bar button {
    background-color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.header-icon i {
    font-size: 20px;
    margin-bottom: 4px;
}

.header-icon span {
    font-size: 12px;
}



/* Slideshow */
.slideshow {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    
}

.slide-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.slide-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}
  
.slide {
    min-width: 100%;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.slide img {
    width: 95%;
    height: 90%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.2);
}

.slide-main img, .slide-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

        /* Indicators */
        /* .indicators {
            position: static;
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 5px 0;
            background-color: #f8f8f8;
            border-radius: 0 0 8px 8px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 0, 0, 0.263);
            cursor: pointer;
            transition: background-color 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .indicator.active {
            background-color: rgb(253, 6, 6);
        } */
.indicators {
            position: static;
            display: flex;
            justify-content: center;
            gap: 1px;
            padding: 5px 0;
            background-color: #f8f8f8;
            border-radius: 0 0 8px 8px;
        }
        .indicator {
            position: relative;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #d3d3d3;
            margin: 0 3px;
            transition: background-color 0.3s ease;
          }
          .indicator.connected {
            border-radius: 50% 0 0 50%; /* left side round only */
        }
          .indicator.active {
            background-color: #ef2b8d; /* hot pink */
          }
          
          .indicator.connected::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            width: 14px; /* 12px for dot + 6px for margin or gap */
            height: 8px;
            background-color: #ef2b8d;
            border-radius: 0 50% 50% 0;
            transform: translateY(-50%);
        }
        .indicator.looping-to-first::after {
            display: none;
        }
        

/* Notice */
.notice {
    background-color: #054362;
    color: rgb(255, 255, 255);
    padding: 5px;
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 6px;
    font-family: 'Bruno Ace SC', sans-serif;
    height: 30px;

}

/* Services Box */
.services {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 20px auto;
    gap: 10px;
    
}

.service-box {
    background-color: white;
    color: black;

    align-items: center;
    /* gap: 10px; */
    padding: 10px 15px;
    display: none;
    
}
.bruno_font{
    font-family: 'Bruno Ace SC', sans-serif;
}
.Gabarito_font{
    font-family: 'Gabarito', sans-serif;
}

.service-box i {
    margin-right: 10px;
    font-size: 24px;
    margin-left: 8px;
}

/* Categories */
.categories {
max-width: 1200px;
margin: 30px auto;
}

.categories h2 {
color: #e60073;
text-align: center;
margin-bottom: 3px;
font-size: 30px;
/* text-transform: uppercase; */
}

.category-grid {
display: grid;
grid-template-columns: repeat(10, 1fr); /* 6 columns for desktop */
gap: 4px;
grid-auto-rows: auto;
width: 100%;
overflow-x: auto; /* To allow horizontal scrolling */
scroll-snap-type: x mandatory; /* For smooth scrolling */
-webkit-overflow-scrolling: touch; /* For better scrolling on iOS */
justify-content: center; /* Center content */

}

.category-item {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;

}
/* Make the category items visible when they are centered in the view */

.category-icon {
width: 80px;
height: 80px;
border-radius: 10%;
overflow: hidden;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 5px;
}

.category-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}

.category-name {
font-size: 14px;
text-align: center;
/* text-transform: uppercase; */
font-family: 'Gabarito', sans-serif;
}

/* Products */
.products {
    max-width: 1200px;
    margin: 30px auto;
}

.products h2 {
    color: #e60073;
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.product-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    /* border: 2px solid #9C9C9C; Added border with color #9C9C9C */
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.discount-tag {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #ff0000;
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 10px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Gabarito', sans-serif;
    font-weight: 600; /* SemiBold */
    text-align: center;

    display: -webkit-box;
    -webkit-line-clamp: 2;           /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.5em;
    max-height: 3em;                 /* 2 lines × line-height */
    min-height: 3em;                 /* ensures consistent height */
}


.product-material {
    font-size: 12px;
    margin-bottom: 5px;
    font-family: 'Gabarito', sans-serif;
  font-weight: 600; /* SemiBold */
  text-align: center;
}

.product-prices {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    display: block;
    text-align: center;
    font-family: 'Gabarito', sans-serif;
  font-weight: 300; /* SemiBold */
}

.save-info {
    margin-right: 5px;
    font-size: 13px;
    -webkit-text-stroke: 0.3px black; 
}

.original-price {
    text-decoration: line-through;
    color: #ff0000;
}

.current-price {
    color: #0066cc;
    font-weight: bold;
}

.product-buttons {
    display: flex;
    gap: 5px;
}

.cart-btn, .buy-btn ,.view-btn {
    padding: 5px 0;
    border: none;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    flex: 1;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.buy-btn:hover{
       background-color: #f693c5;
    transform: translateY(-1px);
}

.cart-btn:hover, .view-btn:hover {
    background-color: #a36efe;
    transform: translateY(-1px);
}

.cart-btn , .view-btn {
    /* background:linear-gradient(to right, #e91e63, #4a148c); */
    background: #5E00FF;
    font-size: 13px;
}

.buy-btn {
    background: #E40475
}

.cart-btn i, .buy-btn i ,.view-btn i {  
    margin-right: 5px;
}



/* Menu Overlay */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Login Button */
.login-btn {
    display: none;
    background-color: #e60073;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }
    /* .header {
        background: #054362 !important;
    } */
    .logo {
        font-size: 20px;
    }


    .header-icons {
        display: none;
    }
    .notice {
        margin: 20px 11px;
    }
    .menu-btn, .login-btn {
        display: block;
    }

    nav {
        display: none;
    }


    .slideshow {
        flex-direction: column;

    }
.slide{
    height: 200px;
}
    .slide-side {
        margin-left: 0;
        margin-top: 10px;
    }
    .slide img{
        object-fit: cover;
    }
    /* .category-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr)); 
        gap: 20px; 
        padding-bottom: 20px;
        padding: 10px;
    }

   
    .category-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        width: 100%; 
    } */
 .mobile-hidden {
        display: none !important;
    }


    .mobile-only {
        display: block !important;
    }

    .category-grid {
        grid-template-columns: repeat(5, 1fr); /* 3 per row */
    }

    .category-item.see-more {
        /* background: #f0f0f0; */
        border-radius: 12px;
        text-align: center;
        color: #333;
        font-weight: bold;
    }
    .desktop-hidden {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }
    .category-item.see-more:hover {
        /* background: #e0e0e0; */
        cursor: pointer;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 11px;
    }
.category-icon{
width: 64px;
height: 89px;

}
.see-more-box {
    padding: 37px 0px !important;
}

    body {
        padding-bottom: 60px;
    }

    .services {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 11px;
    }

    .service-box {
        padding: 1px;
        display: flex;
        border-radius: 6px;
        border-color: black;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.621);
    }
    
}




/* If more than 6 items, allow horizontal swipe */
/* @media (max-width: 1024px) and (min-width: 769px) {
.category-grid {
grid-template-columns: repeat(12, 1fr); 

}
} */

/* Remove link design */
.no-link-style {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits the color of the parent element */
}
   /* Demo container */
   .container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Button to open modal */
.open-modal-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.open-modal-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Modal background */
.cart-modal1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal content */
.cart-modal1-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { transform: translateY(-60%); opacity: 0; }
    to { transform: translateY(-50%); opacity: 1; }
}

/* Modal header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Close button */
.close-modal-btn1 {
    color: #777;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-modal-btn1:hover {
    color: #333;
}

/* Product details */
#product-details {
    margin-bottom: 25px;
    text-align: center;
}

#product-details h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

#product-details img {
    max-width: 100%;
    width: 40%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#product-details p {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Selection sections */
#size-selection1, #color-selection1 {
    margin-bottom: 20px;
}

#size-selection1 h4, #color-selection1 h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #555;
}

/* Size buttons */
.size-option1 {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    background-color: #fff;
    min-width: 45px;
}

.size-option1:hover {
    border-color: #bbb;
    background-color: #f7f7f7;
}

.selected-size {
    border: 2px solid #3498db;
    background-color: #ebf5fb;
    color: #3498db;
}

/* Color options */
.color-option1 {
    display: inline-block;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin: 5px !important;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
}

.color-option1:hover {
    transform: scale(1.1);
}

.selected-color {
    box-shadow: 0 0 0 2px #3498db;
    transform: scale(1.1);
}

/* Add to Cart button */
#add-to-cart-btn1 {
    background-color: #2ecc71;
    color: white;
    padding: 14px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#add-to-cart-btn1:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Quantity selector styles (for future implementation) */
.quantity-section {
    margin-bottom: 25px;
}

.quantity-control {
    display: flex;
    align-items: center;
    max-width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: #f7f7f7;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}

.quantity-input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cart-modal1-content {
        width: 95%;
        padding: 20px;
    }
    
    #product-details h3 {
        font-size: 20px;
    }
    
    .size-option1 {
        padding: 7px 14px;
    }
}

@media (max-width: 480px) {
    .cart-modal1-content {
        padding: 15px;
        width: 100%;
        max-height: 90%;
        overflow-y: auto;
    }
    
    .close-modal-btn1 {
        top: 10px;
        right: 15px;
    }
    
    .size-option1 {
        padding: 6px 12px;
        min-width: 40px;
    }
    
    #product-details img {
        max-height: 200px;
        object-fit: contain;
    }
}


       
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .filter-tab {
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            background: #828282;
            color: #ffffff;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .filter-tab:hover {
            background: #e40475;
            transform: translateY(-2px);
        } 

        .filter-tab.active {
            background: #e40475;
            color: #ffffff;
        }

        .filter-tab:hover {
            transform: translateY(-2px);
        }
                @media (max-width: 768px) {
 
            
            .filter-tabs {
                flex-wrap: wrap;
            }
        }

        