:root {
  --roller: #0b3a66;
  --blinds: #5ec5e6;
  --bg: #f9f9f9;
  --text: #333;
  --white: #fff;
  --muted: #6b7280;
  --transition: all 0.3s ease;
}

/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

body {
  background: var(--bg);
  color: var(--text);
  padding-top: 80px; /* keep content below fixed navbar */
}

/* ======= NAVBAR (COMMON) ========= */
.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  gap: 18px;
  display: flex;
  align-items: center;
  z-index: 1000;
  padding: 12px 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 130px;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: var(--roller);
  font-weight: 600;
  transition: var(--transition);
}

.navbar a:hover {
  color: var(--blinds);
}

/* Desktop CTA button */
.cta .btn {
  border: 2px solid var(--roller);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--roller);
  font-weight: 600;
  background: transparent;
  transition: 0.3s;
}

.cta .btn:hover {
  background: var(--blinds);
  border: 2px solid var(--blinds);
  color: var(--white);
}

/* Generic .btn (also used in mobile menu) */
.btn {
  border: 2px solid var(--roller);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--roller);
  background: transparent;
  transition: var(--transition);
}

.btn:hover {
  background: var(--blinds);
  border-color: var(--blinds);
  color: var(--white);
}

/* Mobile CTA (inside menu, by default hidden) */
.mobile-cta {
  display: none;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--roller);
  transition: 0.3s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== NAVBAR RESPONSIVE (COMMON) ===== */
@media (max-width: 900px) {
  .logo img {
    height: 110px;
  }

  .hamburger {
    display: flex;
  }

  .cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 15px 20px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .navbar ul li a {
    width: 100%;
  }

  .mobile-cta {
    display: block;
    width: 100%;
    margin-top: 8px;
  }

  .mobile-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ========== ROLLER BLINDS HEADING ========== */
.hero {
  width: 100%;
  text-align: center;
  padding: 40px 20px 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  color: #0b3a66;
  letter-spacing: 0.5px;
  display: inline-block;
  padding-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ========== IMAGE LEFT + TEXT RIGHT SECTION ========== */
.roller-intro {
  max-width: 1100px;
  margin: 20px auto 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 200px;
}

/* Left: image */
.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* Right: text box */
.intro-text {
  flex: 1.1;
  background: #f9f9f9;
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.intro-text h2 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #0b0b0b;
  font-family: "Poppins", sans-serif;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

/* ========== SHOP BY CATEGORY (GRID) ========== */
.categories {
  max-width: 1160px;
  margin: 0 auto 80px;
  padding: 40px 20px 0;
  text-align: center;
}

/* Heading */
.categories-header h2 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #0b3a66;
  margin-bottom: 6px;
}

.categories-header p {
  font-size: 14px;
  color: #777;
  margin-bottom: 26px;
}

/* Anchor wrapper so card clickable & scrolls */
.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* 4-column grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  gap: 30px;
  max-width: 1160px;
  margin: 0 auto;
}

/* Category cards */
.category-card {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.category-title {
  padding: 14px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #5ec5e6;
}

.category-title span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ========== (MANUAL / MOTORIZED  CAT) ========== */

.cat-section {
  max-width: 1160px;
  margin: 0 auto 80px;
  padding: 40px 20px 60px;
  text-align: center;
  scroll-margin-top: 120px;
}

.cat-header h2 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #5ec5e6;
  margin-bottom: 4px;
}

.cat-header p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

/* products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

/* Product cards */
.product-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease-in-out;
}

.product-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 12px 10px 4px;
  text-align: center;
}

.product-card p {
  font-size: 13px;
  text-align: center;
}

.product-card .price {
  margin: 6px 0 12px;
}

.product-card .price span {
  color: #555;
}

/* Hover image swap */
.product-card .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .img-default {
  opacity: 0;
}

.product-card:hover .img-hover {
  opacity: 1;
}

/* ========== RESPONSIVE GRID BREAKPOINTS ========== */

/* Tablet: */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 900px) {
  .hero {
    padding: 60px 10px 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .roller-intro {
    flex-direction: column;
    min-height: auto;
  }

  .intro-image img {
    height: auto;
  }

  .intro-text {
    padding: 24px 20px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Small mobile grids */
@media (max-width: 600px) {
  .category-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== WHATSAPP FLOAT ========== */

.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #38cb3f;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp_icon {
  width: 100%;
  height: 100%;
  padding: 12px;
}

/* ============ FOOTER ============ */

.footer {
  background: white;
  padding: 40px 20px;
  color: #030303;
  font-family: "Poppins", sans-serif;
  height: 32vh;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 70px;
}

/* Logo */
.footer-logo {
  width: 220px;
  display: block;
  margin-top: -35px;
  margin-left: -60px;
}

/* Columns */
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.footer-column a {
  display: block;
  color: #0b3a66;
  font-size: 16px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.footer-column a:hover {
  color: var(--blinds);
  padding-left: 4px;
}

/* Social Icons */
.footer-column .social-links {
  display: flex;
  gap: 12px;
}

.social-icon img {
  width: 30px;
  transition: 0.3s;
  cursor: pointer;
}

.social-icon img:hover {
  transform: scale(1.15);
}

/* =======FOOTER RESPONSIVENESS======= */
/* Tablet and small laptop */
@media (max-width: 1024px) {
  .footer {
    padding: 40px 16px;
    height: auto;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-logo {
    margin-top: -20px;
    margin-left: -20px;
    width: 200px;
  }
}

/* Mobile & narrow screens */
@media (max-width: 768px) {
  .footer {
    padding: 30px 16px;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-logo {
    margin: 10px 0 10px 0;
    width: 180px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .footer-logo {
    width: 160px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .social-icon img {
    width: 26px;
  }
}
/* FOOTER RESPONSIVENESS ENDS */ 