/* General Styles */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #682020;
}

/* Hero Section */
.hero .swiper-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
}

.hero .swiper-slide .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero .swiper-slide .content {
    position: absolute;
    top: 750px; /*for shopnow btn*/
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero .swiper-slide .content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9a3c3c;;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 20s ease;
    
}

.hero .swiper-slide .content .btn:hover {
    background-color: #682020; /* Darker pink */
    color: white;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

.luxe-picks-section {
  background: #6d2323;
  color: #f9ede7;
  text-align: center;
  padding: 48px 16px 40px 16px;
}

.luxe-picks-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: 0;
}

.luxe-divider {
  width: 120px;
  border: none;
  border-top: 3px solid #f9ede7;
  margin: 0 auto 32px auto;
}

.luxe-picks-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}


.hero .slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 2rem;
    margin-bottom: 1rem;
    background-color: transparent; 
}

.hero .slide .image {
    flex: 1 1 20rem;
}

.hero .slide .image img {
    width: 100%;
}

.hero .slide .content {
    flex: 1 1 20rem;
    text-align: center;
}

.hero .slide .content span {
    font-size: 2.5rem;
    color: white;
}

.hero .slide .content h3 {
    margin: 1rem 0;
    font-size: 6rem;
    color: white;
    text-transform: capitalize;
}
.swiper-slide .image {
    width: 100%;
    height: 100%;
}


.swiper-pagination-bullet-active {
    background-color: #805858;
}

/* Parent container for categories and sidebar */
.categories-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding: 2rem;
}

/* Category Section */
.category {
    flex: 1; /* Allow the category section to take up remaining space */
    text-align: center;
    padding: 4rem 2rem;
    background: none;
    margin-top: -2rem;
}

.category .title {
    font-size: 3rem;
    color: #381320;
    text-transform: uppercase;
    margin: 1rem auto; 
}

.category .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:1.5rem;
    margin: 0 auto;
}
.category .box a {
    text-decoration: none; 
    color: inherit; 
}

.category .box a:visited {
    text-decoration: none;
}

.category .box a:hover {
    text-decoration: none; 
}

.category .box a:active {
    text-decoration: none; 
}

.category .box {
    width: 200px;
    height: 200px;
    border: 5px solid #3e1111; 
    border-radius: 50%; /* Make it circular */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto; /* Center the box */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Add shadow */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure the image is circular */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.category .box h3 {
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.category .box:hover {
    transform: scale(1.1); /* Enlarge on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
}

.category .box:hover h3 {
    background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
}

/* Products Section */
.products {
    padding: 4rem 2rem;
    background: #805858; /* Light background for contrast */
    text-align: center;
    border-radius: 10px; /* Rounded corners for the section */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 2rem auto;
}

.products .box-container {
    display: flex; /* Use flexbox for alignment */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center items horizontally */
    align-items: flex-start; /* Align items to the top */
    gap: 2rem; /* Add spacing between boxes */
    margin-top: 2rem; /* Add spacing above the container */
    
}

.products .box-container .box {
    position: relative;
    width: 300px;
    height: 500px;
    border: 2px solid #381320;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
}

.products .box-container .box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: 0.3s ease;
}

.products .box-container .box h3 {
    font-size: .7rem; /* Adjust the font size */
    color: #333; /* Text color */
    margin: 0.5rem 0; /* Add spacing above and below the text */
}

.products .box-container .box:hover {
    transform: scale(1.05); /* Slightly enlarge the box on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Add a stronger shadow on hover */
}

.products h1{
    color:white;
}
 
.products .box-container h3{
    color: white;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}
 
.products .box-container .box .fa-eye{
    position: absolute;
    top:1rem;
    height: 4rem;
    width: 4rem;
    line-height: 4.3rem;
    border:var.2rem solid black;
    background-color: white;
    cursor: pointer;
    font-size: 2rem;
    color: black;
    transition: .2s linear;
    text-align: center;
}
.products .box-container .box .fa-shopping-cart{
    position: absolute;
    top:1rem;
    height: 4rem;
    width: 4rem;
    line-height: 4.3rem;
    border:var.2rem solid black;
    background-color: white;
    cursor: pointer;
    font-size: 2rem;
    color: black;
    transition: .2s linear;
    text-align: center;
}
 
.products .box-container .box .fa-eye:hover{
    background-color:white;
    color: black;
}
 
.products .box-container .box .fa-shopping-cart:hover{
    background-color:white;
    color: black;
}
 
.products .box-container .box .fa-eye{
    left: -10rem;
    
}
 
.products .box-container .box .fa-shopping-cart{
    right: -10rem;
 
}
 
.products .box-container .box:hover .fa-eye{
    left: 1rem;
}
 
.products .box-container .box:hover .fa-shopping-cart{
    right: 1rem;
}
 
.products .box-container .box .cat {
    font-size: 1.3rem;
    font-weight: bold;
    color: #5a1e2d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.products .box-container .box .name {
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0.5rem 0 1rem 0;
}

.products .box-container .box .flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    margin-top: 1.5rem;
}

.products .box-container .box .flex .price {
    margin-right: auto;
    font-size: 2rem;
    font-weight: bold;
    color: #7d2626;
    display: flex;
    align-items: center;
}

.products .box-container .box .flex .price span {
    color: #7d2626;
    font-size: 1.8rem;
    margin-right: 0.2rem;
}

.products .box-container .box .flex .qty {
    padding: 0.5rem 0.7rem;
    border: 1.5px solid #7d2626;
    font-size: 1.2rem;
    color: #381320;
    border-radius: 6px;
    width: 55px;
    text-align: center;
    margin-right: 0.3rem;
}

.products .box-container .box .fa-eye {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 8px;
    border: none;
    background: #5a1e2d;
    color: #fff;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #0001;
    cursor: pointer;
    padding: 0;
}

.products .box-container .box .fa-shopping-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 8px;
    border: none;
    background: #5a1e2d;
    color: #fff;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #0001;
    cursor: pointer;
    padding: 0;
}

.products .box-container .box .fa-shopping-cart:hover {
    background: #a13c3c;
    color: #fffbe7;
    transform: scale(1.08);
}
 
.products .box-container .box .flex .fa-edit{
    width: 5rem;
    background-color: #682020;
    color:black;
    cursor: pointer;
    font-size: 1.8rem;
    height: 4.5rem;
    border:.2rem solid black;
}
 
.products .box-container .box .flex .fa-edit:hover{
    background-color: black;
    color:white;
}
 
.products .box-container .box .fa-times{
    position: absolute;
    top:1rem; right:1rem;
    background-color: red;
    color: white;
    border:.2rem solid black;
    line-height:4rem;
    height: 4.3rem;
    width: 4.5rem;
    cursor: pointer;
    font-size: 2rem;
}
 
.products .box-container .box .fa-times:hover{
    background-color: black;
    color: white;
}
 
.products .box-container .box .sub-total{
    margin-top: 1rem;
    font-size: 1.8rem;
    color:#777;
}
 
.products .box-container .box .sub-total span{
    color: red;
}
 
.products .more-btn{
    margin-top: 2.5rem;
    text-align: center;
}

.products .more-btn .btn {
    display: inline-block;
    background: linear-gradient(90deg, #7d2626 0%, #b23232 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.9rem 2.7rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 18px #7d262620;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.13s, box-shadow 0.2s;
    cursor: pointer;
}

.products .more-btn .btn:hover {
    background: linear-gradient(90deg, #b23232 100%);
    color: #fffbe7;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px #7d262640;
}

/* Sidebar for Brands */
.brand-sidebar {
    position: fixed; /* Stick the sidebar to the side */
    top: 0; /* Start at the top of the viewport */
    left: 0; /* Align it to the left of the screen */
    background: rgba(57, 4, 23, 0.788); /* Semi-transparent background */
    padding: 1rem 0;
    border-radius: 0 10px 10px 0;
    z-index: 1000; /* Ensure it stays above other elements */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 60px; /* Initial width of the sidebar */
    overflow: hidden; /* Hide the brand names initially */
    transition: width 0.3s ease, top 0.3s ease; /* Smoothly expand the sidebar and adjust top */
}

.brand-sidebar:hover {
    width: 200px; 
}

.brand-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brand-sidebar ul li {
    margin: .5rem 0;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-sidebar ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    text-decoration: none;
    color: #fff; /* Text color */
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: .5rem;
    overflow: hidden;
    white-space: nowrap; /* Prevent text from wrapping */
}

.brand-sidebar ul li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem; /* Add space between the image and the text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for images */
}

.brand-sidebar ul li a span {
    opacity: 1; /* Ensure the brand name is visible */
    transform: translateX(0); /* Position the text next to the image */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Highlight the active brand */
.brand-sidebar ul li a.active {
    background-color: #805858; /* Highlight color for the active brand */
    color: #fff; /* Text color for the active brand */
    border-radius: 10px; /* Add rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.brand-sidebar ul li a.active:hover {
    background-color: #682020; /* Darker highlight on hover */
}

/* Customize the scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #511717; /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #805858; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 3px solid #682020; /* Optional: Add a border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a07a7a; /* Color when hovering over the scrollbar thumb */
}

/* View All Button */
.products .menu-btn .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background-color: #682020; /* Button background color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth hover effect */
    text-align: center;
}

.products .menu-btn .btn:hover {
    background-color: #805858; /* Darker background on hover */
    color: #fff; /* Text color on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}


.brand-cards-row {
  display: flex;
  width: 100%;
  gap: 0;
  margin: 0 0 32px 0;
  padding: 0;
  overflow-x: auto;
}

.brand-card {
  flex: 1 1 0;
  min-width: 300px;
  height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.brand-card-title {
  position: relative;
  color: #181818;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 36px 0 0 36px;
  z-index: 1;
  letter-spacing: 1px;
}

.brand-card:hover {
  transform: scale(1.02);
  z-index: 2;
}

.brand-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 220px) ;
  column-gap: 10px;   
  row-gap: 10px;      
  width: 100%;
  margin: 20px 0;
}

.brand-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 0;
  min-width: 0;
  width: 275px;
  height: 200px;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.brand-card-title {
  position: relative;
  color: #181818;
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 24px 0 0 24px;
  z-index: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}

.brand-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 2;
}

@media (max-width: 120px) {
  .brand-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 180px);
  }
}
@media (max-width: 70px) {
  .brand-cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(10, 140px);
    gap: 10px;
  }
  .brand-card-title {
    font-size: 1.1rem;
    margin: 12px 0 0 12px;
  }
}
/* Toast-style popup for .message */
.message {
    position: fixed;
    top: 32px;
    right: 32px;
    left: auto;
    max-width: 360px;
    width: auto;
    padding: 1.2rem 2.2rem 1.2rem 1.5rem;
    background: #7d2626;
    color: #fff;
    font-size: 1.3rem;
    border-radius: 12px;
    box-shadow: 0 6px 32px #0004;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: toastIn 0.4s cubic-bezier(.4,0,.2,1);
    opacity: 0.97;
}

@keyframes toastIn {
    from { transform: translateY(-40px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 0.97; }
}

.message span {
    font-size: 1.2rem;
    color: #fff;
}

.message i {
    font-size: 1.6rem;
    color: #fffbe7;
    cursor: pointer;
    margin-left: 1.2rem;
    transition: color 0.2s;
}

.message i:hover {
    color: #ffd700;
}

@media (max-width: 600px) {
    .message {
        right: 8px;
        left: 8px;
        top: 12px;
        max-width: 98vw;
        font-size: 1rem;
        padding: 1rem 1.2rem 1rem 1rem;
    }
}
.empty{
   border:var(--border);
   padding:1.5rem;
   text-align: center;
   width: 100%;
   font-size: 2rem;
   text-transform: capitalize;
   color:var(--red);
}