

/*---------------------
  Hero Slider begins
-----------------------*/
/* Hero Slider Container */
.index-hero-slider {
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

/* Slider Wrapper */
.index-slider {
    position: relative;
    width: 100%;
    height: 600px;
}

/* Individual Slide */
.index-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease;
}

.index-slide-active {
    opacity: 1;
}

/* Slide Images */
.index-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Caption */
.index-slide-caption {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
    color: #fff;
    transform: translateY(-50%);
}

.index-slide-caption h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 85px;
}

.index-slide-caption h2 {
    font-size: 80px;
    margin-bottom: 20px;
}

/* Button */
.index-primary-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background .3s;
}

.index-primary-btn:hover {
    background: #ddd;
}

/* Arrows */
.index-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.index-slider-prev,
.index-slider-next {
    cursor: pointer;
    font-size: 40px;
    color: white;
    padding: 10px 20px;
    transition: opacity .3s;
}

.index-slider-prev:hover,
.index-slider-next:hover {
    opacity: .6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-slider { height: 400px; }

    .index-slide-caption h1 {
        font-size: 50px;
        line-height: 45px;
    }

    .index-slide-caption h2 {
        font-size: 36px;
    }

    .index-primary-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .index-slider { height: 300px; }

    .index-slide-caption h1 {
        font-size: 36px;
    }

    .index-slide-caption h2 {
        font-size: 28px;
    }
}


/* Hero Slider ends... */



/* ================================
   INDEX FEATURES SECTION (NAMESPACE: index-features-section-*)
=================================*/

/* Container */
.index-features-section {
    padding: 0;
    margin: 0 10%;
  }
  
  /* Feature box wrapper */
  .index-features-section-feature-box {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Row + columns */
  .index-features-section-feature-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .index-features-section-feature-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  /* Single box */
  .index-features-section-single-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
  }
  
  /* Images */
  .index-features-section-single-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* Box text wrapper */
  .index-features-section-box-text {
    position: absolute;
    color: #1e1e1e;
    z-index: 2;
  }
  
  /* Default text appearance */
  .index-features-section-trend-year {
    color: #1e1e1e;
    font-size: 22px;
    font-weight: 700;
    opacity: 0.32;
    display: inline-block;
  }
  
  .index-features-section-title {
    color: #1e1e1e;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.0;
    margin: 8px 0;
  }
  
  .index-features-section-trend-alert {
    color: #5b5b5b;
    font-size: 22px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Primary button style */
  .index-features-section-primary-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #D0D7DB;
    color: #1e1e1e;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 12px;
  }
  
  /* ----------------------------
     POSITIONING FOR EACH BOX
  -----------------------------*/
  
  /* First small box (top-left column, right-aligned text) */
  .index-features-section-single-box-first .index-features-section-box-text {
    right: 60px;
    top: 100px;
    text-align: right;
  }
  
  /* Second small box (left-aligned text) */
  .index-features-section-single-box-second .index-features-section-box-text {
    left: 56px;
    top: 150px;
    text-align: left;
  }
  
  /* Large right box (text sits left, larger sizes) */
  .index-features-section-single-box-large .index-features-section-box-text {
    left: 125px;
    top: 60px;
    text-align: left;
  }
  
  /* Tweaks for the second small box's year & alert */
  .index-features-section-single-box-second .index-features-section-trend-year {
    color: #fff;
    opacity: 1;
  }
  
  .index-features-section-single-box-large .index-features-section-trend-year {
    color: #838383;
    opacity: 1;
  }
  
  /* Large title sizing */
  .index-features-section-single-box-large .index-features-section-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.0;
  }
  
  /* Smaller trend alert for second box */
  .index-features-section-second-alert {
    font-size: 16px;
    letter-spacing: 4px;
  }
  
  /* Minor spacing */
  .index-features-section-box-text .index-features-section-trend-alert {
    display: block;
    margin-top: 6px;
  }
  
  /* Optional overlay to improve contrast (uncomment if needed) */
  .index-features-section-single-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
  }
 
  
 /* responsive */
  
  @media (max-width: 900px) {
  
    .index-features-section {
      margin: 0 5%;
    }
  
    /* Stack columns vertically on smaller screens */
    .index-features-section-feature-row {
      flex-direction: column;
    }
  
    /* Reset absolute offsets so text sits consistently on each image */
    .index-features-section-box-text {
      position: absolute;
      left: 20px !important;
      top: 20px !important;
      right: auto !important;
      text-align: left !important;
      z-index: 2;
    }
  
    .index-features-section-title { font-size: 32px; }
    .index-features-section-single-box-large .index-features-section-title { font-size: 40px; }
    .index-features-section-trend-year { font-size: 16px; }
    .index-features-section-trend-alert { font-size: 14px; letter-spacing: 1px; }
    .index-features-section-primary-btn { padding: 8px 16px; font-size: 14px; }
  }
  
  @media (max-width: 500px) {
    .index-features-section-box-text {
      top: 15px !important;
      left: 15px !important;
    }
  
    .index-features-section-title { font-size: 26px; }
    .index-features-section-single-box-large .index-features-section-title { font-size: 32px; }
    .index-features-section-trend-year { font-size: 14px; }
    .index-features-section-trend-alert { font-size: 12px; }
  }
  
/* Features section ends */


  /* ---------------------
   Latest Product Section
------------------------*/

.index-latest-product-section {
    padding: 50px 0;
    width: 100%;
}

.index-latest-product-section-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* TITLE + FILTER BOX */
.index-latest-product-section-filter-box {
    text-align: center;
    margin-bottom: 40px;
}

.index-latest-product-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e1e1e;
}

/* FILTER BUTTONS */
.index-latest-product-section-controls {
    padding: 0;
    margin: 0;
    list-style: none;
}

.index-latest-product-section-controls li {
    display: inline-block;
    margin: 0 18px;
    cursor: pointer;
    color: #777;
    font-size: 15px;
    transition: color 0.3s;
}

.index-latest-product-section-controls li:hover,
.index-latest-product-section-controls li.mixitup-control-active {
    color: #1e1e1e;
}

/* GRID LAYOUT */
.index-latest-product-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

/* .index-latest-product-section-col {} */

.index-latest-product-section-single {
    text-align: center;
    margin-bottom: 20px;
}

/* PRODUCT IMAGE */
.index-latest-product-section-figure {
    margin-bottom: 15px;
    position: relative;
}

.index-latest-product-section-image {
    width: 100%;
    height: 200px;
    border-radius: 6px;
}

/* PRODUCT TEXT */
.index-latest-product-section-product-name {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

/* .index-latest-product-section-product-text {} */

.index-latest-product-section-info-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 10px;
}

.index-latest-product-section-info-list li {
    padding: 6px;
}

.index-latest-product-section-price {
    font-size: 17px;
    font-weight: 700;
    color: #1e1e1e;
}

/* --------------  
   RESPONSIVE  
--------------*/

@media (max-width: 768px) {
    .index-latest-product-section-title {
        font-size: 22px;
    }

    .index-latest-product-section-controls li {
        margin: 0 10px;
        font-size: 14px;
    }

    .index-latest-product-section-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .index-latest-product-section-controls li {
        margin: 6px;
        font-size: 13px;
        display: inline-block;
    }

    .index-latest-product-section-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .index-latest-product-section-product-name {
        font-size: 14px;
    }

    .index-latest-product-section-price {
        font-size: 15px;
    }
}
/* Latest products section ends */


/*---------------------
  Lookbok Section
-----------------------*/

.lookbok-left {
	padding-top: 105px;
}

.lookbok-left .section-title {
	margin-bottom: 30px;
}

.lookbok-left .section-title h2 {
	line-height: 50px;
}

.lookbok-left p {
	color: #787878;
	font-size: 14px;
	line-height: 27px;
	font-weight: 500;
	margin-bottom: 40px;
}

.lookbok-left .primary-btn.look-btn {
	background-color: #B0BCC2;
}

.lookbok-pic {
	position: relative;
}

.lookbok-pic img {
	min-width: 100%;
	height: auto;
}

.lookbok-pic .pic-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	font-size: 135px;
	color: #fff;
	font-weight: 600;
	line-height: 97px;
}
/* Lookbook section ends */

/*---------------------
  Logo Section
-----------------------*/

.logo-section {
	padding: 70px 120px;
}

.logo-section .logo-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 120px;
	opacity: 0.1;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.logo-section .logo-item:hover {
	opacity: 1;
}

.logo-section .owl-carousel .owl-item img {
	display: block;
	width: auto;
}

/* logo section ends */