html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f8fc;
  }
  header {
    background: white;
    padding: 10px 20px;
    height: 40px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    gap: 5px;
  }
  .top-bar {
    background: #f6f7fb;
    padding: 10px 40px 10px 20px; /* top, right, bottom, left */
  /* ↓ or use this if you're using gap between sections instead */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
  }
  

  .logo-img {
    height: 45px;
    width: auto;
    display: inline-block;
  }
  
  .left-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 20px;
  }

  .deliver-wrapper {
    padding: 10px 1px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: border 0.2s ease;
    cursor: pointer;
  }
  
  .deliver-wrapper:hover {
    border: 1px solid #002244;
    background-color: #f0f8ff;
  }
  
  .logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #001a42;
  }
  
  .deliver-to {
    display: flex;
    flex-direction: column;
    line-height: 1.0;
  }
  
  .deliver-label {
    font-size: 12px;
    color: #333;
    font-weight: 400;
  }
  
  .deliver-address {
    font-size: 16px;
    font-weight: 700;
    color: #001a42;
  }

  .login-account {
    display: flex;
    flex-direction: column;
    line-height: 1.0;
  }

  .login {
    font-size: 12px;
    color: #333;
    font-weight: 400;
  }
  
  .account {
    font-size: 16px;
    font-weight: 700;
    color: #001a42;
  }

  .hover-box {
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: border 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
  }
  
  .hover-box:hover {
    border: 1px solid #002244;
    background-color: #f0f8ff;
  }
  
  .search-bar {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 650px;
    font-size: 15px;
  }
  
  .right-section {
    display: flex;
    align-items: center;
    gap: 10px;  /* ← controls spacing between all 4 items */
    font-weight: 500;
    margin-right: 10px;
  }

  
  .language-wrapper {
    position: relative;
  }
  
  .language-dropdown {
    display: none;
    position: absolute;
    top: 100%; /* below the trigger */
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 4px;
    margin-left: 5px;
    padding: 0;
    list-style: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 120px;
  }
  
  .language-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
  }
  
  .language-dropdown li:hover {
    background-color: #f0f8ff;
  }
  
  /* Show on hover */
  .language-wrapper:hover .language-dropdown {
    display: block;
  }
  
  .menu-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 3px 4px;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
  }

  .menu-item {
    color: #001b44;  
    padding: 5px 5px;
    border: 1px solid transparent;  /* <- important: invisible until hover */
    border-radius: 4px;
    transition: border 0.2s ease;
    cursor: pointer;
  }
  
  .menu-item:hover {
    border: 1px solid #002244; /* Amazon uses a soft light border */
    background-color: #f0f8ff;/* optional soft background */
  }

  .nav-links {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
  }

  .hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f8fc;
    overflow: hidden;
  }
  
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 70%; /* Reduce if you want less image visible */
    background-image: 
      linear-gradient(to left, rgba(244, 248, 252, 0) 40%, #f4f8fc 90%),
      url('images/background1.png');  /* Update with your relative path */
    background-repeat: no-repeat;
    background-position: 200% center; /* ← this moves the image further right */
    backdrop-filter: blur(10px);
    background-size: contain;
    z-index: 0;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .hero-button {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .hero-right {
    max-width: 800px; 
    position: relative;  /* ✅ add this */
    left: -60px;      
    top: -100px;     /* now this will work */
    text-align: center;
  }

  .hero-content {
    display: flex;
    justify-content: space-between;   /* 👈 KEY: spread left and right */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
  }
  
  .scb-box {
    background: white;
    margin-left: 10px;
    border-radius: 12px;
    padding: 10px 50px 5px 20px;
    transition: all 0.25s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

  .scb-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  .scb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 5px; /* ⬅ reduce this */
  }

  .scb-item img {
    width: 40px;
    height: auto;
  }
  
  .hero h1 {
    font-size: 48px;
    font-weight: 100;         /* 👈 slightly lighter than default bold */
    color: #001b44;           /* 👈 deep navy blue */
    margin-top: 32px;         /* 👈 slightly tighter top spacing */
    margin-bottom: 8px;       /* 👈 closer gap to p */
    line-height: 1.0;         /* 👈 tighter line spacing */
  }
  
  .hero p {
    font-size: 48px;
    font-weight: 600;         /* 👈 match boldness of headline */
    color: #001b44;           /* 👈 consistent modern tone */
    margin: 0 0 28px 0;       /* 👈 slightly reduced bottom spacing */
    line-height: 1.0;
  }
  
  .hero .badge {
    background: #001a42;
    color: white;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 40px;  /* 👈 adds space below the badge */
  }
  .hero-cta {
    position: absolute;
    bottom: 180px;
    left: 24%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
  }
  
  .beta-text {
    background: #001a42; /* Your navy blue */
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px; /* pill shape */
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .bold-text {
    font-weight: bold;
  }
  
  .normal-text {
    font-weight: normal;
  }
  
  .subscribe-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: transparent;
  }
  
  .subscribe-bar input {
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 16px;
    width: 300px;
    max-width: 80vw;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .subscribe-bar button {
    padding: 14px 24px;
    border: none;
    border-radius: 16px;
    background: rgb(255, 145, 0); 
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  
  .subscribe-bar button:hover {
    transform: scale(1.05);
    
  }

  .scb-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #555;
  }

  .products {
    display: flex;
    gap: 20px;
    margin: 20px;
    justify-content: center;
  }
  .product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    width: 200px;
    text-align: center;
  }
  .product-card img {
    width: 60px;
    height: auto;
  }
  .product-card h3 {
    font-size: 1rem;
    margin: 10px 0 5px;
  }
  .price {
    font-weight: bold;
    margin: 5px 0;
  }
  .rating {
    color: #ffa500;
  }


  .all-categories-wrapper {
    position: relative;  /* 👈 so the dropdown is positioned relative to this */
    display: inline-block;
  }
  
  .all-categories-trigger {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: border 0.2s ease;
  }
  
  .all-categories-trigger:hover {
    border: 1px solid #002244;
    background-color: #f0f8ff;
  }
  
  .category-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateX(-100); 
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 24px;
    width: 560px;
    z-index: 1000;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .all-categories-wrapper:hover .category-dropdown {
    display: grid;
  }
  
  .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    color: #001a42; /* navy blue */
    font-weight: 600;
    font-size: 14px;
  }
  
  .category-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(200%) hue-rotate(180deg); 
    /* This makes colored icons dark blue-ish. Adjust as needed. */
  }
  
  .category-item:hover {
    background-color: #f5faff;
    border-radius: 6px;
  }

/* Products Section */


/* -------- FILTER BOX ------------------------ */
.filter-box {
  background: white;
  padding: 20px 25px;
  border-radius: 16px;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.filter-box h2 {
  margin-top: 0;
}

.price-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.price-inputs input {
  padding: 8px;
  width: 80px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.icon {
  margin-left: 10px;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 8px;
}
.category-list {
  list-style: none;
  padding: 0;
}
.category-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

input[type="checkbox"] {
  transform: scale(1.2); /* or 2.0, 2.5, etc. */
  margin-right: 8px;      /* optional: spacing to label */
}

.product-search-title {
  text-align: center;
  font-size: 48px;
  color: #001a42;
  margin: 60px 0 20px;
  margin-bottom: 40px;
  font-weight: 700;
}

.search-bar-product {
  padding: 6px 12px;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  width: 300px;
  margin-bottom: 20px;
  margin-left: 450px;
  font-size: 15px;
}
/* -------  PREVIEW -------------------------------- */

.preview-header {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}


.section-title-1 {
  font-size: 40px;
  font-weight: 700;
  color: #001a42;
  text-align: center;
  margin-top: 40px;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  color: #001a42;
  text-align: center;
}



/* -------  PRODUCT CARDS -------------------------------- */


.product-section {
  height: 65vh;
  position: relative;
  display: block;
  justify-content: center;       /* ← centers the content horizontally */
  align-items: flex-start;       /* ← optional: aligns items to top */
  gap: 40px;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(4, 4, 4, 0.1);
  background: #f9f9f9;
  font-family: 'Inter', sans-serif;
  max-width: 1400px;  /* ✅ Add this line */
  margin-left: auto;   /* ✅ Make sure it's centered */
  margin-right: auto;
  margin: 0 auto;   
  margin-bottom: 100px;             /* ← centers the whole section */
}

.product-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
}

.product-card img {
  max-height: 160px;   /* or try 180px, 200px */
  width: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.product-card:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: 0.2s ease;
  cursor: pointer;
}

/* Search */
.section-title {
  font-size: 3rem;
  margin-top: 0.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  color: #001f4d; /* same dark blue as your design */
}

.search-container {
  height: 85vh;
  position: relative;
  padding: 2rem;
  border: 2px solid #001F4D;
  border-radius: 20px;
  max-width: 1300px;
  margin: 0 auto;
  background: transparent;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.product-section-content {
  padding-top: 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.options {
  display: flex;
  justify-content: center;
  gap: 0.5px;
  margin: 5px 0;
  flex-wrap: wrap;
}

.options button {
  background: #f4f4f4;
  border: none;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  color: #333;
}

.options button:hover {
  background: orange;
  color: white;
}

.options button.active {
  background: orange;
  color: white;
}

.options button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

.supplier {
  color: #0066cc;
  font-size: 0.9rem;
  margin: 5px 0;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 5px;
}

.stars {
  color: #f1c40f;
  font-size: 1.1rem;
}

.score {
  font-size: 0.9rem;
  color: #444;
}

/* HAZARD ICONS */
.hazard-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;              /* Increase size if needed */
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  z-index: 10;
}
.hazard-icon img {
  width: 40px;  /* or 28px if needed */
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
}



.compare-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #f3f4f6;
  border-radius: 50%;
  padding: 6px;
  width: 25px;
  height: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: background 0.1s ease;
}

.compare-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-icon:hover {
  background: #001a42;
}

.compare-icon:hover img {
  filter: brightness(0) invert(1);
}

.compare-icon::after {
  content: "Compare";
  position: absolute;
  bottom: 110%;
  right: 0;
  background: #001a42;
  color: #fff;
  padding: 4px 6px;
  font-size: 10px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.compare-icon:hover::after {
  opacity: 1;
}

.add-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f3f4f6;
  border-radius: 50%;
  padding: 6px;
  width: 25px;
  height: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.1s ease;
}

.add-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.2s ease;
  filter: invert(0); /* default icon color */
}

.add-icon:hover {
  background: #001a42;
}

.add-icon:hover img {
  filter: invert(1); /* white icon on hover */
}

.add-icon.selected {
  background: #001a42;
}

.add-icon.selected img {
  filter: invert(1); /* white icon stays */
}

.search-container-compare {
  height: 87vh;
  position: relative;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #001F4D;
  border-radius: 20px;
  max-width: 1300px;
  width: 100%;
  background: transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
  margin-bottom: 3rem;
}


.comparison-table-section {
  margin-top: 40px;         /* Less spacing from products */
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  background: #f9f9f9;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  margin-left: auto;
  margin-right: auto;
}


.comparison-title {
  color: #001a42;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0px;
  margin-bottom: -10px;
  margin: 1rem;
  font-family: 'Inter', sans-serif;
}

.comparison-table table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

.comparison-table th,
.comparison-table td {
  border-top: 1px solid #eee;
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
}

.comparison-table th {
  background-color: #fafafa;
  font-weight: 700;
}

.comparison-table td {
  background-color: #fff;
}
.search-container-compare,
.comparison-table-section {
  box-sizing: border-box;
}

.product-thumb {
  width: 60px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.buy-box {
  height: 77vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: #f7f9fa;
  border-radius: 20px;
  margin: 1rem auto;
  max-width: 1100px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.order-summary {
  flex: 3;
}

.account-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* or a fixed width if needed */
  gap: 1rem;
}

.account-label {
  font-size: 16px;
}

.account-badge {
  background: #e6f4ec; /* your badge background */
  padding: 6px 12px;
  border-radius: 10px;
  text-align: right;
  margin-bottom: 10px;
}

.order-group {
  width: 700px;
  background: white;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.order-table th,
.order-table td {
  text-align: center;
  padding: 0.6rem;
  vertical-align: middle;
}

.order-table th {
  font-weight: bold;
  color: #002244;
}

.requester {
  width: 120px; /* Decrease this value to make it narrower */
  padding: 10px 12px;
  border-radius: 12px;
  color: #002244;
}

.requester.green {
  background-color: #e8f8f3;
}

.requester.peach {
  background-color: #fef4ea;
}

.dropdown,
button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
}

button {
  border-radius: 20px;
  padding: 4px 10px;
  background-color: #f0f0f0;
  margin: 0 4px;
}

.buy-summary-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.order-summary-section {
  flex: 2;
}

.cart-container {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.cart-box {
  background: white;
  margin-top: 70px;
  border: 1px solid #003366;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-line {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.cart-line.total .value {
  font-weight: bold;
  font-size: 1.2em;
}

.vat-note {
  color: #6b7280;
  font-size: 0.9em;
  margin-top: 8px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  font-weight: bold;
  font-size: 1.2rem;
  color: #003366;
}

.summary-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.summary-table th,
.summary-table td {
  padding: 0.5rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.show-more {
  margin-top: 1rem;
  background: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  margin-left: 25px;
  font-weight: bold;
  color: #003366;
  cursor: pointer;
}

.place-order {
  margin-top: 1rem;
  background: #ff7a00;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
}

.vat-note {
  font-size: 0.8rem;
  color: #666;
}

.bin-icon {
  color: #001F4D;
  cursor: pointer;
  margin-left: 8px;
}

.role {
  font-size: 0.8rem;
  color: gray;
}

td.item-column {
  width: 180px; /* or whatever fits your layout */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-column {
  flex: 0 0 180px;
}

.container-buy {
  height: 95vh;
  position: relative;
  padding: 2rem;
  border: 2px solid #001F4D;
  border-radius: 20px;
  max-width: 1300px;
  margin: 0 auto;
  background: transparent;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.section-title-buy {
  margin-top: -5px;
  font-size: 3rem;
  font-weight: 700;
  color: #001a42;
  text-align: center;
}

.subscribe-section {
  background: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.subscribe-title {
  font-size: 2rem;
  color: #001a42;
  font-weight: bold;
  margin-bottom: 10px;
}

.subscribe-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 24px;
}

.subscribe-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.subscribe-bar input {
  padding: 14px 20px;
  border: 1px solid #ccc;
  border-radius: 16px;
  font-size: 16px;
  width: 300px;
  max-width: 80vw;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.subscribe-bar button {
  padding: 14px 24px;
  border: none;
  border-radius: 16px;
  background: #ff7a00;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.subscribe-bar button:hover {
  transform: scale(1.05);
}



.cta-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cta-popup.hidden {
  display: none;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.popup-content input {
  margin-top: 1rem;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.popup-content button {
  position: relative;
  margin-top: 1rem;
  padding: 12px;
  background-color: #ff7a00;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}

.close-popup {
  color: #001a42;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}
.email-input {
  padding: 14px 20px;        /* ← left & right padding: 20px */
  width: 100%;
  box-sizing: border-box;   /* ✅ ensures padding is included in width */
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
}

.email-input::placeholder {
  font-size: 3rem; /* or 16px, 18px, etc. */
}
.row-text {
  color: #001a42;
}
