/* =========================================
   GLOBAL RESET
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  overflow-x: hidden;
  padding-top: 90px;

}

/* =========================================
   NAVBAR
   ========================================= */
.custom-navbar  {
  background-color: #2d3a4e;       
  padding: 30px 30px;
  position: fixed !important;                
  top: 0;     
  left: 0;
  min-height: 90px;                    
  width: 100%;
  z-index: 9999;                    
  border-bottom: 1px solid #f8b400;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Fix mobile navbar layout */
.custom-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-navbar:hover{
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: bold;
  color: #fff !important;
}

.nav-link {
  color: #bbb !important;
  position: relative;
  padding-bottom: 6px;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #f8b400;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.text-white:hover,
.navbar-icons a.active {
  border-color: #f8b400;
  box-shadow: 0 0 10px rgba(248, 180, 0, 0.6);
  transform: scale(1.1);
}

.user-initials {
  border-radius: 50%;
  background: #2d3a4e;  
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  color: #f8b400;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.icon-link {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.icon-link:hover{
  color: white;
  border-color: #f8b400;
  box-shadow: 0 0 10px rgba(248, 180, 0, 0.6);
  transform: scale(1.1);
}

.navbar-toggler {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  left: 40%;
  bottom: 20px;
}

.navbar-toggler button {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger icon styling */
.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* Cart icon */
.navbar-toggler .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: 0.3s ease;
  background: none;
}

/* Hover effect */
.navbar-toggler .icon:hover {
  color: #c9a96e;
  transform: scale(1.1);
}

/* Active page highlight */
.navbar-toggler .icon.active {
  border: 1px solid #f8b400;
  box-shadow: 0 0 10px rgba(248, 180, 0, 0.6);
  transform: scale(1.1);
}

/* Optional: make icons look like buttons */
.navbar-toggler button {
  background: none;
  width: 38px;
  height: 38px;
}

/* CLEAN HOVER */
.user-initials:hover {
  border: 1px solid ;
  padding: 9px 12px;
  color: #f8b400;
  box-shadow: 0 0 10px rgba(248, 180, 0, 0.6);
}

/* Login section container */
.login-section {
  min-height: 100vh;             
  display: flex;                 
  align-items: center;           
  justify-content: center;     
  background-color: #f4f6f9;
}


/* Ensure row fills container */
.login-section .row {
  width: 100%;
  margin: 0;
}

/* LEFT PANEL */
.left-panel {
  background: linear-gradient(135deg, #141e30, #243b55);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;             
  min-height: 20vh;          
}

.left-panel p{
  color: #d4d3d3;
}

.left-panel2 {
  background: linear-gradient(135deg, #141e30, #243b55);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;             
  min-height: 20vh;   
  display: none;       
}

.left-panel3{
  display: none;
}

.left-content {
  max-width: 450px;            
}

/* CREATE ACCOUNT BUTTON */
.create-btn {
  padding: 14px 32px;          
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;  
  border: 1px solid #e0a61f;
  box-shadow: 0 0 0 0.2rem rgba(248, 180, 0, 0.2);

}

.create-btn:hover {
  background-color: #f8b400;
  color: #000;
  transform: translateY(-3px);
  transition: all ease 1s;
}

/* RIGHT PANEL */
.right-panel {
  background: #f4f6f9;
  display: flex;
  align-items: flex-start;
  height: auto;
  justify-content: center;
  padding: 80px 60px;         
}

/* Glass Card */
.login-card {
  background-color: white;
  padding: 70px 50px;          
  border-radius: 15px;
  width: 100%;
  height: fit-content;
  max-width: 450px;
  transition: 0.3s ease;
}

.login-card button{
  margin-top: 10px;
  background-color: rgb(89, 206, 12);
  color: white;
  border-radius: 20px;
  padding: 8px;
  transform: translateY(3px);
  transition: all ease 1s;

}

.login-card .form-control{
  border-radius: 20px;
  padding: 12px;
}

.login-card:hover {
  transform: translateY(-5px);
}

.signup-card {
  background-color: white;
  padding: 60px;          
  border-radius: 15px;
  width: 100%;
  height: fit-content;
  max-width: 570px;
  transition: 0.3s ease;
}

.signup-card button{
  margin-top: 10px;
  background-color: rgb(89, 206, 12);
  color: white;
  border-radius: 20px;
  padding: 8px;
  transform: translateY(3px);
  transition: all ease 1s;

}

.signup-card .form-control{
  border-radius: 20px;
  padding: 12px;
}

.signup-card:hover {
  transform: translateY(-5px);
}

/* Login Button */
.login-btn {
  background-color: #2d3a4e;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.login-btn:hover {
  background-color: #f8b400;
  color: black;
  transform: translateY(-3px);
}

/* Forgot link */
.forgot-link {
  position: relative;
  top: 8px;
  font-size: 14px;
  color: #666;
  transition: 0.3s ease;
}

.forgot-link:hover {
  color: #f8b400;
}

.create-link {
  position: relative;
  top: 8px;
  font-size: 14px;
  color: rgb(72, 72, 233);
  transition: 0.3s ease;
}

.create-link:hover {
  color: #f8b400;
}
/* hero section */

.hero {
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../bags/header.jpeg);
  background-size: cover; /* AI Fix: Ensures image fills the section */
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: static;
  overflow: hidden;
  padding: 40px 20px;
  margin-top: 0; /* AI Fix: Closes gap with navbar */
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 0; /* AI Fix: Stops top-margin push */
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1rem;
  color: #d8e3dd;
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #f4b62a;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #e0a61f;
  color: #2d3a4e;
}

.btn-outline {
  border: 2px solid #ffffff70;
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline:hover {
  border: 2px solid white;
  color: rgb(134, 126, 126);
}

/* section with three images */

.products-section {
  background: #f3f3f3;
  padding: 60px 20px;
  margin-top: 0; /* AI Fix: Closes gap with Hero */
}

.products-section  .container1 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* .container1 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;  
  gap: 50px;
  margin-left: 18em;
} */


/* Left Content */
.left-content {
  flex: 1;
}

.left-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.left-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 400px;
}

.explore-btn {
  display: inline-block;
  padding: 13px 18px;
  border: 1px solid #e0a61f;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  box-shadow: 0 0 0 0.2rem rgba(248, 180, 0, 0.2);

}

.explore-btn:hover {
  background-color: #e0a61f;
  color: white;
}

/* Products Grid */
.products {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
    width: 100%;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 20px;
}

.product-card h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.product-card span {
  font-weight: bold;
  font-size: 1.2rem;
}

/* section with three images ends there */

/* why choose us section */

.why-choose{
  padding: 80px 10%;
}

.why-choose-container{
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */

.left{
  flex: 1;
}

.left h1{
  font-size: 42px;
  margin-bottom: 20px;
}

.subtitle{
  color: #666;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 500px;
}

.features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature h3{
  margin: 15px 0;
  font-size: 18px;
}

.feature p{
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.icon{
  width: 50px;
  height: 50px;
  background: #dfe5e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* RIGHT SIDE */

.right{
  flex: 1;
  position: relative;
}

.right img{
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* Decorative Dots */

.dots{
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#f5b300 5px, transparent 5px);
  background-size: 20px 20px;
  z-index: 1;
}
/* why choose section ends there*/

/* help start */
/* help start */
.we-help-section {
	padding: 7rem 0;

	.imgs-grid {
		display: grid;
		grid-template-columns: repeat(27, 1fr);
		position: relative;
		&:before {
			position: absolute;
			content: "";
			width: 255px;
			height: 217px;
			background-image: url('../images/dots-green.svg');
			background-size: contain;
			background-repeat: no-repeat;
			transform: translate(-40%, -40%);
			z-index: -1;
		}
		.grid {
			position: relative;
			img {
				border-radius: 20px;
				max-width: 100%;
			}
			&.grid-1 {
				grid-column: 1 / span 18;
				grid-row: 1 / span 27;
			}
			&.grid-2 {
				grid-column: 19 / span 27;
				grid-row: 1 / span 5;
				padding-left: 20px;
			}
			&.grid-3 {
				grid-column: 14 / span 16;
				grid-row: 6 / span 27;
				padding-top: 20px;
			}

		}
	}
}	

.btn{
  border: 1px solid #e0a61f;
  border-radius: 30px;
  padding: 9px 12px;
  box-shadow: 0 0 0 0.2rem rgba(248, 180, 0, 0.2);
}

.btn:hover{
  background-color: #e0a61f;
  color: white;
  
}

/* show row */

.show_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 8%;
  
  
}

.card {
  align-items: center;
  max-width: 400px;
  border: none;
display: grid;
grid-template-areas:
 "image-box content"
"image-box content";
}

.image-box {
  grid-area: image-box;
  border-radius: 20px;

}

.image-box img {
  width: 120px;
  display: block;
}

.content{grid-area: content;}

.content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.content a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: 0.3s ease;
}

.content a:hover {
  color: #0d6efd;
}
/* show row ends */

/* testimonial */
/* SECTION */.testimonial-section {
  padding: 60px 0;
  text-align: center;
  background: #fdfdfd;
}

.slider-container {
  display: flex;
  align-items: center; /* Vertical centering */
  justify-content: center; /* Horizontal centering */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 20px;
}

.slides-wrapper {
  overflow: hidden; /* Hides the slides that aren't active */
  width: 70%; /* Adjust width of the visible area */
}

.slides-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1); /* Gentle slide */
}

.slide {
  min-width: 100%; /* Each slide takes full width of the wrapper */
  padding: 20px;
  box-sizing: border-box;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.arrow:hover {
  background: #444;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.profile img{
  width: 130px;
  height: 130px;
}

/* =========================================
/* =========================================
   ABOUT SECTION (CLEAN VERSION)
   ========================================= */

.about-section {
  padding: 80px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.about-section h1 {
  font-size: 38px;
  color: #2d3a4e;
  text-align: center;
  margin-bottom: 50px;
}

/* ROW LAYOUT */
.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

/* Reverse row */
.about-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #2d3a4e;
}

.about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* IMAGE */
.about-img {
  flex: 1;
  height: 320px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

.about-img-main{
  background-image:url('../bags/andrew-moca-yAGNjU4rtss-unsplash.jpg');
}

.about-img-mission{
  background-image:url('../bags/pexels-tara-winstead-7666429.jpg');
}

.about-img-vision{
  background-image:url('../bags/pexels-ann-h-45017-33105050.jpg');
}

.about-img-values{
  background-image:url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80');
}

/* VALUES */
/* .about-values {
  margin-top: 40px;
}

.about-values h3 {
  margin-bottom: 10px;
  color: #2d3a4e;
}

.about-values p {
  color: #666;
  line-height: 1.6;
} */


/* blog */
/* Base Styles */
.blog-newsletter-section {
  padding: 80px 10%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eff2f1;
}


/* Shop page */

.shop-container{
    padding:80px 20px;
    background:#f8f9fa;
    text-align:center;
}

/* Title area */
.shop-title{
  background-color:#2d3a4e;
  color:white;
  padding:30px;
  border-radius:10px;
  max-width:900px;
  margin:0 auto 50px auto;
}

.shop-title h2{
    font-weight:700;
}

.shop-title p{
    color:#bbb;
    margin-bottom:20px;
}

.shop-title input{
  padding:10px 20px;
  width:40%;
  border:none;
  border-radius:30px;
}

/* Product Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.product-card:hover {
  transform: scale(1.03);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 10px;
}

.card-name {
  font-size: 16px;
  margin-bottom: 5px;
}

.card-price {
  font-weight: bold;
  color: #2d3a4e;
}

.view-btn {
  margin-top: 10px;
  padding: 5px 10px;
  border: none;
  background: #2d3a4e;
  color: #fff;
  cursor: pointer;
}
/* hero section ends there */
/* .interior{
  width: 100vw;
  padding: 10px;
  height: 50px;
  background-color: red;
} */

/* verify otp page */
.otp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f3f3f3;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.otp-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.otp-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.4rem;
}

.otp-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
}

.otp-input {
    width: 45px;
    height: 45px;
    margin: 0 4px;
    font-size: 1.3rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.2s;
}

.otp-input:focus {
    border-color: #4e54c8;
    box-shadow: 0 0 5px rgba(78, 84, 200, 0.5);
    outline: none;
}

.btn-success {
    background: green;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s;
}

.btn-success:hover {
    background: #3b40a4;
    color: #fff;
}

.text-danger {
    margin-bottom: 15px;
    font-weight: 500;
}

/* Login success message */
.success-banner {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  padding: 15px 20px;
  text-align: center;
  border-radius: 10px;

  background: rgba(113, 131, 123, 0.822); 
  color: #39FF14;
  font-weight: 500;
  backdrop-filter: blur(6px);

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  animation: slideDown 0.5s forwards;
}

.success-icon {
  width: 24px;
  height: 24px;
  stroke: #39FF14;; 
}

@keyframes slideDown {
  0% { top: -80px; opacity: 0; }
  100% { top: 20px; opacity: 1; }
}

.error {
  width: 100%;
  padding: 12px 16px;

  background: rgba(231, 76, 60, 0.12); /* transparent red */
  color: #e74c3c; /* strong red text */

  border: 1px solid rgba(231, 76, 60, 0.4);
  border-left: 5px solid #e74c3c;

  border-radius: 8px;

  font-weight: 600;
  font-size: 0.9rem;

  margin-bottom: 15px;

  display: flex;
  align-items: center;
}


/* hero section ends there */

.blog-grid { 
    grid-template-columns: 1fr; 
  }

  .blog-header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
  }
  
  .newsletter-form { 
    flex-direction: column;
   }

  .newsletter-container { 
    padding-bottom: 250px; 
  } 
  
  .floating-chair {
    left: 50%;
    top: 150px;
    right: auto;
    transform: translate(-50%, 10%);
    width: 280px;
  }

  .login-card {
    padding: 60px 20px;          
    height: 100%; 
   }

  .right-panel {
    display: flex;
    align-items: flex-start;
    height: auto;
    justify-content: center;
    padding: 40px 20px  ;         
  }


/* Footer Styles */
footer {
  background-color: #2d3a4e;   
  color: #bbb;                  
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid rgba(248, 180, 0, 0.2);
}

footer .nav-link {
  color: #bbb !important;
  transition: color 0.3s ease;
  padding: 0 8px;
}

footer .nav-link:hover {
  color: #f8b400 !important;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #bbb;
  color: #bbb;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background-color: #f8b400;
  border-color: #f8b400;
  color: #000;
  transform: scale(1.1);
}

footer h6, 
footer p, 
footer a, 
footer span{
  color: #bbb;
}

footer p:hover, span:hover{
  color: white;
}

.foot-link{
  text-decoration: none;
  padding: 8px 0; /* Adjusted for better stacking */
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.foot-link:hover{
  color: #f8b400;
  transform: translateY(-3px);
}

footer .logo img {
  border-radius: 6px;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

footer .footer-bottom a {
  color: #bbb;
  margin-left: 15px;
  transition: color 0.3s ease;
}

footer .footer-bottom a:hover {
  color: #f8b400;
}


/* for shop hero section*/
.shop-hero {
      padding: 100px 5% 100px; 
      text-align: center; 
      position: relative; 
      overflow: hidden;
       background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../bags/shop\ collection.png);
  background-size: cover; /* AI Fix: Ensures image fills the section */
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0; /
    }

     .shop-hero::before {
      content: ''; position: absolute; top: -50%; left: -20%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }

        .shop-hero h1 { font-family: 'Playfair Display', 
          serif;
           font-size: clamp(2rem,5vw,3.2rem);
           color: white; 
           margin-bottom: 10px; 

  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
          }
    .shop-hero h1 span { color: var(--accent); }
    .shop-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

    

    .filter-bar {
      background: var(--white); 
      display: flex;
       flex-wrap: wrap; 
       gap: 12px;
      align-items: center;
       justify-content: center; 
       padding: 20px 5%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06); 
      position: sticky; top: 5px; z-index: 900;
    }
    .search-wrap { position: relative; flex: 1; min-width: 220px; max-width: 380px; }
    .search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }
    .filter-bar input[type="search"] {
      width: 100%; padding: 12px 16px 12px 44px; border: 2px solid #e3e6ec; border-radius: 30px;
      font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: var(--trans); background: var(--light);
    }
    .filter-bar input[type="search"]:focus { border-color: var(--navy); background: white; }
    .filter-bar select {
      padding: 11px 36px 11px 18px; border: 2px solid #e3e6ec; border-radius: 30px;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem; background: var(--light);
      cursor: pointer; outline: none; color: var(--text); transition: var(--trans); appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a94a6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
    }
    .filter-bar select:focus { border-color: var(--navy); }
    .filter-btn {
      padding: 11px 22px; border-radius: 30px; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem; transition: var(--trans);
    }
    .filter-btn.primary { background: var(--navy); color: white; }
    .filter-btn.primary:hover { background: var(--navy2); transform: translateY(-1px); }
    .filter-btn.reset { background: transparent; color: var(--muted); border: 2px solid #e3e6ec; }
    .filter-btn.reset:hover { border-color: var(--navy); color: var(--navy); }

    .results-info { padding: 20px 5% 0; font-size: 0.9rem; color: var(--muted); }
    .results-info strong { color: var(--navy); }

    .shop-section { padding: 16px 5% 60px; }
    .shop-grid { display: grid; 
      grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); 
      gap: 28px; }

    .product-card {
      background: var(--white);
       border-radius: var(--radius);
        overflow: hidden;
      box-shadow: var(--card-shadow);
       transition: var(--trans); 
       cursor: pointer;
      position: relative; 
      animation: fadeUp 0.5s ease both;

    }
    
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(45,58,78,0.16); }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .product-card:nth-child(1){animation-delay:.05s} .product-card:nth-child(2){animation-delay:.10s}
    .product-card:nth-child(3){animation-delay:.15s} .product-card:nth-child(4){animation-delay:.20s}
    .product-card:nth-child(5){animation-delay:.25s} .product-card:nth-child(6){animation-delay:.30s}
    .product-card:nth-child(7){animation-delay:.35s} .product-card:nth-child(8){animation-delay:.40s}

    .card-img { position:relative; width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s ease; text-align: center; justify-self: center; margin-top: 15px;}
    .product-card:hover .card-img { transform: scale(1.04); }
    .card-body { padding: 16px 18px 18px; }
    .card-color-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
    .card-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
    .card-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
    .card-footer { display: flex;
       align-items: center; 
       justify-content: space-between;
        margin-top: 12px; 
      }
    .card-price { font-size: 1.15rem; font-weight: 700; color: var(--navy2); }
    .view-btn {
      background: #f8b400; 
      color: white;
       border: none;
        padding: 8px 16px;
      border-radius: 20px; 
      font-size: 0.82rem;
       font-weight: 600; 
       cursor: pointer;
      transition: var(--trans); font-family: 'DM Sans', sans-serif;
    }
    .view-btn:hover { background-color: #fac958;}

    .empty-state { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--muted); }
    .empty-state h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--navy); margin-top: 16px; }


    .navbar-collapse { position: static !important; width: 100%; }
    .custom-navbar { position: sticky; top: 0; z-index: 9999; }
/* ================= Media Queries ================= */

/* Tablets */
@media (max-width: 991px) {

 .navbar-collapse{
  background-color: #2d3a4e; /* solid background */ 
  padding: 15px 20px;
   margin-top: 10px;
    border-radius: 10px;
 }

 .navbar-nav { text-align: left; }

 .nav-link { margin: 10px 0; display: block; }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-content p {
    margin: 0 auto 30px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px auto;
  }

  .why-choose-container{
    flex-direction: column;
    text-align: center;
  }

  .features{
    grid-template-columns: 1fr 1fr; /* Stay 2 columns on tablet */
  }

  .left h1{
    font-size: 32px;
  }

  .right{
    margin-top: 50px;
  }

  .blog-grid {
     grid-template-columns: repeat(2, 1fr);
   }
  
  .floating-chair { 
    width: 250px; 
  }

  .newsletter-container { 
    margin-top: 50px; 
  }

  .show_row {
    display: grid;
  
  }
 .slides-wrapper { 
    width: 80%;
   }
 
 .shop-grid{
    grid-template-columns:repeat(2,1fr);
  }

    .about-row {
    gap: 30px;
  }

  .about-img {
    height: 260px;
  }
  
}

/* Mobile */
@media (max-width: 768px) {
  
/* ===== NAVBAR FIX (COPY FROM CONTACT PAGE) ===== */

.about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-row.reverse {
    flex-direction: column; /* remove reverse on mobile */
  }
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  #navbarNav .icon-link{
    display: none;
  }

  /* ADD THESE */
  .about-img {
    width: 100%;
    height: 220px;
    flex: none; /* Stop flex from shrinking it to 0 */
  }

  .about-text {
    width: 100%;
    flex: none;
  text-align: justify;
  }
 
  .right-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-card {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-card .form-control {
    width: 300px;
    max-width: 300px;
}

.icon-link i{
  display: none;
}

  footer{
    background-color: #2d3a4e;
    height: fit-content;
  }

  .footer-section {
    margin-bottom: 25px;
    width: 100%;
  }

  .footer-section .row {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }

  .footer-section .row > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-section .row > div:not(:first-child) {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-links,
  .footer-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    text-align: center;
  }

  .footer-section ul {
    padding-left: 0;
    list-style: none;
  }

  .footer-bottom-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #444;          
    padding-top: 20px;
    margin-top: 20px;
  }

  .product-card {
    width: 100%;
  }

  /* FIX IMAGE DISPLAY */
  .card-img {
    width: 100%;
    height: 220px;
    object-fit: contain;   /* IMPORTANT: shows full image */
    display: block;
    margin: 0 auto;
    padding: 8px;
  }

  /* OPTIONAL: cleaner card spacing */
  .card-body {
    padding: 12px;
  }

  .card-name {
    font-size: 1rem;
    line-height: 1.3;
  }

  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .view-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  /* --- HERO & BACKGROUND --- */
  .hero {
    background-image: url(../bags/Gemini_Generated_Image_x5tazvx5tazvx5ta.png);
    background-position: 80% center;
  }

  body {
    width: 100%;
    overflow-x: hidden; /* Prevents the 100vw line from causing side-scroll */
  }

  /* --- UTILITY / CARDS --- */
  .features { grid-template-columns: 1fr; }
  .about-section { padding: 50px 15px; }
  .left-panel { display: none; }
  .left-panel2 { display: block; margin-bottom: -67px; }
  
  .container h6{
    color: white;
    margin-top: 40px;
  }

  .left-panel3{
    display: block;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;            
    min-height: 20vh;  
  }

  .we-help-section{
    padding-left: 5px;
  }

  .right-panel{
    margin-top: -30px;
  }

  .form-check-label a{
    left: 10px;
    font-size: 15px;
  }

  .form-check-label{
    margin-top: 20px;
    left: 10px;
    font-size: 15px;
  }

  .form-check-input{
    margin-top: 23px;
    font-size: 17px;
  }

  .navbar-brand {
    position: relative;
    top: 25px;
    right: 30px;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  .hero {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../bags/header.jpeg);
    background-position: 80% center;
    /* min-height: 60vh; */
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

   .products {
    grid-template-columns: 1fr;
  }

  .left-content h2 {
    font-size: 2rem;
  }

  .show_row {
display: grid;
  
}
 
  .slider-container { 
    flex-wrap: wrap; 
  }

  .slides-wrapper {
     width: 100%; order: 1; 
  }

  .arrow { 
    order: 2; margin-top: 20px; 
  }

  .shop-grid{
        grid-template-columns:1fr;
    }
  
     .card-footer {
       display: grid;
       align-items: center; 
      
      }
   
}

/* ==========================================
   TABLET (768px - 1024px)
   ========================================== */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* NAVBAR */
  .navbar-brand{
    right: 0;
    top: 0;
  }

  #navbarNav .icon-link{
    display: flex;
  }

  /* HERO */
  .hero{
        background-image: url('../bags/header.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
  .hero-text h1{
    font-size: 3rem;
  }

  /* SHOP GRID */
  .shop-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products{
    grid-template-columns: repeat(2, 1fr);
  }

  /* PRODUCT CARDS */
  .product-card{
    width: 100%;
  }

  .card-img{
    height: 260px;
    object-fit: contain;
  }

  /* ABOUT SECTION */
  .about-row,
  .about-row.reverse{
    gap: 30px;
  }

  .about-img{
    height: 320px;
  }

  .about-text{
    text-align: justify;
  }

  /* SIGNUP PAGE */
  .signup-card{
    max-width: 500px;
    margin: auto;
  }

  .signup-card .form-control{
    width: 100%;
    max-width: 100%;
  }

  /* FEATURES */
  .features{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* FOOTER */
  .footer-section .row{
    display: flex;
    flex-wrap: wrap;
  }

  .footer-section .row > div:first-child{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-section .row > div:not(:first-child){
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .footer-bottom-links{
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  /* CART PAGE */
  .cart-layout{
    grid-template-columns: 1fr;
  }

  .summary-panel{
    position: static;
  }

  /* PRODUCT PAGE */
  .product-page{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery{
    position: relative;
    top: auto;
  }

  .main-img-wrap{
    width: 100%;
    height: 450px;
  }

  .main-img-wrap img{
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  /* RELATED PRODUCTS */
  .related-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }

    .left-content h2 {
    font-size: 3rem;
  }

  .blog-newsletter-section { 
    padding: 100px 15%; 
  }

  .blog-card h3 {
     font-size: 1.3rem; 
    }

  .slides-wrapper { 
    width: 850px;
   }

}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px);}
  100% { opacity: 1; transform: translateX(0);}
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}