/********** Template CSS **********/
body {
   font-family: 'Poppins', sans-serif !important;
  overflow-x: hidden;
}

:root {

  /* --primary: #d5af33; */
  --primary: #E6FC81;
  --secondary: #fbfbfb !important;
  --light: #f8f8f8;
  --dark: #252525;
}

.text-secondary {
  color: var(--secondary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}


.bg-second {
  background-color: #fafafa !important;
}

h1,
.h1 {


font-weight: 700;
font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {

}

h2,
.h2 {
color: #414040;
font-weight: 700;
font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {
 
}

h3,
h4,
.h3,
.h4,
.fw-medium {
   font-family: 'Poppins', sans-serif !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
   font-family: 'Poppins', sans-serif !important;
}

p,
.p {
color: #5A5959;
font-family: 'Poppins', sans-serif !important;
}

ul,
li {
   font-family: 'Poppins', sans-serif !important;
}



figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}


/* Images Animation */

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

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.what-we-image-1 figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-image-1 figure img{
	aspect-ratio: 1 / 0.73;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #000;
  background-color: var(--primary);
  border-radius: 10px;
  font-weight: 600 !important;
}

.btn-secondary {
  color: #000;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  font-weight: 600 !important;
  border-color: #fff;
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.btn-square {
  width: 38px;
  height: 38px;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.shop-btn {
  padding: 10px 25px 10px 25px !important;
}



/* Title with underline */
.section-title-2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title-2::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: var(--primary);
  margin-top: 20px;
}

.section-title-3 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title-3::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: var(--primary);
  margin: 20px auto 0 auto;
  /* ✅ This centers the line */
}



/* **************************************** */
/* Responsive Screens */
/* **************************************** */


@media (max-width: 768px) {

  /* ************************ */
  /* Globally Fonts */
  /* ************************ */

    h1,
  .h1 {
    font-size: 24px;

  }

 h2,
  .h2 {
    font-size: 24px !important;

  }

  p,
  .p {

    font-size: 15px;
  }


  .section-title-2::after {
    width: 100px;
    margin-top: 10px !important;
  }

  .section-title-3::after {
    width: 100px;
    margin-top: 10px !important;
  }
}
/* ******************************** */
/* **************footer *********** */
/* Socket Footer Core Layout */
.nel-socket-footer {
  background-color: #111; /* Light off-white backdrop matching the image */
	color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
  width: 100%;
 
}

.nel-socket-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Element: Brand Logo sizing */
.nel-socket-brand {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.nel-socket-logo {
  max-height: 90px; /* Ensures clean proportionality */
  width: auto;
  object-fit: contain;
}

/* Center Element: Typography styling */
.nel-socket-copyright {
  flex: 2;
  text-align: center;
}

.nel-socket-copyright p {
  margin: 0;
  font-size: 14px;
  color: #a3a1a1;
  font-weight: 400;
}

/* Right Element: Social Anchors */
.nel-socket-socials {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 18px; /* Balanced spacing between icons */
}

.nel-socket-icon {
  color: #d4d1d1;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nel-socket-icon:hover {
  color: #a09d9d; /* Soft hover indicator */
}

/* Responsive Adaptive Viewports */
@media (max-width: 768px) {
  .nel-socket-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nel-socket-brand, 
  .nel-socket-copyright, 
  .nel-socket-socials {
    flex: none;
    justify-content: center;
    text-align: center;
  }
}
/* *******************
footer styles ends 
*********************** */

/* *************************
home page styles starts 
*************************** */
.nel-main-header {
  
  background-color: #111;
	color: #fff;
}

/* --- Top Bar Styling --- */
.nel-brand-img {
  max-height: 90px;
  object-fit: contain;
}

/* Optimized Search Bar Layout */
.nel-search-form {
  border: 1px solid #ebeebe;
  border-radius: 4px;
  background-color: #ffffff;
  height: 45px;
}

.nel-search-input {
  border: none !important;
  box-shadow: none !important;
  font-size: 14px;
  padding-left: 15px;
  color: #777777 !important;
  height: 100%;
}

/* Select Category Custom Dropdown Layout */
.nel-category-dropdown {
  border-left: 1px solid #ebeebe;
  height: 100%;
}

.nel-select-trigger {
  border: none !important;
  box-shadow: none !important;
  font-size: 12px;
  font-weight: 600;
  color: #666666 !important;
  background: #fcfcfc;
  padding: 0 25px 0 15px;
  height: 100%;
  display: d-flex;
  align-items: center;
  border-radius: 0;
}

.nel-select-trigger::after {
  margin-left: 10px;
  vertical-align: middle;
  color: #888888 !important;
}

/* Select Category Dropdown Menu List styling */
.nel-select-menu {
  border: 1px solid #ebeebe !important;
  border-radius: 0 0 4px 4px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 10px 0 !important;
  min-width: 220px !important;
  margin-top: 1px !important;
}

.nel-select-menu .dropdown-item {
  font-size: 14px;
  color: #777777 !important;
  padding: 10px 20px;
  transition: all 0.2s;
}

.nel-select-menu .dropdown-item:hover {
  background-color: #f9f9f9;
  color: #000000 !important;
}

/* Search Action Button */
.nel-search-btn {
  border: none;
  background: transparent;
  color: #555555 !important;
  padding: 0 18px;
  border-left: 1px solid #ebeebe;
  height: 100%;
  border-radius: 0;
}

.nel-search-btn:hover {
  background-color: #f7f7f7 !important;
}

/* Account Info & Shopping Bag Badge */
.nel-account-link {
  font-size: 13px;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nel-cart-link {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
}

.nel-cart-badge {
  background-color: #000000;
  color: #ffffff !important;
  font-size: 10px;
  padding: 3px 6px;
  font-weight: normal;
}

/* --- Navigation & Browse Categories Dropdown Panels --- */
.nel-nav-bar {
  background-color: #ffffff;
}

.nel-browse-dropdown-wrapper {
  height: 100%;
}

.nel-category-toggle {
  background-color: #000000;
  color: #ffffff !important;
  border: none;
  width: 260px;
  height: 52px;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 0;
}

/* Custom Hamburger CSS Lines */
.nel-hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16px;
  height: 12px;
}
.nel-hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.nel-arrow-down {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Browse Categories Menu Panel Layout (Matches Image 1) */
.nel-browse-menu {
  border: 1px solid #ebeebe !important;
  border-radius: 0 !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  padding: 0 !important;
  width: 260px !important;
  margin: 0 !important;
}

.nel-browse-menu li {
  border-bottom: 1px solid #f5f5f5;
}
.nel-browse-menu li:last-child {
  border-bottom: none;
}

.nel-browse-menu .dropdown-item {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #222222 !important;
  transition: background-color 0.2s ease;
}

.nel-browse-menu .dropdown-item:hover {
  background-color: #fbfbfb;
  color: #000000 !important;
}

/* Center Horizontal Navigation Links */
.nel-nav-item {
  font-size: 13px;
  font-weight: 700;
  color: #222222 !important;
  letter-spacing: 0.5px;
  padding: 15px 0 !important;
}

.nel-nav-item:hover{
  color: #888888 !important;
}

.nel-special-offer {
  font-size: 13px;
  color: #000000 !important;
  letter-spacing: 0.5px;
  padding: 15px 0 !important;
}

/* --- Clean Responsive Breakpoints --- */
@media (max-width: 767.98px) {
  .nel-category-toggle {
    width: 100vw; /* Clean viewport span across smartphones */
  }
  
  .nel-browse-menu {
    width: 100vw !important;
  }

  .nel-search-form {
    margin-top: 5px;
  }
  
  .nel-category-dropdown {
    display: none; /* Auto-collapses secondary desktop query configurations */
  }
  
  .nel-nav-item, 
  .nel-special-offer {
    padding: 12px 20px !important;
    border-bottom: 1px solid #f1f1f1;
  }
}
/* ==========================================================
   Unique Left-to-Right Continuous Marquee Hero CSS
   ========================================================== */
.unique-marquee-hero {
  width: 100%;
  overflow: hidden; 
  background-color: #fff;
  position: relative;
}

/* The wrapper container holding all 4 full-width images */
.unique-marquee-hero .unique-marquee-track {
  display: flex;
  width: 400%; /* 4 slides * 100vw = 400% */
  /* 6 seconds total cycle time (3s per distinct image) */
  animation: forwardSlider 9s infinite; 
}

/* Individual slide styling */
.unique-marquee-hero .unique-marquee-slide {
  width: 99vw; /* Takes exactly one full screen width */
  flex-shrink: 0;
}

/* Image responsiveness without cropping */
.unique-marquee-hero .unique-marquee-slide img {
  width: 100%;
  height: 79vh; 
  object-fit: contain; 
  object-position: center;
  display: block;
}

/* ==========================================================
   Continuous Right-to-Left CSS Animation Logic
   ========================================================== */
@keyframes forwardSlider {
  /* --- Image 1 Displays (0% to 45%) --- */
  0%, 45% {
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1); /* Smooth slide out */
  }
  
  /* --- Slides Left into Image 2 (50% to 95%) --- */
  50%, 95% {
    transform: translateX(-25%); /* Moves left by 1 slide width */
    animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  }
  
  /* --- Slides Left into Duplicate Image 1 --- */
  99.99% {
    transform: translateX(-50%); /* Moves left by another slide width */
  }
  
  /* --- Instantly resets back to 0% position without visual jump --- */
  100% {
    transform: translateX(0);
  }
}

/* ==========================================================
   Responsive Breakpoints
   ========================================================== */

/* Tablets */
@media (max-width: 991px) {
  .unique-marquee-hero .unique-marquee-slide img {
    height: 55vh;
  }
}

/* Mobile Phones */
@media (max-width: 575px) {
  .unique-marquee-hero .unique-marquee-slide img {
    height: 40vh;
  }
}
/* ==========================================================
   Premium Featured Categories Layout Styling
   ========================================================== */

/* Scoped parent wrapper to prevent styling conflicts */

.premium-categories-section .unique-section-header h2 {
  color: #111625 !important;
  letter-spacing: 1.5px;
  font-size: 1.85rem;
}

/* Base structural setup for the bubble anchor tag */
.premium-categories-section .category-bubble-wrapper {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 50%;
  padding: 12px; 
  border: 1px solid #e5e5e5;
  transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

/* Enforces strict circle proportions using aspect-ratio */
.premium-categories-section .bubble-lg {
  max-width: 480px;
  aspect-ratio: 1 / 1;
}

.premium-categories-section .bubble-sm {
  max-width: 235px;
  aspect-ratio: 1 / 1;
}

/* Interior mask wrapper containing image and badge overlay clip context */
.premium-categories-section .bubble-inner-card {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

/* Sleek Image Positioning and Scale Handlers */
.premium-categories-section .bubble-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slight dimming layer matching image look */
.premium-categories-section .bubble-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.08); 
  transition: background 0.4s ease;
}

/* High-end Minimalist Badge button formatting */
.premium-categories-section .bubble-badge-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  color: #212529;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.8px;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: auto;
  min-width: 140px;
}

/* Adjust button text parameters relative to bubble dimensions scale */
.premium-categories-section .bubble-lg .bubble-badge-btn {
  font-size: 16px;
  padding: 14px 34px;
  min-width: 200px;
}

/* ==========================================================
   Interaction Hover Mechanics
   ========================================================== */
.premium-categories-section .category-bubble-wrapper:hover {
  border-color: #a8a8a8;
}

.premium-categories-section .category-bubble-wrapper:hover .bubble-img {
  transform: scale(1.05); 
}

.premium-categories-section .category-bubble-wrapper:hover .bubble-overlay {
  background: rgba(0, 0, 0, 0.18); 
}

.premium-categories-section .category-bubble-wrapper:hover .bubble-badge-btn {
  background-color: #111625;
  color: #ffffff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================
   Responsive Adaptation Logic
   ========================================================== */
@media (max-width: 1199px) {
  .premium-categories-section .bubble-lg .bubble-badge-btn {
    font-size: 15px;
    padding: 12px 28px;
  }
}

@media (max-width: 575px) {
 
  .premium-categories-section .bubble-sm .bubble-badge-btn {
    font-size: 16px;
    padding: 6px 10px;
    min-width: 95px;
  }
  .premium-categories-section .bubble-lg .bubble-badge-btn {
    font-size: 16px;
    padding: 10px 20px;
    min-width: 140px;
  }
  .premium-categories-section .category-bubble-wrapper {
    padding: 6px;
  }
}
/* ==========================================================
   Premium Right-To-Left Ticker Bar Styling
   ========================================================== */

.premium-ticker-section {
  width: 100%;
  background-color: #ffc007; 
  color: #fff !important; 
  overflow: hidden; 
  padding: 14px 0; 
  user-select: none; 
  display: flex;
  align-items: center;
  
}

/* Master internal container moving the two identical groups side-by-side */
.premium-ticker-section .ticker-infinite-track {
  display: flex;
  width: max-content;
  animation: tickerScrollRightToLeft 25s linear infinite;
}

/* Structural groups holding items */
.premium-ticker-section .ticker-content-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%; 
}

/* Isolated message segment points containing typography properties */
.premium-ticker-section .ticker-item {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0 40px; 
}

/* Targeted styling alignment adjustments for Font Awesome elements */
.premium-ticker-section .ticker-item i {
  margin-left: 8px; 
  margin-right: 8px; 
  font-size: 0.95rem;
  color: #4950575c; 
}


.premium-ticker-section .fa-fire-flame-curved { color: #ff5a1d !important; }
.premium-ticker-section .fa-wand-magic-sparkles { color: #ffd700 !important; }
.premium-ticker-section .fa-square-check { color: #2ec4b6 !important; }

/* ==========================================================
   Hardware-Accelerated Right-To-Left Marquee Engine
   ========================================================== */
@keyframes tickerScrollRightToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
   
    transform: translate3d(-100%, 0, 0);
  }
}

/* ==========================================================
   Responsive Viewport Balance Handlers
   ========================================================== */
@media (max-width: 767px) {
  .premium-ticker-section {
    padding: 10px 0; 
  }
  .premium-ticker-section .ticker-item {
    font-size: 0.75rem; 
    letter-spacing: 1px;
    padding: 0 25px;
  }
}
/* ==========================================================================
   LUXURY PRODUCTS SECTION STYLESHEET
   ========================================================================== */

/* 1. Section Container & Headers */
.luxury-products-section {
  position: relative;
  background-color: #ffffff;
}

.luxury-main-header h2 {
  color: #111111;
  letter-spacing: 0.15em;
  font-size: 1.75rem;
}

.luxury-main-header p {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #777777 !important;
}

/* 2. Category Filter Navigation Tabs */
.luxury-tabs-nav {
  gap: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

.luxury-tabs-nav .tab-trigger {
  background: none;
  border: none;
  font-size: 0.85rem;
  text-uppercase: uppercase;
  letter-spacing: 0.1em;
  color: #888888;
  padding: 5px 10px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  position: relative;
  font-weight: 500;
}

.luxury-tabs-nav .tab-trigger:hover {
  color: #111111;
}

.luxury-tabs-nav .tab-trigger.active {
  color: #111111;
  font-weight: 600;
}

.luxury-tabs-nav .tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
}

/* 3. Slider Navigation Buttons (Side Arrows) */
.luxury-products-section .slider-nav-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e5e5e5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #111111;
}

.luxury-products-section .slider-nav-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.luxury-products-section .btn-prev {
  left: -25px;
}

.luxury-products-section .btn-next {
  right: -25px;
}

/* 4. Tab Content Dynamic Panels */
.luxury-tab-panel {
  display: none;
}

.luxury-tab-panel.active {
  display: block;
}

/* 5. Master Layout Matrix: 2 Rows x 4 Columns Grid */
.luxury-products-section .luxury-products-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 cards per row */
  gap: 40px 24px;                        /* 40px spacing between rows, 24px space between cards */
  padding: 10px 2px;
  width: 100%;
}

.luxury-products-section .luxury-product-card-wrapper {
  width: 100%;
  max-width: 100%;
}

/* 6. Premium Structural Product Cards */
.luxury-card-inner {
  background: #ffffff;
  transition: transform 0.3s ease;
}

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

.img-badge-box {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
 
}

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

/* 7. Badges and Status Tags */
.badge-tag {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.discount-tag {
  top: 15px;
  left: 15px;
  background-color: #111111;
  color: #ffffff;
}

.sold-out-tag {
  top: 15px;
  left: 15px;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #111111;
  text-transform: uppercase;
  font-size: 0.6rem;
  line-height: 1;
  text-align: center;
}

/* Offset discount tag down if Sold Out tag shares space */
.sold-out-tag + .alert-tag,
.discount-tag + .status-tag {
  top: 64px;
}

.alert-tag.hot-tag {
  top: 15px;
  left: 15px;
  background-color: #e63946;
  color: #ffffff;
  text-transform: uppercase;
}

/* Adjust tag stacks if all 3 exist */
.discount-tag + .sold-out-tag { top: 64px; }
.sold-out-tag + .hot-tag { top: 64px; }

/* 8. Card Typography Details */
.product-title {
  font-size: 0.92rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 8px;
  height: 40px; /* Enforces text boundary uniform symmetry alignment */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-tier {
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #b1b1b1;
  margin-right: 8px;
  font-size: 0.88rem;
}

.current-price {
  color: #111111;
  font-weight: 700;
  font-size: 0.95rem;
}

/* 9. Action Buttons Styles */
.select-options-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  text-decoration: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  height: 42px;
  padding: 0 20px;
  width: auto;
  min-width: 160px;
  transition: background-color 0.3s ease;
  border: none;
}

.select-options-action-btn:hover {
  background-color: #333333;
  color: #ffffff;
}

.select-options-action-btn .btn-icon-box {
  display: none; /* Keeps layout clean like your screenshot mockup */
}


/* ==========================================================================
   10. RESPONSIVE VIEWPORT BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Small Desktops (Less than 1200px) */
@media (max-width: 1199px) {
  .luxury-products-section .luxury-products-grid-layout {
    grid-template-columns: repeat(3, 1fr); /* 3 Columns Layout */
    gap: 30px 16px;
  }
  .luxury-products-section .slider-nav-btn {
    display: none !important; /* Hides side arrows gracefully when grid shifts container bounds */
  }
}

/* Small Tablets & Landscape Mobile View (Less than 768px) */
@media (max-width: 767px) {
  .luxury-products-section .luxury-products-grid-layout {
    grid-template-columns: repeat(2, 1fr); /* 2 Columns Layout */
    gap: 24px 12px;
  }
  
  .luxury-main-header h2 {
    font-size: 1.4rem;
  }
}

/* Ultra Small Portrait Mobile Screens (Less than 480px) */
@media (max-width: 479px) {
  .luxury-products-section .luxury-products-grid-layout {
    grid-template-columns: repeat(2, 1fr); /* Retains density structural balance grid layout */
    gap: 20px 8px;
  }
  
  .product-title {
    font-size: 0.8rem;
    height: 36px;
  }
  
  .current-price, .old-price {
    font-size: 0.82rem;
  }
  
  .select-options-action-btn {
    font-size: 0.72rem;
    height: 38px;
    padding: 0 10px;
    min-width: 100%; /* Spans button cleanly across card body width boundaries */
  }
  
  .badge-tag {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }
}
/* ******************************
 home page ends  
******************************* */

/* **********************************
about page starts 
******************************* */
/* Core Section Layout */
.nel-about-split-section {
  background-color: #fafafa !important; /* Soft neutral studio background */
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

.nel-about-split-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  /* 3-Column layout: Hero text takes more horizontal presence */
  grid-template-columns: 1.2fr 1fr 1fr; 
  gap: 48px;
  align-items: flex-start;
}

/* Left Column Styling */
.nel-about-hero-col {
  display: flex;
  flex-direction: column;
}

.nel-about-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #111111 !important;
  margin-bottom: 16px;
  display: inline-block;
}

.nel-about-main-heading {
  font-size: 32px;
  line-height: 1.35;
  font-weight: 700;
  color: #1c1c1c !important;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Content Columns Styling (Mission & Vision) */
.nel-about-content-col {
  display: flex;
  flex-direction: column;
  padding-top: 4px; /* Minor optical adjustment to align with hero titles */
}

.nel-about-col-title {
  font-size: 16px;
  font-weight: 600;
  color: #8a1d1d !important; /* Deep premium crimson accent title */
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.nel-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555555 !important;
  margin: 0;
  font-weight: 400;
}

.nel-about-text strong {
  color: #222222 !important;
  font-weight: 600;
}

/* Responsive Viewports */
@media (max-width: 992px) {
  .nel-about-split-container {
    /* Shifts to two columns on mid-sized tablets */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .nel-about-hero-col {
    grid-column: span 2; /* Main heading takes full horizontal width */
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .nel-about-split-section {
    padding: 50px 0;
  }

  .nel-about-split-container {
    /* Stacked mobile arrangement */
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nel-about-hero-col {
    grid-column: span 1;
  }

  .nel-about-main-heading {
    font-size: 26px; /* Sizing balance optimization for smaller screens */
  }
}
/* Unique About Section Base */
.about-showcase-wrapper {
  background-color: #ffffff !important;
  padding: 100px 0;
  overflow: hidden;
}

/* Elegant Section Label */
.about-section-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8e8e93 !important;
  margin-bottom: 16px;
  font-weight: 500;
}

/* Sophisticated Typography */
.about-display-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111111 !important;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* Paragraph Grouping & Spacing */
.about-paragraph-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-lead-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #2c2c2e !important;
  font-weight: 500;
}

.about-body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #636366 !important;
}

/* Sleek Image Presentation */
.about-frame-container {
  position: relative;
  padding: 10px;
  background-color: #ffffff;
  display: inline-block;
  width: 100%;
}

.about-showcase-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 65%;
  /* Premium, very soft subtle shadow instead of heavy glow */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Clean interactive feel */
.about-showcase-img:hover {
  transform: translateY(-4px);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .about-showcase-wrapper {
    padding: 70px 0;
  }
  
  .about-editorial-block {
    text-align: left;
    padding-right: 0;
  }
  
  .about-display-heading {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  
  .about-frame-container {
    max-width: 550px;
    margin: 0 auto;
    display: block;
  }
}
/* Container section with assets background image */
.luxury-counter-section {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('https://shopthreadsjoy.btpret.com/wp-content/uploads/2026/06/WhatsApp_Image_2026-05-06_at_8.56.54_202605080134.jpeg_202605292334-e1780431502575.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  color: #ffffff !important;
  display: flex;
  align-items: center;
}

/* Left Content Styles */
.luxury-statement-block {
  max-width: 420px;
}

.luxury-statement-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff !important;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.luxury-underline-accent {
  display: inline-block;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 6px;
}

.luxury-subtext-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff !important;
}

/* Right Side 2x2 Stats Grid Styles */
.luxury-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  position: relative;
}

/* Individual Stat block formatting */
.luxury-stat-item {
  padding: 20px 30px;
  /* Syncs standard subtle borders to replicate the crosshair layout in image_2edea7.png */
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.luxury-stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff !important;
  margin-bottom: 8px;
}

.luxury-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase;
}

/* Responsive Handling */
@media (max-width: 991.98px) {
  .luxury-counter-section {
    padding: 80px 0;
  }
  
  .luxury-statement-block {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .luxury-statement-title {
    font-size: 2rem;
  }

  .luxury-stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  /* Stack grid into a single column structure on mobile phones */
  .luxury-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .luxury-stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 25px 0;
  }
  
  .luxury-stat-item:last-child {
    border-bottom: none !important;
  }
}
/* Base Section Styling */
.boutique-featured-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Luxury Accent Section Title */
.boutique-section-title {
  color: #5c1d24 !important; /* Elegant Deep Maroon/Burgundy as shown in image_2e6a48.png */
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

/* Entire Card Blueprint (Clickable Context Anchor) */
.boutique-product-card {
  position: relative;
  background: #ffffff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Subtle elevation lift on hover */
.boutique-product-card:hover {
  transform: translateY(-5px);
}

/* Image Wrapper Layout */
.boutique-img-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}

.boutique-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.boutique-product-card:hover .boutique-card-img {
  transform: scale(1.03);
}

/* Circular Dark Discount Label */
.boutique-discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #000000;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  letter-spacing: -0.5px;
}

/* Content Area Layout */
.boutique-card-body {
  padding: 18px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title Header Anchor Integration */
.boutique-product-name {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 42px; /* Smooth height matching across uneven rows */
}

.boutique-card-link {
  color: #2b2b2b !important;
  text-decoration: none;
}

.boutique-card-link:hover {
  color: #000000 !important;
}

/* Price Tags formatting */
.boutique-price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.boutique-price-old {
  color: #b5b5b5 !important;
  text-decoration: line-through;
  font-weight: 400;
}

.boutique-price-current {
  color: #000000 !important;
  font-weight: 700;
}

/* Clean Solid Button Interface Wrapper */
.boutique-action-container {
  margin-top: auto; /* Pushes action block cleanly to bottom boundary */
}

.boutique-btn-action {
  display: inline-block;
  background-color: #000000;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 22px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

/* Visual change state triggered by card hover */
.boutique-product-card:hover .boutique-btn-action {
  background-color: #333333 !important;
}




/* **********************************
about page ends 
********************************** */


/* Shop page extra header hide */
.woocommerce-shop #sidebar{
	display: none !important;
}

.single-product #sidebar{
	display: none !important;
}

.boutique-dynamic-grid{
	display: none !important;
}

.container-xxxl {
    max-width: 1240px !important;
    margin: 0 auto !important;
	padding: 50px 10px 50px 10px !important;
}

.woocommerce-shop .content-area {
    max-width: 1240px !important;
    margin: 0 auto !important;
	padding: 50px 20px 50px 20px !important;
}

.single-product .content-area {
    max-width: 1240px !important;
    margin: 0 auto !important;
	padding: 50px 10px 50px 10px !important;
}

#sidebar{
	display: none !important;
}

.content-area {
    max-width: 1240px !important;
    margin: 0 auto !important;
	padding: 50px 10px 50px 10px !important;
}


.woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products.columns-3 li.product {
    width: 100% !important;
}

@media (max-width: 600px) {
    /* Space added after body, and added .woocommerce parent for extra weight */
    body .woocommerce ul.products,
    body ul.products {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        gap: 24px 12px !important;
    }
	

}