/* =========================
   HERO SECTION
========================= */
*{
    font-family: 'Poppins', sans-serif;
    font-size: 98%;
}
h1,h2,h3,h4,.navbar-brand{
  font-weight: 900 !important;
  font-family: 'Geom';
}
.hero-section {
    min-height: 90vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url("../images/hero-curtains.jpg") center/cover no-repeat;
}

.hero-section h1 {
    letter-spacing: 1px;
}

.hero-section p {
    max-width: 700px;
    margin: 0 auto;
}

.card-img-top {
    height: 260px;
    object-fit: cover;
}
a{
  cursor: pointer;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.bg-light img {
    max-height: 420px;
    object-fit: cover;
}

section .border {
    transition: all 0.3s ease;
}

section .border:hover {
    background-color: #f8f9fa;
    transform: translateY(-4px);
}

/* =========================
   CTA SECTION
========================= */
.bg-dark {
    background-color: #111 !important;
}

.bg-dark h2 {
    letter-spacing: 0.5px;
}

/* =========================
   BUTTONS
========================= */
.btn-outline-dark:hover {
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 15px;
    }
    .left-cont{
      display: none;
    }

    .card-img-top {
        height: 220px;
    }
}
/* =========================
   PRODUCT CARDS
========================= */
.product-card img {
    height: 220px;
    object-fit: cover;
}

.product-card h6 {
    font-size: 0.9rem;
}
.product-info .btn-add-cart {
  margin-top: auto;
}
.product-card:hover .btn-add-cart {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card .btn {
    font-size: 0.8rem;
}
@media (max-width: 768px) {
  .btn-add-cart {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
:root {
  --primary-green: #0b3d2e;
  --primary-green-light: #0f5a44;
}

/* TOP BAR */
.top-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
}

.top-bar a {
  color: var(--primary-green);
  text-decoration: none;
}

/* HEADER */
.main-header {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo span {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Geom';
  color: var(--primary-green);
  margin-left: 8px;
}

/* SEARCH */
.btn-search {
  background: var(--primary-green);
  color: #fff;
  border-radius: 0 6px 6px 0;
}

.btn-search:hover {
  background: var(--primary-green-light);
}

/* CART */
.cart-link {
  position: relative;
  color: var(--primary-green);
}

.cart-link .badge {
  background: coral;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  position: absolute;
  top: -5px;
  right: -10px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: var(--primary-green);
  padding: 0.85rem 1.25rem;   /* vertical + horizontal spacing */
}

/* NAV LINKS */
.navbar .nav-link {
  color: #d8b102 !important;
  /* font-weight: 400; */
  padding: 0.5rem 1rem;      /* click-friendly spacing */
  margin: 0 0.25rem;         /* space between links */
  line-height: 1.5;
  text-transform: capitalize;
  transition: color 0.25s ease, background-color 0.25s ease;
}

/* HOVER & ACTIVE */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #d4f1e5 !important;
}

/* OPTIONAL: nicer hover feel */
.navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

/* MOBILE TWEAKS */
@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 1rem;
  }

  .navbar .nav-link {
    padding: 0.6rem 0.75rem;
    margin: 0.1rem 0;
  }
}


/* DROPDOWNS */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.dropdown-item:hover {
  background: var(--primary-green);
  color: #fff;
}

/* AUTOCOMPLETE */
.autocomplete-items {
  border: 1px solid #eaeaea;
  background: #fff;
  z-index: 999;
}

.autocomplete-items div:hover {
  background: #f1f1f1;
}
/* ================= HERO CAROUSEL ================= */
.hero-carousel {
  position: relative;
}

.hero-slide {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    #000000c9,
    #000000c9
  );
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin: 15px 0 25px;
}

/* BUTTONS */
.btn-hero {
  background: #0b3d2e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-hero:hover {
  background: #0f5a44;
  color: #fff;
}

/* INDICATORS */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-slide {
    min-height: 70vh;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content {
    margin: auto;
  }
}


.page-hero {
  background: linear-gradient(
    rgba(11, 61, 46, 0.85),
    rgba(11, 61, 46, 0.85)
  ),
  url('/static/images/hero1\ \(12\).jpg') center/cover no-repeat;
  padding: 90px 0;
  color: #fff;
}
.page-hero a{
  text-decoration: none;
  color: white;
}

.btn-green {
  background: var(--primary-green);
  color: #fff;
}

.btn-green:hover {
  background: var(--primary-green-light);
  color: #fff;
}

/* ================= FOOTER ================= */
.footer {
  background: url('../images/blinds-window.jpg') center/cover no-repeat;
  position: relative;
  
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 61, 46, 0.95),
    rgba(11, 61, 46, 0.95)
  );
}


.about {
  background: url('../images/blinds-window.jpg') center/cover no-repeat;
  /* position: relative; */
  
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 61, 46, 0.856),
    rgba(11, 61, 46, 0.849)
  );
}

.footer h5,
.footer h6 {
  letter-spacing: 0.5px;
}

.footer p,
.footer a {
  color: #e5f3ef;
}

.footer-links a {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Footer border */
.footer hr {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
}
.page-header {
  background: linear-gradient(
    rgba(11, 61, 46, 0.85),
    rgba(11, 61, 46, 0.85)
  ) !important;
  padding: 60px 0;
  color: #fff;
}

.page-header h1 {
  font-weight: 800;
}

.page-header p {
  max-width: 700px;
  opacity: 0.9;
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  color: #ffffff !important;
}

.page-header .breadcrumb a {
  color: #e5f3ef;
}

.shop-controls {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.results-count {
  font-weight: 600;
}

.shop-sort select {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.view-options {
  display: flex;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  overflow: hidden;
}

.view-btn {
  padding: 6px 10px;
  cursor: pointer;
}

.view-btn.active {
  background: var(--primary-green);
  color: #fff;
}

/* =========================
   SHOP LAYOUT
========================= */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
}

/* =========================
   FILTER SIDEBAR
========================= */
.filters-sidebar {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 20px;
}

.filter-title {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.filter-section {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.filter-options {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.filter-option {
  margin-bottom: 8px;
}

.price-input {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 6px;
  width: 100%;
}

.btn-apply {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
}

.btn-reset {
  background: #f1f1f1;
  border: none;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
}

/* =========================
   PRODUCTS GRID
========================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card a{
  text-decoration: none !important;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-green);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-info {
  padding: 15px;
}

.product-title {
  font-weight: 600;
  color: #111;
  display: block;
  margin: 6px 0;
}

.product-rating i {
  color: #f4c150;
  font-size: 0.8rem;
}

.product-price {
  margin: 10px 0;
}

.current-price {
  color: var(--primary-green);
  font-weight: 700;
}

.original-price {
  color: #888;
  font-size: 0.85rem;
  margin-left: 5px;
}

.btn-add-cart {
  background: var(--primary-green);
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* =========================
   PAGINATION
========================= */
.pagination .page-link {
  color: var(--primary-green);
}

.pagination .active .page-link {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
}

/* =========================
   MOBILE FILTER
========================= */
.mobile-filter-toggle {
  display: none;
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    height: 100vh;
    width: 280px;
    z-index: 9999;
    transition: .3s;
    overflow-y:auto;
  }

  .filters-sidebar.active {
    left: 0;
  }

  .mobile-filter-toggle {
    display: block;
  }
}
/* =========================
   PRODUCT DETAIL SECTION
========================= */
.product-section {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
}

/* =========================
   PRODUCT IMAGES
========================= */
.product-images {
  position: relative;
}

.main-image-container {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* BADGES */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-green);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  z-index: 2;
}

.product-badge.sale {
  background: #c0392b;
}

.product-badge.new {
  background: var(--primary-green-light);
}

.product-badge.best-seller {
  background: #111;
}

/* =========================
   IMAGE GALLERY
========================= */
.gallery-thumbnails {
  margin-top: 15px;
}

.thumbnail-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.thumbnail-item {
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 3px;
  cursor: pointer;
  position: relative;
}

.thumbnail-item.active {
  border-color: var(--primary-green);
}

.thumbnail-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.featured-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: var(--primary-green);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 3px;
}

/* =========================
   PRODUCT INFO
========================= */
.product-info h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.product-price {
  margin: 15px 0;
}

.product-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.product-price .original-price {
  margin-left: 10px;
  color: #888;
}

.discount-badge {
  margin-left: 10px;
  background: #f1f1f1;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* =========================
   FEATURES
========================= */
.product-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.product-features li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.product-features i {
  color: var(--primary-green);
  margin-right: 6px;
}

/* =========================
   QUANTITY SELECTOR
========================= */
.quantity-selector {
  margin: 20px 0;
}

.quantity-input {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #eaeaea;
  background: #f8f9fa;
  font-size: 1.2rem;
}

.quantity-value {
  width: 60px;
  text-align: center;
  border: 1px solid #eaeaea;
  height: 36px;
}

/* =========================
   ACTION BUTTONS
========================= */
.action-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.action-buttons .btn-primary {
  background: var(--primary-green);
  border: none;
}

.action-buttons .btn-primary:hover {
  background: var(--primary-green-light);
}

/* =========================
   PRODUCT META
========================= */
.product-meta {
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
}

.meta-item {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.meta-label {
  font-weight: 600;
  margin-right: 5px;
}

/* =========================
   PRODUCT TABS
========================= */
.product-tabs .nav-tabs {
  border-bottom: 1px solid #eaeaea;
}

.product-tabs .nav-link {
  color: #444;
}

.product-tabs .nav-link.active {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

/* =========================
   SPEC TABLE
========================= */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 10px;
  border: 1px solid #eaeaea;
}

.specs-table td:first-child {
  font-weight: 600;
  width: 35%;
}

/* =========================
   REVIEWS
========================= */
.review-item {
  border-bottom: 1px solid #eaeaea;
  padding: 15px 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

/* =========================
   RELATED PRODUCTS
========================= */
.section-header h2 {
  font-weight: 700;
}

.section-header p {
  color: #777;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .main-image {
    height: 300px;
  }

  .thumbnail-img {
    width: 65px;
    height: 65px;
  }

  .action-buttons {
    flex-direction: column;
  }
}
/* Toast container */
#cart-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    min-width: 440px;
    max-width: 520px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}


.cart-toast.toast-visible {
    opacity: 1;
    transform: translateX(0);
}


.cart-toast.success {
    background: linear-gradient(135deg, #12a14e, #2ecc71);
}


.cart-toast.error {
    background: linear-gradient(135deg, #e74c3c, #ef4444);
}

.cart-toast i {
    font-size: 18px;
}




