/* TOP MENU */
.top-menu {
  font-size: 14px;
}
.top-menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}
.top-menu .active {
  color: red;
}

/* LOGO */
.verizon-logo {
  font-size: 38px;
  font-weight: 700 !important;
  letter-spacing: -1px;
}

/* NAV LINKS */
.item-link {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}
.item-link:hover {
  text-decoration: underline;
}

/* SEARCH BOX */
.search-box {
  border: 1px solid #333;
  border-radius: 50px;
  padding: 3px 10px;
}
.search-box input {
  border: none;
  outline: none;
  font-size: 15px;
}
.search-box button {
  border: none;
  background: transparent;
  cursor: pointer;
}

/* PROMO BAR */
.promo-bar {
  background: #f9ff00;
  width: 100%;
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.promo-text {
  text-align: center;
  max-width: 80%;
}

.promo-arrow-left,
.promo-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.promo-arrow-left {
  left: 20px;
}

.promo-arrow-right {
  right: 20px;
}





/* Category Buttons */
.category-btn {
  background-color: #f8f5ef;
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background-color: #ece8e1;
  transform: translateY(-2px);
}
.deal-banner {
  position: relative;
  background-color: red;
  border-radius: 20px;
  margin: 40px auto;
  padding: 20px 0px;
  width: 100%;
  overflow: hidden;
}

/* Background video fills the banner */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

/* Text sits on top of video */
.deal-banner .content {
  position: relative;
  z-index: 2;
}

/* Optional dark overlay for better text visibility */
.deal-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.deal-banner h3 {
  font-size: 2.2rem;
}

.deal-banner h1 {
  font-size: 6rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-dark {
  background-color: #000;
  border: none;
  font-weight: 600;
}

.btn-dark:hover {
  background-color: #222;
}

.promo-section {
  background-color: #fff;
}

.promo-card {
  background: linear-gradient(135deg, #e60000, #c50000);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.promo-card h4 {
  color: #fff;
}

.promo-banner {
  background: linear-gradient(135deg, #e60000, #c50000);
}

.deal-box {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 10px 20px;
  display: inline-block;
}

.btn-dark:hover {
  background-color: #000;
}




.content-box:hover {
  transform: translateY(-5px);
}



.deal-bg-card {
  height: 430px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.12);
  transition: transform 0.35s ease;   /* ✅ animation added */
}

.deal-bg-card:hover {
  transform: scale(1.03);   /* ✅ smooth enlarge */
}

.deal-bg-card .inner-text {
  
  padding: 12px;
  border-radius: 10px;
  max-width: 92%;
}

.deal-bg-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.deal-bg-card p {
  font-size: 14px;
  margin: 0;
}

.save-box {
  background: #f7f1e6;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  min-height: auto;
}

.icon-box {
  right: 20px;
  display:  flex;
  justify-content: space-between;
  bottom: 20px;
}

.icon-box i {
  font-size: 36px;
  color: #d60000;     /* red shade */
}

.cat-img {
  width: 100px;
  height: auto;
}

p {
  margin: 0;
}


.footer-area ul.footer-list li {
  margin-bottom: 6px;
  margin-top: 10px;
  font-size: 17px;
  cursor: pointer;
}

.footer-area ul.footer-list li:hover {
  text-decoration: underline;
}


.verizon-footer {
  border-top: 1px solid #ddd;
  color: #333;
  font-size: 14px;
}

.verizon-logo {
  color: #e60000;
  font-weight: bold;
  font-size: 30px;
}

.footer-links a,
.verizon-footer a {
  color: #333;
  text-decoration: none;
  margin-right: 15px;
}

.footer-links a:hover,
.verizon-footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  white-space: nowrap;
}

.sticky-popup {
position: fixed;
bottom: 20px;
left: 20px;
width: 70%;
background: #fff;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
z-index: 999;
}
.close-btn {
font-size: 20px;
line-height: 20px;
cursor: pointer;
}
.btn-red{
  color: white;
  background-color: red;
}
.btn-red:hover{
  color: white;
  background-color: red;
}

@media (max-width: 1200px) {
 .deal-banner {
  position: relative;
  background-color: red;
  border-radius: 20px;
  margin: 40px auto;
  padding: 20px 0px;
  width: 100%;
  overflow: hidden;
}

/* Background video fills the banner */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

/* Text sits on top of video */
.deal-banner .content {
  position: relative;
  z-index: 2;
}

/* Optional dark overlay for better text visibility */
.deal-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.deal-banner h3 {
  font-size: 1.8rem;
}

.deal-banner h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

}
@media (max-width: 992px) {
 .deal-banner {
  position: relative;
  background-color: red;
  border-radius: 20px;
  margin: 40px auto;
  padding: 15px 0px;
  width: 90%;
  overflow: hidden;
}

/* Background video fills the banner */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

/* Text sits on top of video */
.deal-banner .content {
  position: relative;
  z-index: 2;
}

/* Optional dark overlay for better text visibility */
.deal-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.deal-banner h3 {
  font-size: 1.4rem;
}

.deal-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

}
@media (max-width: 768px) {
 .deal-banner {
  position: relative;
  background-color: red;
  border-radius: 20px;
  margin: 40px auto;
  padding: 15px 0px;
  
  height: 200px;
  overflow: hidden;
}
.sticky-popup {
position: fixed;
bottom: 20px;
left: 20px;
width: 80%;
background: #fff;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
z-index: 999;
}
/* Background video fills the banner */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  z-index: 0;
}
.deal-bg-card {
  height: 550px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.12);
  transition: transform 0.35s ease;   /* ✅ animation added */
}
  .deal-banner h1 {
    font-size: 2rem;
  }
  .deal-banner h3 {
    font-size: 1rem;
  }
  



}

@media (max-width: 500px) {
 .deal-banner {
  position: relative;
  background-color: red;
  border-radius: 20px;
  margin: 40px auto;
  padding: 15px 0px;
  height: 220px;
  overflow: hidden;
}
.sticky-popup {
position: fixed;
bottom: 20px;
left: 20px;
width: 92%;
background: #fff;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
z-index: 999;
}

/* Background video fills the banner */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  z-index: 0;
}
  .deal-banner h1 {
    font-size: 2rem;
  }
  .deal-banner h3 {
    font-size: 1rem;
  }
}
