    /* ----------------------------------------------------------
    :: Template Name: Karl - Fashion Ecommerce Template
    :: Author: Colorlib
    :: Author URL: https://colorlib.com
    :: Description: Karl is smart & elegant fashion e-commerce Template. It's suitable for all e-commerce business platform. It's super responsive for all      Desktop/Mobile layout.
    :: Version: 1.0
    :: Created: 09 January 2018
    :: Last Updated: 09 January 2018
    ---------------------------------------------------------- */

    /* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
	
	
.deals-container{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:25px;
}

.deal-card{
    background:#fff1cc;
    border-radius:12px;
    padding:15px;
    text-align:center;
    position:relative;
}

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

.deal-text{
    margin-top:15px;
}

.deal-text small{
    color:#b40000;
    font-size:14px;
    display:block;
}

.deal-text h3{
    margin:5px 0 0;
    font-size:26px;
    color:#b40000;
    font-weight:bold;
}

/* Tablet */
@media(max-width:992px){
    .deals-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .deals-container{
        grid-template-columns: 1fr;
    }

   
}
	
	
	.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:1000;
}
	.features {
    padding: 40px 20px;
    background: #fff;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-box img {
    width: 40px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.feature-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}



.intro-section{
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.intro-section h1{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.intro-section p{
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: auto;
}

.intro-section strong{
    color:#000;
}

/* Responsive */
@media (max-width: 768px){
    .intro-section h1{
        font-size: 30px;
    }

    .intro-section p{
        font-size: 16px;
    }
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.category-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Image */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Button label */
.category-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .category-label {
        font-size: 14px;
        padding: 8px 20px;
    }
}

.circle-category-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    max-width:1200px;
    margin:auto;
}

/* Item */
.circle-item{
    text-align:center;
    width:140px;
}

/* Circle image */
.circle-img{
    width:140px;
    height:140px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #000;
    transition:transform 0.3s ease;
}

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

.circle-item:hover .circle-img{
    transform:scale(1.05);
}

/* Label */
.circle-label{
    margin-top:12px;
    font-size:14px;
    letter-spacing:1px;
    font-weight:500;
}

/* Tablet */
@media(max-width:768px){
    .circle-item{
        width:120px;
    }
    .circle-img{
        width:120px;
        height:120px;
    }
}

/* Mobile */
@media(max-width:480px){
    .circle-category-container{
        gap:20px;
    }
    .circle-item{
        width:100px;
    }
    .circle-img{
        width:100px;
        height:100px;
    }
    .circle-label{
        font-size:13px;
    }
}


.category-scroll-wrapper {
    overflow-x: auto;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.category-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Grid layout */
.category-grid {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

/* Card */
.category-card {
    min-width: 180px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    cursor: pointer;
}

/* Image */
.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Label */
.category-label {
    padding: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #fafafa;
}

/* Hover effect */
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* Tablet view */
@media (min-width: 768px) {
    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        scroll-snap-type: none;
    }

    .category-card {
        min-width: auto;
    }
}

/* Desktop view */
@media (min-width: 1200px) {
    .category-card img {
        height: 260px;
    }
}






.sectionmn {
    padding: 70px 8%;
    background: #fff;
}

.containerc {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.left {
    flex: 1;
    min-width: 280px;
}

.small-title {
    color: #008080;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.left h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.left p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* RIGHT IMAGE */
.right {
    flex: 1;
    min-width: 280px;
}

.right img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .left h1 {
        font-size: 34px;
    }
}

@media(max-width: 768px){
    .container {
        flex-direction: column;
        text-align: center;
    }
}



.gift-section{
    padding:60px 6%;
    background:#b79a8f;
}

.gift-container{
    background:#fff;
    display:flex;
    align-items:center;
    gap:50px;
    padding:40px;
    flex-wrap:wrap;
}

/* LEFT IMAGE */
.gift-image{
    flex:1;
    min-width:280px;
}

.gift-image img{
    width:100%;
    height:auto;
    display:block;
}

/* RIGHT CONTENT */
.gift-content{
    flex:1;
    min-width:280px;
}

.gift-content h2{
    font-size:36px;
    margin-bottom:20px;
    color:#111;
}

.gift-content p{
    font-size:16px;
    line-height:1.7;
    color:#444;
    margin-bottom:30px;
}

.gift-content .btn{
    display:inline-block;
    background:#a12828;
    color:#fff;
    padding:14px 34px;
    text-decoration:none;
    font-weight:600;
    border-radius:3px;
    transition:0.3s;
}

.gift-content .btn:hover{
    background:#861f1f;
}

/* RESPONSIVE */
@media(max-width:800px){
    .gift-content h2{
        font-size:30px;
    }
}

@media(max-width:668px){
    .gift-container{
        flex-direction:column;
        text-align:center;
    }

    .gift-content .btn{
        margin:auto;
    }
}

   .service-section {
        padding: 60px 20px;
        text-align: center;
    }

    .service-section h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .service-section p.subtitle {
        font-size: 18px;
        color: #555;
        margin-bottom: 50px;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: auto;
    }

    .service-box {
        padding: 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: #ffd54f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #fff;
    }

    .service-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .service-box p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }

    /* Tablet */
    @media (max-width: 992px) {
        .service-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .service-section h1 {
            font-size: 28px;
        }

        .service-grid {
            grid-template-columns: 1fr;
        }
    }
	
	
	
	
	.collection-section{
    padding:40px 20px;
}

.collection-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    position:relative;
    background:#d6c3a5;
    padding:12px;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    display:block;
}

.shop-btn{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    border:1px solid #fff;
    padding:8px 22px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    background:rgba(0,0,0,0.35);
    transition:0.3s;
}

.shop-btn:hover{
    background:#000;
}

/* Tablet */
@media(max-width:992px){
    .collection-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .collection-grid{
        grid-template-columns:1fr;
    }
}

.pagination-wrapper{
    display:flex;
    justify-content:center;
}

.pagination{
    display:flex;
    list-style:none;
    padding:0;
    margin:0;
    gap:8px;
}

.pagination li a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:40px;
    height:40px;
    padding:0 12px;
    border:1px solid #ccc;
    color:#333;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s;
    background:#fff;
}

.pagination li a:hover{
    background:#333;
    color:#fff;
    border-color:#333;
}

.pagination li.active a{
    background:#333;
    color:#fff;
    border-color:#333;
    cursor:default;
}

.pagination li.disabled a{
    pointer-events:none;
    opacity:0.5;
}

/* Mobile */
@media(max-width:576px){
    .pagination li a{
        min-width:34px;
        height:34px;
        font-size:14px;
        padding:0 8px;
    }
}


   .visitor-box {
        max-width: 350px;
        margin: 40px auto;
        padding: 20px;
        text-align: center;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .visitor-box h3 {
        margin: 0 0 10px;
        font-size: 20px;
        color: #333;
    }

    .visitor-count {
        font-size: 32px;
        font-weight: bold;
        color: #2e7d32;
    }

    @media (max-width: 480px) {
        .visitor-box {
            margin: 20px;
            padding: 15px;
        }
        .visitor-count {
            font-size: 26px;
        }
    }
