/* ============================================
   D-TREYA - Modern Beautiful UI Design
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color:  green;
    --accent-gradient: linear-gradient(135deg, green0%, #e07a5f 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --text-muted: #666;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    overflow-x: hidden;
}

.main{
    max-width: 1500px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    /* position: relative; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    height: auto;
    align-items: center;
}

/* Glassmorphism Header - Sticky Top */
.custom-header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: fixed !important;
    width: 100%;
    top: 0 !important;
    z-index: 9999 !important;
    margin: 0 !important;
}

.custom-header:hover {
    box-shadow: var(--shadow-medium);
}

.logo_img{
    width: 60px;
    aspect-ratio: 4 /3;
    overflow: hidden;
}
.logo_img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

.navbar{
    position: relative;
}

/* Search Bar Enhancement */

.container-search-box{
    width: 65%;
}
.search-container {
    background: #f8f8f8;
    border-radius: 50px;
    width: 100%;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    padding: 0 10px;
}



.search-container:focus-within {
    background: #fff;
    box-shadow: 0 4px 20px rgba(196, 94, 61, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.search-input {
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-input:focus {
    box-shadow: none !important;
}

/* Navigation Icons */
.nav-icon {
    /* font-size: 1.5rem; */
     transition: var(--transition-smooth);
   /* position: relative;
    color: #1a1a1a; */
}

.nav-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-icon i{
    font-size: 20px;
}


.nav-icon:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

.nav-icon:hover::after {
    width: 80%;
}

/* Secondary Navigation */
.secondary-header {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    position: sticky;
    top: 55px;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* display: none; */
}

.show-menu-one{
    display: none;
}

.secondary-header.nav-hidden {
    top: -100px;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.nav-links li a:hover::before {
    width: 100%;
}

/* Menu Button */
.menu-toggle-btn {
    transition: var(--transition-smooth);
    border-radius: 12px;
    z-index: 10000;
    position: relative;
}

.menu-toggle-btn:hover {
    background: rgba(196, 94, 61, 0.1);
    transform: scale(1.05);
}

/* Mobile Menu Button - Hidden on desktop, visible on mobile/tablet */
.d-lg-none {
    display: flex !important;
    /* align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px; */
    z-index: 10000;
}



/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    background-color: #fafafa;
    height: auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(196, 94, 61, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 94, 61, 0.05) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    height: 85vh;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-item  {
    overflow: hidden;
    /* margin-top: 50px; */
    aspect-ratio: 2/1;
    /* height: 100%; */
    width: 100%;
}
.carousel-item  .hero-img{
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.carousel-item:hover .hero-img {
    transform: scale(1.02);
}

/* Carousel Controls Enhancement */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    margin: 0 20px;
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(147, 146, 146, 0.235);
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent-color);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(10);
}

#hero:hover .carousel-control-prev,
#hero:hover .carousel-control-next {
    opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(196, 94, 61, 0.3);
    border: none;
    margin: 0 6px;
    transition: var(--transition-smooth);
}

.carousel-indicators button.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ============================================
   FEATURE CATEGORIES
   ============================================ */
/* SECTION */
#feature{
    width:100%;
    padding:60px 0;
    background: linear-gradient(135deg, #fff, #fff7f2);
}

/* CARD */
.feature-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    background:#000;
}

/* HOVER LIFT */
.feature-wrapper:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

/* IMAGE */
.feature-img{
    width:100%;
    height:240px;
    object-fit:cover;
    object-position:top;
    transition:transform 0.8s ease;
}

/* ZOOM + PARALLAX FEEL */
.feature-wrapper:hover .feature-img{
    transform:scale(1.15) rotate(1deg);
}

/* DARK OVERLAY */
.feature-wrapper::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
    z-index:1;
    transition:0.4s;
}

/* ORANGE GLOW OVERLAY */
.feature-wrapper::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, rgba(0, 252, 29, 0.4), transparent);
    opacity:0;
    z-index:1;
    transition:0.4s;
}

/* HOVER COLOR EFFECT */
.feature-wrapper:hover::after{
    opacity:1;
}

/* SHINE EFFECT ✨ */
.feature-wrapper span{
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform:skewX(-25deg);
    z-index:2;
}

.feature-wrapper:hover span{
    animation:shine 0.8s forwards;
}

@keyframes shine{
    100%{
        left:125%;
    }
}

/* TEXT */
.feature-text{
    position:absolute;
    bottom:20px;
    left:0;
    width:100%;
    padding:0 20px;
    color:#fff;
    font-size:15px;
    text-align:center;
    font-weight:700;
    letter-spacing:1px;
    z-index:3;
    text-transform:uppercase;
    transition:0.3s;
    text-shadow:0 4px 15px rgba(0,0,0,0.5);
}

/* TEXT ANIMATION */
.feature-wrapper:hover .feature-text{
    bottom:35px;
    letter-spacing:1.5px;
    color:#fff;
}

/* SMALL TAG (NEW 🔥) */
.feature-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:#F67110;
    color:#fff;
    padding:4px 10px;
    font-size:11px;
    border-radius:20px;
    z-index:3;
    font-weight:600;
}

/* GLASS BORDER EFFECT */
.feature-wrapper{
    backdrop-filter: blur(10px);
    /* border:1px solid rgba(255,255,255,0.1); */
}




/* New Categories section */


/* ============================================
   MATCH THE MOOD
   ============================================ */
.Match-the-mood {
    margin-top: 60px;
   
}

.mood-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.mood-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 94, 61, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mood-wrapper:hover::after {
    opacity: 1;
}

.mood-wrapper:hover .mood-img {
    transform: scale(1.08);
}

.mood-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mood-img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    padding: 0px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-slider {
    display: inline-flex;
    gap: 12px;
    padding: 15px 20px;
    width: max-content;
    background: #fff;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.filter-slider button {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 2px solid #eee;
    background: transparent;
    color: #333;
}

.filter-slider button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* .filter-slider button.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(196, 94, 61, 0.4);
} */

/* CARD */
.bri-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.bri-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.bri-img{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f8f8f8;
}

.bri-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top;
  transition:.5s;
}

.bri-card:hover .bri-img img{
  transform:scale(1.1);
}

/* RIBBON */
.bri-ribbon{
  position:absolute;
  top:10px;
  left:-5px;
  padding:5px 12px;
  font-size:12px;
  font-weight:600;
  color:#fff;
  border-radius:4px;
}

.bri-sale{
  background:#ff3d3d;
}

.bri-out{
  background:#555;
}

/* WISHLIST */
.bri-wishlist{
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  border:none;
  border-radius:50%;
  width:35px;
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
}

.bri-wishlist.active {
  /* color:red; */
  background: #008000;
  color: white;
}

.bri-wishlist:hover{
  background:#008000;
  color:#fff;
}

/* HOVER ICONS */
.bri-hover-icons{
  position:absolute;
  bottom:-50px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  transition:.3s;
}

.bri-hover-icons a{
  background:#fff;
  width:35px;
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#000;
}

.bri-card:hover .bri-hover-icons{
  bottom:10px;
}

/* CONTENT */
.bri-content{
  padding:15px;
}

/* TITLE */
.bri-title{
  display:block;
  font-size:15px;
  font-weight:600;
  color:#222;
  text-decoration:none;
}

/* RATING */
.bri-rating{
  font-size:13px;
  color:#f5a623;
  margin:5px 0;
}

.bri-rating span{
  color:#777;
  font-size:12px;
}

/* PRICE */
.bri-price-box{
  display:flex;
  align-items:center;
  gap:8px;
}

.bri-price{
  font-weight:700;
  font-size:16px;
}

.bri-old-price{
  text-decoration:line-through;
  color:#999;
  font-size:13px;
}

.bri-discount{
  color:#28a745;
  font-size:12px;
  font-weight:600;
}

/* SIZES */
.bri-sizes{
  margin:10px 0;
}

.bri-sizes span{
  border:1px solid #ddd;
  padding:3px 8px;
  margin-right:5px;
  font-size:12px;
  cursor:pointer;
  transition:.2s;
}

.bri-sizes span:hover{
  background:#000;
  color:#fff;
}

/* BUTTON */
.bri-cart-btn{
  width:100%;
  background:#000;
  color:#fff;
  border:none;
  padding:8px;
  border-radius:6px;
  font-size:14px;
  transition:.3s;
}

.bri-cart-btn:hover{
  background:green;
}

/* WISHLIST */

/* .wishlist{
position:absolute;
top:12px;
right:12px;
width:34px;
height:34px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#333;
text-decoration:none;
font-size:16px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
transition: .3s ease;
}

.wishlist:hover{
color:white;
background:#005F0D;
}
.wishlist.active{
color:white;
background:#005F0D;
} */

/* ICONS */

/* .card-icons{
position:absolute;
bottom:12px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
opacity:0;
transition:.3s;
}

.ecom-card:hover .card-icons{
opacity:1;
}

.card-icons a{
width:36px;
height:36px;
background:#111;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:16px;
transition:.3s;
}

.card-icons a:hover{
transform:scale(1.1);
} */

/* CONTENT */

.ecom-content{
padding:14px;
text-align:center;
}

.product-name{
font-size:14px;
font-weight:600;
color:#222;
text-decoration:none;
display:block;
margin-bottom:6px;
}

.product-name:hover{
color:#000;
}

.price-box{
display:flex;
justify-content:center;
gap:8px;
align-items:center;
}

.price{
font-size:16px;
font-weight:700;
color:#111;
}

.old-price{
font-size:13px;
color:#999;
text-decoration:line-through;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    z-index: 3;
}

.product-container:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}
.show_more a{
    text-decoration: none;
    color: black;
}
.show_more:hover a{
    /* text-decoration: none; */
    color: rgb(255, 255, 255);
}

.quick-view-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ============================================
   SHOP YOUR SIZE BANNER
   ============================================ */
.shop-size-banner {
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.shop-size-banner img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.shop-size-banner:hover img {
    transform: scale(1.03);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
#shop-video {
    padding: 20px;
    margin: 50px 0;
}

.shop-video-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.shop-video-col {
    padding: 0;
}

.shop-video-element {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.shop-text-col {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.shop-text-col::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 94, 61, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.shop-video-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    color: #fff;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
}

.shop-video-desc {
    font-size: 1.1rem;
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 20px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 94, 61, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

/* ============================================
   VIEW MORE BUTTON
   ============================================ */
#view-more,
#hide-more {
    padding: 14px 40px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: 2px solid #333;
    background: transparent;
    color: #333;
}

#view-more:hover,
#hide-more:hover {
    /* background: var(--accent-gradient);
    border-color: transparent;
    color: #fff; */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 94, 61, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    font-size: 13px;
    background: #1a1a1a;
    color: #fff;
    /* margin-top: 80px; */
}

#about {
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    padding: 60px 0 30px;
}

#about h5 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

#about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Footer Links */
footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 2.2;
    transition: var(--transition-smooth);
    display: inline-block;
}

footer a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    transition: var(--transition-smooth);
    text-decoration: none;
}

/* footer i {
    color: var(--accent-color);
} */

/* Footer Section Titles */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Footer Company Info */
.footer-company {
    text-align: center;
    padding: 30px 0;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* Newsletter */
.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 14px 20px;
    color: #fff;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(196, 94, 61, 0.2);
    outline: none;
}

.newsletter-btn {
    background: var(--accent-gradient);
    border: none;
    border-radius: 50px;
    padding: 14px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 94, 61, 0.4);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--accent-gradient);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(196, 94, 61, 0.4);
}

/* Copyright */
.copyright {
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.copyright span {
    color: var(--accent-color);
}

/* ============================================
   SIDE MENU
   ============================================ */
.offcanvas {
    background: #fff;
}

.offcanvas-header {
    background: var(--accent-gradient);
    color: #fff;
}

.offcanvas-title {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.offcanvas-body img{
    object-fit: cover;
    object-position: top;
    overflow: hidden;
}

.offcanvas-body .nav-link {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition-smooth);
    color: #333;
}

.offcanvas-body .nav-link:hover {
    background: rgba(196, 94, 61, 0.1);
    color: var(--accent-color);
    transform: translateX(10px);
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-strong);
}

.modal-header {
    border: none;
    background: transparent;
}

.btn-close {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow-soft);
}

.modal-body {
    padding: 0;
}

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

/* Login Form */
.login-form {
    padding: 50px 40px;
}

.login-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.login-input {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.login-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(196, 94, 61, 0.1);
    outline: none;
}

.login-btn {
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 94, 61, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

/* Stagger delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================


/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-accent {
    color: var(--accent-color);
}

.bg-accent {
    background: var(--accent-gradient);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.shadow-strong {
    box-shadow: var(--shadow-strong);
}

.rounded-xl {
    border-radius: var(--border-radius);
}

.transition-smooth {
    transition: var(--transition-smooth);
}

/* Margin & Padding Utilities */
.mt-section {
    margin-top: 80px;
}

.mb-section {
    margin-bottom: 80px;
}

.py-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Grid Gap */
.g-4-custom {
    gap: 25px;
}

/* Hide/Show Sections */
#new-popular {
    display: none;
}

#blanck {
    height: 10vh;
    background: #fff;
}

/* Misc */
.ls-2 {
    letter-spacing: 2px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

/* Badge */
.badge {
    font-size: 10px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-gradient);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a84d31;
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: #fff;
}




/* OFFER HEADER  */
.offer-header {
    background: linear-gradient(90deg, #111, #1f1f1f);
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 050px;
    z-index: 9999;
    position: fixed;

}

.offer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 15px;
    color: #fff;
    position: relative;
}

.offer-badge {
    background: #ff3d3d;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.offer-text {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.offer-text strong {
    color: #ffcc00;
}

.offer-close {
    position: absolute;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
}

.offer-close:hover {
    opacity: 1;
}




.nav-link i{
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
}
.nav-link:hover .insta {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
}
.nav-link:hover .facebook {
    background: linear-gradient(45deg, #1877F2, #0A58CA);
}
.nav-link:hover .linkedin {
background: linear-gradient(45deg, #0A66C2, #004182);
}
.nav-link:hover .youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}





/* Product Page Cards section */


.products-header{
    /* position: sticky;
    top: 56px;
    left: 0; */
    margin-top: 56px;
    width: 100%;
    z-index: 3;
    padding: 15px 20px 12px;
    background-color: white;
}

.all-Produts-cards-section{
    display: flex;
    justify-content: start;
    flex-direction: row;
    /* position: relative; */
}
.filter-section-t{
    width: 25%;
    padding: 20px 10px;
    position: sticky;
    top: 100px; /* navbar height */
    /* border: 1px solid black; */

}
.product-section-t{
        width: 75%;
}


.show-filter-sec{
    display: none;
}




/* Product Selected Item Section page */

            .thumb-img {
                cursor: pointer;
                transition: 0.3s;
            }

            .thumb-img:hover {
                opacity: 0.7;
            }

            .active-thumb {
                border: 2px solid black !important;
            }

            .color-btn {
                border: 1px solid black;
                background: transparent;
                padding: 5px 12px;
            }

            .active-color {
                background: black;
                color: white;
            }

            .mobile-thumbs img {
                width: 80px;
                height: 100px;
                object-fit: cover;
                cursor: pointer;
            }

            .mobile-thumbs::-webkit-scrollbar {
                display: none;
            }

            .main-images-center{
                width: 100%;
                aspect-ratio: 3 / 3;
            }

            #mainImage {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: top;
                    transition:0.2s ease;
                }



/* Terms & Conditions and Privacy & Policy Page */

.card-shadow{
    border-left: 3px solid  #008000;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px; 
    border-bottom: none; 
    border-right: none; 
    border-top: none;
}



/* Cart - Bag ( Add To Cart ) */

.cart-item-empty{
    font-size: 20px; 
    font-weight: bold;
}

.cart-btn-empty{
    max-width: 400px;
    width: 100%; 
    padding: 10px; 
    border-radius: 0;
}




         /* PAGE */
          .cart-page {
            padding-top: 10px;
          }

          /* PRODUCT CARD */

          .cart-card {
            background: white;
            border: 1px solid #e5e5e5;
            padding: 20px;
          }

          .cart-product {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
          }

          .cart-product:last-child {
            border-bottom: none;
          }
          .image-cart{
            aspect-ratio: 3/4;
            overflow: hidden;
            width: 150px;

          }

          .cart-img {
            /* width: 110px;
            height: 130px; */
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: top;
            border-radius: 4px;
          }

          .cart-info h6 {
            font-weight: 600;
          }

          .meta {
            font-size: 14px;
            color: #777;
            margin-top: 4px;
          }

          .price {
            font-weight: 600;
            margin-top: 8px;
          }

          /* WISHLIST ROW */

          .wishlist-row {
            border-top: 1px solid #eee;
            margin-top: 15px;
            padding-top: 10px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
          }

          /* ADDRESS CARD */

          .address-card {
            background: white;
            border: 1px solid #e5e5e5;
            padding: 20px;
            margin-bottom: 20px;
          }

          /* COUPON CARD */

          .coupon-card {
            background: white;
            border: 1px solid #e5e5e5;
            padding: 20px;
            margin-bottom: 20px;
          }

          .coupon-input {
            display: flex;
            gap: 10px;
            margin-top: 10px;
          }

          .coupon-input input {
            flex: 1;
            border: 1px solid #ddd;
            padding: 5px 10px;
            font-size: 14px;
            width: 100%;
          }

          .coupon-input button {
            background: black;
            color: white;
            border: none;
            padding: 5px 18px;
            font-weight: 600;
          }

          /* PRICE CARD */

          .price-card {
            background: white;
            border: 1px solid #e5e5e5;
            padding: 25px;
          }

          .price-card h6 {
            font-weight: 700;
            margin-bottom: 15px;
          }

          .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
          }

          .total {
            font-weight: 700;
            border-top: 1px solid #eee;
            padding-top: 10px;
            margin-top: 10px;
          }

          /* PAY BUTTON */

          .pay-btn {
            width: 100%;
            background: black;
            color: white;
            border: none;
            padding: 15px;
            font-weight: 700;
            margin-top: 20px;
          }

          /* MOBILE */

/* Product-detail Image sections */
.product-main-image {
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap: 10px;
    /* flex-direction: row; */
    width: 100%;
    gap: 10px;
}

.all-images {
    width: 10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.show-image {
    width: 80%;

    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.show-image img {
    width: 100%;
    height: 100%;
}


.color-images img{
    width: 80px;
    height: 120px;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
}
.color-images i{
    color: gold;
}
/* test  */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.bri-otp-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-input {
    width: 45px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.2s;
}


.otp-input:focus {
    border-color: #000;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
/* end test */

   /* RESPONSIVE DESIGN 
   ============================================ */
@media (max-width: 1200px) {
    .hero-img {
        height: 70vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .shop-video-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {

.search-container {
        /* width: 250px; */
        padding: 0 15px;
    }
    .hero-img {
        height: 55vh;
    }

    .feature-img {
        height: 180px;
    }

    .product-img {
        height: 240px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links li a {
        font-size: 11px;
    }

    .shop-video-title {
        font-size: 2rem;
    }

    .shop-text-col {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-img {
        height: 45vh;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-img {
        height: 160px;
    }

    .product-img {
        height: 220px;
    }

    .filter-slider {
        padding: 10px 15px;
        gap: 8px;
    }

    .filter-slider button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .shop-video-title {
        font-size: 1.75rem;
    }

    .shop-video-desc {
        font-size: 1rem;
    }

    .footer-title {
        font-size: 14px;
        margin-top: 30px;
    }

    .modal-body .p-5 {
        padding: 2rem !important;
    }


    /* Product Selected Card Section Page or add to cart */
                .cart-img {
              width: 90px;
              height: 110px;
            }

            .pay-btn {
              position: fixed;
              bottom: 0;
              left: 0;
              width: 100%;
              z-index: 999;
              border-radius: 0;
            }

}

@media (max-width: 660px) {
    .container-search-box{
    width: 60%;
}
    .search-container {
        /* width: 155px; */
        padding: 0 10px;
    }

}

@media (max-width:610px) {
    .all-Produts-cards-section{

    flex-direction: column;
}
    .filter-section-t{
    width: 100%;
    display: none;
    /* scale: 0; */
    /* height: 0; */
    overflow: hidden;
    transition: .3s ease;


}
.product-section-t{
        width: 100%;
       
}

.show-filter-sec{
    display: block;
}
.show-select-sec{
    display: none;
}


}

@media (max-width: 576px) {


      .search-container {

        padding: 0 10px;
    }
    .container-search-box{
        width: 100%;
    position: absolute;
    left: 0;
    bottom: -62px;
    padding: 6px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.18);
    }
    .search-container {
     width: 100%;

}

.products-header{

    /* margin-top: 90px; */

}
   

    .hero-img {
        height: 40vh;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .feature-img {
        height: 140px;
    }

    .feature-text {
        font-size: 12px;
    }

    .product-img {
        height: 200px;
    }



    .shop-video-title {
        font-size: 1.5rem;
    }

    .shop-video-desc {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    #view-more,
    #hide-more {
        padding: 12px 30px;
        font-size: 12px;
    }

    .secondary-header {
        top: 50px;
    }

    .nav-links {
        gap: 1rem;
    }
    .nav-links:first-child {
        display: none;
    }

    .nav-links li a {
        font-size: 10px;
        letter-spacing: 1px;
    }


  

/* Product-detail main image sections */

    .product-main-image {
        justify-content: start;
        align-items: start;
        flex-direction: column-reverse;

    }

    .all-images {
        width: 15%;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .all-images img {
        width: 100%;
    }

    .show-image {
        width: 100%;
    }

    .show-image img {
        width: 100%;
        height: 100%;
    }

    .color-images img{
    width: 50px;
    height: 70px;

}


/* TITLE */
.bri-title {

    font-size: 10px;
    font-weight: 500;

}

/* RATING */
.bri-rating {
    font-size: 9px;
    margin: 2px 0;
}

.bri-price {
    font-weight: 500;
    font-size: 12px;
}

.bri-old-price {
    font-size: 10px;
}

.bri-discount {

    font-size: 10px;
    font-weight: 400;
}

.bri-cart-btn {

    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;

}
}



@media (max-width: 530px) {
  


    .nav-icon {
        font-size: 1.2rem;
    }
    .nav-icon:first-child {
 
        display: block;
    }
    .nav-links li a {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
}

@media (max-width:400px) {
    .nav-links li a {
        font-size: 7px;
        letter-spacing: 1px;
    }
    .secondary-header{
        padding: 5px 0;
    }
}
