@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}
body {
  font-family:'Poppins',sans-serif;
  color: #0c0c0c;
  background: white;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

/* --- Centered fixed width main container --- */
  #mainContainer {
    max-width: 1450px;    /* fixed max width */
    margin: 0 auto;       /* horizontally center */
    padding: 0 1rem;      /* padding on small screens */
    min-width: 320px;     /* prevent extreme narrowing */
  }
/* ===== HEADER GLASS BACKGROUND ===== */
/* ===== ULTRA THIN GLASS HEADER ===== */
.header_section{
  background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  top: 0;
  z-index: 999;
  padding: 4px 0;   /* ultra thin */
}

/* ===== NAVBAR ALIGN ===== */
.custom_nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== NAV LINKS ===== */
.navbar-nav .nav-link{
  color:#fff;
  font-weight:500;
  font-size:14px;
  margin:0 10px;
  padding:6px 4px;
  position:relative;
  transition:all .25s ease;
}

/* underline animation */
.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  bottom:-3px;
  left:0;
  background:#fff;
  transition:.3s;
}

.navbar-nav .nav-link:hover::after{
  width:100%;
}

/* subtle hover */
.navbar-nav .nav-link:hover{
  color:#e8f9ff;
}

/* ===== PROFILE BUTTON ===== */
.profile-btn{
  border:none;
  background:rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius:50%;
  padding:3px;
  cursor:pointer;
  transition:.25s;
}

.profile-btn:hover{
  background:rgba(255,255,255,0.35);
}

/* ===== AVATAR ===== */
.profile-avatar{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:13px;
  color:#1e6083;
}

/* ===== CART BUTTON ===== */
.icon-btn{
  border:none;
  background:rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color:#fff;
  padding:4px 10px;
  border-radius:16px;
  font-size:14px;
  margin-left:8px;
  transition:all .25s ease;
}

.icon-btn:hover{
  background:rgba(255,255,255,0.35);
}

/* ===== CART COUNT ===== */
#cartCount{
  background:#fff;
  color:#1e6083;
  font-weight:700;
  padding:2px 6px;
  border-radius:10px;
  font-size:11px;
}

/* ===== LOGO ===== */
.navbar-brand img{
  height:52px;
  transition:.3s;
  border-radius: 10px;
}

.navbar-brand img:hover{
  transform:scale(1.05);
}

/* ===== PROFILE DROPDOWN ===== */
.profile-dropdown{
  position:absolute;
  right:0;
  top:42px;
  width:220px;
  background:rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius:12px;
  padding:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
  display:none;
}

/* ===== MOBILE ===== */
@media (max-width:991px){

  .navbar-nav{
    background:rgba(30,96,131,0.95);
    border-radius:10px;
    padding:10px;
    margin-top:10px;
  }

  .navbar-nav .nav-link{
    padding:8px;
  }

}
  /*About Us Section */
.about-section {
  padding: 0px 15px;
  color: #000000;
  font-family: "Segoe UI", sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-title {
  text-align: center;
  font-size: 52px;
  margin-bottom: 60px;
}

.about-title span {
  color: #044966;
}

.about-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1s ease forwards;
}

/* RIGHT – Image + logos */
.about-media {
  flex: 1;
  max-width: 50%;
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 30px;
}

/* Image styling */
.about-media img {
  width: 100%;
  border-radius: 18px;
}

.about-text {
  flex: 1;
  padding-right: 20px;
}

/* Heading */
.about-text h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.3;
  color: #000000;
}

/* Paragraphs */
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 14px;
  max-width: 520px;
}

/* Subtle emphasis text (optional span usage) */
.about-text p span {
  color: #38bdf8;
  font-weight: 500;
}

/* Spacing for inner sections */
.about-text .tech-stack,
.about-text .trusted-companies,
.about-text .about-stats {
  margin-top: 26px;
}

/* Desktop */
@media (min-width: 1024px) {
  .about-text {
    padding-right: 40px;
  }
}

/* Tablet & Mobile */
@media (max-width: 900px) {
  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .about-text p {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }
  
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Trusted Companies Section */
.trusted-companies {
  margin-top: 40px;
}

.trusted-companies span {
  display: block;
  font-size: 14px;
  color: #e2e5ea;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Logo row */
.about-media .company-logos {
  display: flex;
  flex-direction: row;          /* 🔑 horizontal */
  align-items: center;
  justify-content: center;
  gap: 28px;
}

/* Logos */
.about-media .company-logos img {
  height: 34px;
  object-fit: contain;

  opacity: 0.7;
  filter: grayscale(100%) brightness(85%);

  transition: filter 0.3s ease,
              opacity 0.3s ease,
              transform 0.3s ease;
  animation: companyFloat 3.5s ease-in-out infinite;
}

/* Staggered floating */
.company-logos img:nth-child(1) { animation-delay: 0s; }
.company-logos img:nth-child(2) { animation-delay: 0.6s; }
.company-logos img:nth-child(3) { animation-delay: 1.2s; }
.company-logos img:nth-child(4) { animation-delay: 1.8s; }
.company-logos img:nth-child(5) { animation-delay: 2.4s; }

/* Hover = real color */
.company-logos img:hover {
  animation-play-state: paused;
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

/* Floating animation */
@keyframes companyFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/*End About Us Section */

/*Footer Section */
.footer {
	padding: 30px 30px 30px;
	background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
	border-top: 1px solid var(--metal-dark);
	position: relative;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 25px;
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 14px;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #fff;       /* icon color */
    background: none;  /* circle background */
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #67b2db;
    color: #fff;
}

.footer-section h4 {
	color: var(--text-primary);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
}

.footer-links a:hover {
	color: var(--accent-purple);
	padding-left: 10px;
}

.footer-bottom {
	padding-top: 10px;
	border-top: 1px solid var(--metal-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 0;
}

.copyright {
	color: var(--text-dim);
	font-size: 14px;
}

.footer-credits {
	color: var(--text-dim);
	font-size: 14px;
}

.footer-credits a {
	color: var(--accent-purple);
	text-decoration: none;
}

.footer-credits a:hover {
	text-decoration: underline;
}

/* responsive tweaks */
@media (max-width:767px) {
  .footer_section {
    padding: 30px 0;
  }

  .footer_section .social_box a {
    margin-bottom: 8px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
	.contact-container {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

  
  .footer-brand{
    padding-left: 10%;
  }
  
  .footer-social{
    padding-left: 26px;
  }
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

  .footer-brand{
    padding-left: 10%;
  }
  
  .footer-social{
    padding-left: 26px;
  }

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/* Footer ends */

/* Section Style */
:root{
  --primary: #98ca6d;
  --muted: #f5f6f7;
  --text: #0c0c0c;
  --accent: #42a5f5;
  --container-max: 1200px;
}

/* Generic section wrapper */
.section {
  padding: 80px 0;
  background-color: #ffffff;
  color: var(--text);
  width: 100%;
}

/* Alternate background variant */
.section--alt {
  background-color: var(--muted);
}

/* Constrain inner content */
.section .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 700;
  text-transform: none;
}

.section-subtitle {
  color: rgba(0,0,0,0.6);
  font-size: 15px;
  margin-bottom: 28px;
  font-weight: 500;
  max-width: 760px;
}

/* Two-column content layout */
.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

/* Full width content */
.section-row--single {
  grid-template-columns: 1fr;
}

/* Responsive grid for feature lists/cards */
.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Feature / card */
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(12,12,12,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(12,12,12,0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(12,12,12,0.08);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  font-size: 20px;
}

/* Section content pieces */
.section p {
  margin: 0 0 16px;
  color: rgba(12,12,12,0.85);
  line-height: 1.65;
  font-size: 15px;
}

.section .lead {
  font-size: 18px;
  color: rgba(12,12,12,0.9);
  font-weight: 500;
  margin-bottom: 20px;
}

/* Buttons */
.btn-section {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background .15s ease, transform .12s ease;
  border: 0;
  cursor: pointer;
}

.btn-section:hover {
  background: #1e6083;
  transform: translateY(-2px);
}

/* Hero / banner style for top of a section */
.section-hero {
  padding: 100px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.2));
  pointer-events: none;
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }

/* Responsive tweaks */
@media (max-width: 991px) {
  .section {
    padding: 56px 0;
  }
  .section-row {
    grid-template-columns: 1fr;
  }
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .section {
    padding: 40px 0;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
}
.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}

/**------CONTACT form STYLE------**/
/* Contact Section */
.contact-section {
	padding: 25px 30px;
	background: linear-gradient(180deg,
			var(--carbon-dark) 0%,
			var(--primary-black) 100%);
	position: relative;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	padding: 40px;
	background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
	border: 1px solid var(--metal-dark);
	border-radius: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	padding: 20px;
	background: var(--carbon-dark);
	border-radius: 10px;
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			rgba(153, 69, 255, 0.1),
			transparent);
	transition: left 0.5s ease;
}

.info-item:hover::before {
	left: 100%;
}

.info-item:hover {
	transform: translateX(10px);
	background: rgba(153, 69, 255, 0.1);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.2);
}

a.info-item {
	color: inherit;
	text-decoration: none;
}

.info-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: var(--text-primary);
	font-size: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.info-item:hover .info-icon {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
}

.info-text h4 {
	color: var(--text-primary);
	margin-bottom: 5px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.info-item:hover .info-text h4 {
	color: var(--accent-cyan);
}

.info-text p {
	color: var(--text-secondary);
	font-size: 14px;
	transition: all 0.3s ease;
}

.info-item:hover .info-text p {
	color: var(--text-primary);
}

/* Add external link indicator for clickable items */
.info-item[target="_blank"] .info-text p::after {
	content: ' ↗';
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.info-item[target="_blank"]:hover .info-text p::after {
	opacity: 1;
}

.contact-form {
	padding: 40px 40px 28px 40px;
	background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
	border: 1px solid var(--metal-dark);
	border-radius: 20px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	color: var(--text-secondary);
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	background: var(white);
	border: 1px solid var(--metal-dark);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-purple);
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.2);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
	border: none;
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.contact-container {
		grid-template-columns: 1fr;
	}
}


/**** ----- CONTACT END -----------****/

/** LOGO_Container_Styling**/
/* The main window/viewport that crops the moving track */
.logo-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    background-color: #ffffff;
    padding: 20px 0; /* Add vertical padding, horizontal padding is handled by the animation */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden; /* Hides the duplicated logos until they scroll into view */
    white-space: nowrap; /* Prevents logos from wrapping */
}

/* The inner container that holds all logos and moves horizontally */
.logo-track {
    display: inline-flex; /* Ensures it acts like a single long line */
    gap: 60px; /* Increased space between logos for better visual separation during scroll */
    animation: scroll 4s linear infinite; /* Animation applied here: duration 30s, linear speed, infinite loop */
}

/* Stops the animation when the user hovers over the container */
.logo-container:hover .logo-track {
    animation-play-state: paused;
}

.logo-track img {
    max-height: 50px;
    width: auto;
    opacity: 0.8;
    /* Important for animation performance: define rendering layer */
    will-change: transform ; 
}

/* Define the animation movement */
@keyframes scroll {
    0% {
        /* Start position: 0% of its own width from the left */
        transform: translateX(0);
    }
    100% {
        /* End position: Move left by exactly half the track's total width */
        transform: translateX(-50%);
    }
}
/** LOGO_Container_Styling_end **/

/***Products Page css***/
/* NAV */
.btn {
  background: #fff;
  color: linear-gradient(135deg, #1e6083, #9deefaa2);
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600
}

.icon-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #070707;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer
}

/* page header */
.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center
}

.controls input,
.controls select {
  padding: 10px;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  min-width: 180px
}

/* grid */
.content {
  display: grid;
  gap: 20px;
  padding: 20px
}

@media(max-width:980px) {
  .content {
    grid-template-columns: 1fr
  }
}

.products-wrap {
  background: transparent
}

/* animated card */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--card-shadow);
  transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 36px rgba(10, 20, 60, 0.12)
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 16px
}

.meta {
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px
}

.sku {
  font-family: monospace;
  font-size: 12px;
  color: #6b7280
}

.price-line {
  margin-top: 8px
}

.price-select {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
  flex-wrap: wrap
}

.price-select label {
  font-size: 13px;
  display: flex;
  gap: 6px;
  align-items: center
}

.add-btn {
  background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 700
}

/* pagination */
/* Pagination Wrapper */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
}

.pagination button {
  border: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  color: #5fbbe3;
  font-weight: 1000;
}

.pagination button:hover {
  text-decoration: underline;
}

.pagination button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.dots {
  letter-spacing: 6px;
  font-size: 18px;
  color: #0f6286;
}

.price-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.toggle-btn {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}
/* ===============================
   CART SIDEBAR
================================ */

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

.cart-backdrop.show {
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100%;
  background: #9deefad6;
  color: #000;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
  z-index: 1000;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar.open ~ .cart-backdrop,
.cart-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
/* HEADER */
.cart-header {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #d41717;
  cursor: pointer;
}

/* BODY */
.cart-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}

.cart-info strong {
  display: block;
  font-size: 14px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
  color: #fff;
  cursor: pointer;
}

.cart-controls .remove {
  background: #dc2626;
}

/* FOOTER */
.cart-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}

.checkout-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 480px) {
  .cart-sidebar {
    width: 100%;
  }
}
/* small helpers */
.flex {
  display: flex;
  gap: 10px;
  align-items: center
}

.muted {
  color: #6b7280
}

/* ===== Products Section ===== */
/* ================================
   PRODUCTS SECTION (GLASS STYLE)
================================ */

/* Title */
.title {
    font-size: 52px;
    font-weight: 600;
    color: #000;
    margin-bottom: 50px;
    text-align: center;   /* centered everywhere */
}

.title-accent {
  width: 48px;
  height: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7fd6ff, #ffffff);
  box-shadow: 0 6px 18px rgba(91,124,255,0.4);
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

/* ================================
   GLASS PRODUCT CARD
================================ */
.card {
  background:white;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 28px;
  color: #0b0a0a;
  position: relative;
  box-shadow: 0 20px 50px rgba(84, 90, 95, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* fade-in animation */
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px #7fd6ff;
}

/* Product Name */
.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0b0a0a;
}

/* Meta / SKU */
.card .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  color: #0b0a0a;
}

.card .sku {
  font-weight: 500;
  color: #0b0a0a;
}

/* Pricing */
.price-line {
  margin-bottom: 20px;
  color: #0b0a0a;
}

.price-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #0b0a0a;
}

.price-select label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.9);
}

.price-select input {
  accent-color: #8ff9f9;
  margin-right: 6px;
}

/* Add to Cart Button */
.add-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
  color: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.add-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* ================================
   FADE-IN ANIMATION
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .title {
    font-size: 42px;
    text-align: center;
  }
}


/* HOME PAGE PRODUCT GRID */
.viewAllbtn{
  background: linear-gradient(90deg, #1e6083 0%, #8cb5d6 50%, #9deefaa2 100%);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 700
}
/*Account button modal css */
/* PROFILE PANEL */
.profile-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.profile-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg,#1b729a,#81cff6);
  color: #05080b;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.profile-avatar.large {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

/* Dropdown */
.profile-dropdown {
  position: absolute;
  right: 0;
  top: 52px;
  width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: .2s ease;
  z-index: 999;
}

.profile-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.profile-header {
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.profile-info small {
  color: #666;
  display: block;
}

.logout-btn {
  display: block;
  padding: 12px 16px;
  color: #c0392b;
  text-decoration: none;
  font-weight: 600;
}

.logout-btn:hover {
  background: #fff5f5;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 20px;
}

/* Small fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ===============================
   JOIN MODAL OVERLAY
================================ */
.join-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.join-modal.active {
  display: flex;
}

/* ===============================
   MODAL BOX
================================ */
.join-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  width: 92%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
}

.join-logo {
  width: 160px;
  margin-bottom: 16px;
}

.join-box h2 {
  margin: 10px 0 6px;
  font-size: 22px;
}

.join-box p {
  color: #666;
  font-size: 14px;
  margin-bottom: 22px;
}

/* ===============================
   BUTTONS
================================ */
.join-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg,#0078ff,#00c6ff);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,120,255,0.35);
}

.btn.outline {
  border: 2px solid #0078ff;
  color: #0078ff;
}

.btn.outline:hover {
  background: #0078ff;
  color: #fff;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 480px) {
  .join-box {
    padding: 24px 18px;
  }
}