.bannerwidth{
      max-width: 1480px;
}
.shop-by-purpose {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Reduce gap to prevent overflow on zoom */
    margin: 50px auto;
    width: 100%;
    max-width: 1480px;
    text-align: center;
}

.purpose-card {
     width: calc(25% - 30px);
    max-width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.purpose-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}
    .purpose-card:hover {
        transform: scale(1.1);
    }
    .purpose-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
   .purpose-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center horizontally and vertically */
    color: white;
    font-size: 14px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    z-index: 1;
    white-space: nowrap; /* Prevents text from wrapping */
}

@media (max-width: 768px) {
    .shop-by-purpose {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
    @media (max-width: 768px) {
    .shop-by-purpose {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .purpose-card {
        width: 45%;  /* Two circles per row */
        aspect-ratio: 1 / 1; /* Maintain a perfect square ratio */
        border-radius: 50%;  /* Ensure it remains circular */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .purpose-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .purpose-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 12px; 
        font-weight: bold;
        background: rgba(0, 0, 0, 0.6);
        padding: 6px;
        border-radius: 8px;
        text-align: center;
        white-space: nowrap;
         padding: 5px 8px;
    }


}


 .art-craft-section {
     max-width:1480px;
     width:100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        text-align: center;
    }
    .art-card {
        width: 450px;
        height: 350px;
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 15px;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .art-card:hover {
        transform: scale(1.05);
    }
    .art-card img {
        width: 100%;
        height: 70%;
        object-fit: contain;
        border-radius: 10px 10px 0 0;
    }
    .explore-btn {
        display: inline-block;
        background-color: #ed711b;
        color: white;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        padding: 10px 15px;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }
    .explore-btn:hover {
        background-color: #d66014;
        transform: scale(1.05);
        color:white;
    }
    
    @media (max-width: 768px) {
        .art-craft-section {
            flex-direction: column;
            align-items: center;
        }
        .art-card {
            width: 90%;
        }
    }
    .show-wrapper {
    text-align: center; /* Centers the button */
    margin-top: 20px; /* Adjust as needed */
}
.show-more-btn {
    display: inline-block;
    background-color: #ed711b;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.show-more-btn:hover {
    color:white;
    background-color: #0056b3;
}
  .flashing-heading h2 {
      margin-top:30px;
        font-size: 28px;
        font-weight: bold;
        text-align: center;
        display: inline-block;
        animation: colorFlash 2s infinite alternate;
        
    }

    @keyframes colorFlash {
        0% { color: rgb(232, 109, 82); }
        50% { color: rgb(255, 170, 51); }
        100% { color: rgb(181, 52, 84); }
    }
     .signup-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
       
        padding: 40px 20px;
        border-radius: 10px;
        width: 100%;
        margin-top: 50px; /* Space above only */
        margin-bottom: 0; /* No space at the bottom */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .signup-heading {
        font-size: 24px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }
    .signup-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }
    .signup-form {
        display: flex;
        width: 100%;
        max-width: 600px;
    }
    .signup-input {
        flex: 1;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px 0 0 5px;
        font-size: 14px;
        outline: none;
        width: 100%;
    }
    .signup-button {
        background-color:#ed711b;
        color: white;
        border: none;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: bold;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
    }
    .signup-button:hover {
        background-color: #d66014;
    }
   /*Moving text*/
    .scrolling-text-container {
    overflow: hidden;
    white-space: nowrap;
    background: #ed711b; 
    padding: 10px 0;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color:white;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/*Fast shipping*/
.service-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    /*background: #f9f9f9;*/
    border-radius: 10px;
    text-align: center;
    flex-wrap: nowrap; /* Ensures all items stay in a single row */
}

.service-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    min-width: 200px;
    text-align: left;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 30px;
    color: #ff6600;
}

.service-content h4 {
    font-size: 16px;
    margin: 0;
}

.service-content p {
    font-size: 14px;
    color: gray;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-features {
        flex-wrap: wrap; /* Wrap items when screen is smaller */
        justify-content: center;
    }
    .service-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 600px) {
    .service-item {
        flex: 1 1 100%; /* Single column layout on mobile */
    }
}
/* offer code */
/* Ensure the swiper container stays within 1480px and is centered */
.coupon-code {
    max-width: 1480px;
    width: 100%; /* Makes it responsive */
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
}

/* Offer Card Styling */
.offer_card {
    background: linear-gradient(135deg, #ff9a3f,  #ed711b);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    color: #fff;
}

.offer_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Offer Icon */
.offer_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}

/* Offer Title */
.offer_title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

/* Offer Code */
.offer_code_text {
    font-size: 16px;
    color: #fff;
}

.copy_code {
    background: #fff;
    color: #ff6b6b;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.copy_code:hover {
   color:white;
    background-color: #0056b3;
}
/* Ensure responsiveness */
@media (max-width: 1480px) {
    .coupon-code {
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 767px) {

    .offer_card {
        max-width: 100%;
        padding: 15px;
    }

    .offer_title {
        font-size: 16px;
    }

    .offer_code_text {
        font-size: 14px;
    }
}

