body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    z-index: 1030;
}
.logo-image {
    height: 40px;
    width: auto;
}
.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: #ff6b6b !important;
}
.search-box {
    position: relative;
}
.search-box .form-control {
    border-radius: 20px;
    padding-left: 40px;
    min-width: 200px;
}
@media (max-width: 992px) {
    .search-box .form-control {
        width: 100%;
        margin: 10px 0;
    }
}
.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}
.icon-link {
    position: relative;
    margin: 0 10px;
    color: #333;
    transition: all 0.3s ease;
}
.icon-link:hover {
    color: #ff6b6b;
}
.badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.dropdown-item {
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #ff6b6b;
}

/* Hero Section */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

/* Promotion Section */
.promotion {
    background-color: #f8f9fa;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
}

/* Product Sections */
.newproduct, .newadditions {
    padding: 50px 0;
}
@media (max-width: 768px) {
    .newproduct, .newadditions {
        padding: 30px 0;
    }
}
.newproduct h2, .newadditions h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.product-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-grid-2 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-img img, .addition-img img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .product-grid-2 {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .product-img img, .addition-img img {
        height: 150px; 
    }
    
    .product-info p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: bold;
        color: #333;
    }
    .product-action button {
        padding: 6px 8px;
        font-size: 10px;
    }
}
@media (max-width: 352px) {
    .product-grid {
        grid-template-columns:1fr;
    }
    .product-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .product-img img, .addition-img img {
        height: 200px;
    }
}

.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-img img, .addition-img img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
}

@media (max-width: 992px) {
    .product-img img, .addition-img img {
        height: 200px; 
    }
}

@media (max-width: 576px) {
    .product-img img, .addition-img img {
        height: 150px; 
    }
}
.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
}
.product-info p {
    font-weight: bold;
    color: #333;
}

@media (max-width: 992px) {
    .product-info h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

.product-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.product-action button {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.product-action img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* All Products Button */
.all {
    text-align: center;
    margin: 30px 0;
}
.all button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

/* Collection Info */
.collectioninfo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 15px;
    gap: 40px;
}
@media (max-width: 992px) {
    .collectioninfo {
        display: none;
    }
}
.collectionimg {
    flex: 1;
}
.collectionimg img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.collectiontext {
    flex: 1;
    padding: 0 30px;
}
@media (max-width: 992px) {
    .collectiontext {
        padding: 30px 0;
    }
}
.collectiontext h1 {
    font-weight: 700;
    margin-bottom: 20px;
}
.collectiontext p {
    margin-bottom: 25px;
    line-height: 1.6;
}
.collectiontext button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
}

/* Services Section */
.servises {
    display: flex;
    background-color: #f8f9fa;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 15px;
    gap: 30px;
}
@media (max-width: 992px) {
    .servises {
        display: none;
    }
}
.service {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    max-width: 250px;
}
.service-img {
    margin-right: 15px;
}
.service-img img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
.service-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.service-text p {
    font-size: 14px;
    color: #6c757d;
}

/* Footer */
footer {
    background: #8228aa;
    color: #fff;
    padding: 50px 15px 20px;

}
.first {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
@media (max-width: 992px) {
    .first {
        flex-direction: column;
    }
    .first:last-child{
        display: none;
    }
}
.links {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .links {
        flex-direction: column;
    }
}
.links ul {
    list-style: none;
    padding: 0;
    margin-right: 40px;
}
.links ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.links ul li a{
    text-decoration: none;
    color: white;
}
.links ul li:hover {
    color: #ff6b6b;
}
.link2 {
    max-width: 300px;
}
.link2 h1 {
    font-weight: 700;
    margin-bottom: 15px;
}
.link2 p {
    margin-bottom: 15px;
}
.link2 input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}
.link2 button {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    height: 44px;
}
.second {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}


.newproduct {
    padding: 60px 0;
}

.newproduct button{
    background-color: #c34a9d;
}

@media (max-width: 992px) {
    .newproduct {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .newproduct {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .newproduct {
        padding: 30px 0;
    }
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}


/* Center the newadditions section */
.newadditions {
    text-align: center;
    padding: 60px 15px;
}

.newadditions h1 {
    margin-bottom: 40px;
}


.addition-card {
    text-align: center;
}

.addition-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.addition-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.collectionimg {
    flex: 1;
}

.collectionimg img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.collectiontext {
    flex: 1;
}

.collectiontext h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.collectiontext p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.collectiontext button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
}

/* Center the newproduct section */
.newproduct {
    text-align: center;
    padding: 60px 15px;
}

.newproduct h2 {
    margin-bottom: 40px;
}

.text-kelshair {
    color: #6e3296 !important;
}

.bg-kelshair {
    background-color: #6e3296 !important;
}

.bg-kelshair2 {
    background-color: #e271b3 !important;
    border: #e271b3;
}



