 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Jost", sans-serif;
     font-optical-sizing: auto;
     
 }
body{
    background: #fafafa ;
}
 .wrapper {
     height: auto;
     width: 100%;

 }

 .content-full {
     background-color: darkslategrey;
     width: 100%;
     height: auto;
     margin: 0 auto;

 }

 .content {
     max-width: 1200px;
     width: 100%;
     height: auto;
     margin: 0 auto;

 }

 @media (max-width:768px) {
     .content-full {
         max-width: 100%;
         width: 100%;
     }

     .content {
         width: 90%;
     }
 }

 .swiper {
     width: 100%;
     height: 100vh;
     position: relative;

 }

 .swiper .swiper-slide {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
 }

 .cover-swiper .swiper-slide::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 2;
 }

 .slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 1;

 }

 .slide-content {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     height: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 60px;

     transform: translateY(90px);
 }

 .text-content {
     /*    background-color: rgba(255, 255, 255, 0.85);*/
     padding: 40px;
     border-radius: 5px;
     animation: slideUp 1s ease-out;
     opacity: 0;
     transform: translateY(50px);
     animation-fill-mode: forwards;
 }

 .swiper-slide-active .text-content {
     animation: slideUp 1s ease-out forwards;
 }

 @keyframes slideUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .text-content h4 {
     color: #fff;
     font-weight: 400;
     font-size: 18px;
     margin: 0;
     text-transform: uppercase;
     letter-spacing: 5px;
 }

 .text-content h2 {
     font-size: 48px;
     line-height: 50px !important;
     font-weight: 400;
     margin: 15px 0 50px 0;
     line-height: 1.2;
     color: #fff;
 }

 .text-content p {
     color: #fff;
     font-size: 18px;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .text-content .btn {
     padding: 15px 30px;
     border: 1px solid #fff;
     color: white;
     font-weight: 400;
     font-size: 16px;
     margin: 120px 0 0 0 !important;
     border-radius: 5px;
     cursor: pointer;
     text-decoration: none;
     letter-spacing: 3px;
 }

 .swiper-pagination-bullet {
     background-color: #3a41d3;
     opacity: 0.3;
 }

 .swiper-pagination-bullet-active {
     opacity: 1;
 }

 @media (max-width: 768px) {
     .slide-content {
         justify-content: center;
         text-align: left;
         padding: 0 20px;
     }

     .text-content h2 {
         font-size: 32px;
     }

     .text-content {
         padding: 30px 30px 30px 0;
     }

     .swiper {

         height: 80vh;
         margin-top: 0;
     }

     .swiper .swiper-slide {

         height:80vh;

     }

 }

 /*category swiper below cover*/
 .categorySwiper2,
 .categorySwiper2 .swiper-wrapper,
 .categorySwiper2 .swiper-slide {

   
     height: 250px;
     padding: 50px 0;
     
 }


.cat2-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px 20px 20px; /* top padding बढाइयो */
    text-align: center;
    position: relative; /* icon overlap लागि */
    transition: all 0.3s ease;
}

.cat2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cat2-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    position: absolute;   /* ✅ overlap effect */
    top: -30px;           /* ✅ half outside card */
    left: 50%;            /* center align */
    transform: translateX(-50%); /* center exactly */
    z-index: 2;
}

.cat2-icon-circle img {
    width: 28px;
    height: 28px;
}

.cat2-card h4 {
    margin: 20px 0 5px; /* top margin adjust */
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.cat2-card p {
    font-size: 14px;
    color: #666;
}


 /*category swiper ends*/
 /*new arrivals starts*/
 .new-arrivals {
     margin-top: 40px;
 }

 .na-header {
     display: flex;
     justify-content: space-between;
     /* text left, countdown right */
     align-items: center;
     /* center countdown vertically */
     gap: 20px;
     flex-wrap: wrap;
     /* let it stack on smaller screens */
 }

 .na-text {
     display: flex;
     flex-direction: column;
     /* stack h2 and p */
     gap: 5px;
 }

 .na-text h2 {
     font-size: 26px;
     font-weight: 700;
     margin: 0;
 }

 .na-text p {
     margin: 0;
     color: #777;
     font-size: 14px;
 }

 .na-countdown {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     background: #f8f8f8;
     padding: 10px 12px;
     border-radius: 5px;
     font-size: 14px;
     font-weight: 500;
     min-width: 120px;
 }



 .na-countdown span:first-child {
     font-weight: 600;
     margin-bottom: 5px;
     float: left;
 }

 .na-countdown span:last-child {
     font-family: monospace;
     font-size: 15px;
 }


 .na-products {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }

 .na-product-card {
     border: 1px solid #eee;
     border-radius: 6px;

     position: relative;
     background: #fff;
     transition: all 0.3s ease;
 }

 .na-product-card:hover {
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 }

 .na-badge {
     position: absolute;
     top: 10px;
     left: 10px;
     padding: 3px 8px;
     font-size: 11px;
     font-weight: 500;
     color: #fff;
     border-radius: 3px;
 }

 .na-badge.sale {
     background: #4CAF50;
 }

 .na-badge.trending {
     background: #7a5af5;
 }

 .na-badge.new {
     background: #ff4c4c;
 }

 .na-img-wrapper {
     text-align: center;
 }

 .na-img-wrapper img {
     width: 100%;
     height: auto;
 }

 .na-category {
     font-size: 12px;
     color: #888;
     margin-top: 8px;
     padding: 0 10px;
 }

 .na-title{
     font-size: 14px;
     font-weight: 500;
     margin: 4px 0;
       padding: 0 10px;
    
 }
.na-title a{
    text-decoration: none;
    color:#2b2b2b;
    
}   
.na-title a:hover{
    color: #C79729 ;
}
 .na-price-wrap {
     margin-top: 5px;
       padding: 0 10px;
 }

 .na-price {
     font-size: 15px;
     font-weight: 600;
     color: #000;
    
 }

 .na-old-price {
     font-size: 13px;
     text-decoration: line-through;
     color: #aaa;
     margin-left: 5px;
 }

 .na-colors {
     margin-top: 8px;
       padding: 0 10px;
 }

 .na-colors span {
     display: inline-block;
     width: 16px;
     height: 16px;
     border-radius: 3px;
     margin-right: 5px;
     border: 1px solid #ccc;
 }

 .na-sizes {
     margin-top: 8px;
 }

 .na-sizes span {
     display: inline-block;
     padding: 2px 6px;
     font-size: 12px;
     border: 1px solid #ccc;
     border-radius: 3px;
     margin-right: 4px;
     color: #555;
     background: #f8f8f8;
 }

 .na-sizes .na-disabled {
     background: #eaeaea;
     color: #bbb;
 }

 /*new arrivals ends*/
 /*support details starts*/
 /* Unique Swiper Wrapper */
 .infoSwiper {
     padding: 30px 0 !important;
     height: 250px;
     margin: 50px 0;
     overflow: hidden;
 }

 .infoSwiper .swiper-slide {
     display: flex;
     justify-content: center;
 }

 .info-card {
     background: #f8f8f8;
     border-radius: 5px;
     padding: 30px 20px;
     text-align: center;
     transition: all 0.3s ease;
     width: 100%;
     max-width: 400px;
 }

 .info-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 }

 .info-card img {
     width: 40px;
     height: 40px;
     margin-bottom: 15px;
 }

 .info-card h4 {
     font-size: 18px;
     font-weight: 700;
     color: #222;
     margin-bottom: 8px;
 }

 .info-card p {
     font-size: 14px;
     color: #666;
     line-height: 1.5;
 }


 .hero-section {
     position: relative;
     width: 100%;
     height: 500px;
     background: url('../images/banner/7.jpg') center/cover no-repeat;
     display: flex;
     align-items: center;
     justify-content: flex-start;
 }


 .hero-overlay {
     position: absolute;
     left: 0;
     top: 0;
     width: 40%;
     height: 100%;
     background-color: transparent;
      z-index: 1;
 }


 .deal-card {
     position: relative;
     z-index: 2;
     background-color: transparent;
     border-radius: 5px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     padding: 30px;
     max-width: 480px;
     margin-left: 50px;
 }
@media (max-width:768px) {
    .deal-card {
        width: 90%;
         margin-left:5%;
        padding: 20px;
        text-align: center;
        background-color: #fff;
        opacity: 0.9;
    }
     .timer {
     display: flex;
     gap: 10px;
 }

    
}
 .discount {
     font-size: 18px;
     font-weight: bold;
     color: #ff6b6b;
     margin-bottom: 10px;
 }

 .title {
     font-size: 1.5rem;
     font-weight: bold;
     color: #333;
     margin-bottom: 20px;
 }

 .description {
     color: #666;
     line-height: 1.5;
     margin-bottom: 30px;
 }

 .timer {
     display: flex;
     gap: 15px;
     justify-content: center;
 }

 .time-unit {
     text-align: center;
 }

 .time-value {
     font-size: 18px;
     font-weight: bold;
     color: #333;
     background-color: #f0f0f0;
     padding: 10px;
     border-radius: 5px;
     display: inline-block;
     min-width: 40px;
 }

 .time-label {
     font-size: 0.8rem;
     color: #888;
     margin-top: 5px;
 }

 .separator {
     font-size: 1.8rem;
     font-weight: bold;
     color: #ccc;
     display: flex;
     align-items: center;
 }


 .fashion-swiper-container {
     max-width: 1200px;
     margin: 50px auto;
     overflow: hidden;
     height: 300px;
 }


 #fashion-swiper-unique {
     padding: 20px 0;
      overflow: hidden; 
 }
#fashion-swiper-unique .swiper-wrapper {
    display: flex;
    box-sizing: border-box;
}

#fashion-swiper-unique .swiper-slide {
    width: auto;
    height: 300px;
    box-sizing: border-box;
}

 .fashion-swiper-card {
     position: relative;
     border-radius: 5px;
     overflow: hidden;
     height: 200px;
     display: flex;
     align-items: center;
     background-size: cover;
     background-position: center;
 }

 /* Left content overlay */
 .fashion-content {
     background: none;
     padding: 0;
     max-width: 60%;
     border-radius: 5px;
     margin-left: 20px;
     text-align: left;
 }

 .fashion-category {
     font-size: 18px;
     font-weight: 700;
     color: #2b2b2d;

 }

 .fashion-subtitle {
     font-size: 18px;
     color: #666;
     margin-bottom: 15px;

 }

 .fashion-discount {
     font-size: 18px;
     font-weight: 700;
     color: #3f51b5;
     margin-bottom: 20px;
 }

 .fashion-discount span {
     font-size: 14px;
     color: #777;
 }

 .fashion-swiper-btn {
     background: #3f51b5;
     color: white;
     border: none;
     padding: 10px 25px;
     border-radius: 5px;
     font-weight: 700;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .fashion-swiper-btn:hover {
     background: #ff6b6b;
 }

 /* Navigation buttons */
 #fashion-swiper-unique .swiper-button-next,
 #fashion-swiper-unique .swiper-button-prev {
     color: #333;
     background: rgba(255, 255, 255, 0.8);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 #fashion-swiper-unique .swiper-button-next::after,
 #fashion-swiper-unique .swiper-button-prev::after {
     font-size: 1.2rem;
 }

 /* Pagination */
 #fashion-swiper-unique .swiper-pagination-bullet {
     background: #ccc;
     opacity: 1;
 }

 #fashion-swiper-unique .swiper-pagination-bullet-active {
     background: #333;
 }

 /*category discounts ends*/
