html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:Arial, Helvetica, sans-serif ;
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
   overflow-x: hidden;
}
header {
  background: transparent;
  position:absolute;
  width: 100%;
  z-index: 1000; 
}
.nav-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;  
}
.logo {
  color: #ca8989;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  flex: 1;
  letter-spacing: 1px;
  text-align: left;
}
.logo .one {
  font-size: 36px;
  color: #1cdada;
}
.hamburger-icon {
  display: none;
  font-size: 24px;
  color: #c6adad;
  cursor: pointer;
}
#toggle-bar {
  display: none;
}
.navmenu-links {
  display: flex;
  list-style: none;
  gap: 15px;
  flex: 2;
  justify-content: center;
  position: relative; 
}
.navmenu-links li {
  position: relative;
}
.navmenu-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}
.navmenu-links a:hover {
  border-bottom: 5px solid #3b5559;
}
.dropdown-contents .dropdown-menulist {
  display: none;
  position: absolute;
  top: 40px;
  background: rgba(126, 140, 181, 0.7);
  list-style: none;
  min-width: 180px;
  z-index: 999;
}
.dropdown-contents:hover .dropdown-menulist {
  display: block;
}
.dropdown-menulist li {
  position: relative;
}
.dropdown-menulist-sub {
  display: none;
  position: absolute;
  top: 0;
  left: 180px;
  background: rgba(126, 140, 181, 0.7);
  list-style: none;
  min-width: 160px;
}
.dropdown-sub:hover .dropdown-menulist-sub {
  display: block;
}
.dropdown-menulist li a,
.dropdown-menulist-sub li a {
  padding: 10px;
  display: block;
  text-align: left;
  color: #fff;
}
.search-field {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: scale(0.9);
}
.search-field input {
  padding: 8px 12px;
  border-radius: 20px 0 0 20px;
  border: none;
  outline: none;
  font-size: 14px;
}
.search-field button {
  padding: 8px 12px;
  border-radius: 0 20px 20px 0;
  border: none;
  background: #00bcd4;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hamburger-icon {
    display: block;
    order: 0;
  }
  .logo {
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }
  .search-field {
    width: 100%;
    justify-content: center;
    margin-left: 6px;
   
  }
  .navmenu-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.735);
    text-align: center;
    order: 2;
    gap: 1rem;
    
  }
  #toggle-bar:checked ~ .navmenu-links {
    display: flex;
    align-items: center;
  }
  .dropdown-menulist{
    position: static;
    background:rgba(1, 5, 19, 0.7);
  }
  .dropdown-menulist-sub {
    position: static;
    margin-left: 50%;
    background:rgba(25, 44, 100, 0.7);
  }
}
header.scrolled {
  background-color: rgba(41, 44, 88, 0.8); /* dark background on scroll */
  transition: background-color 0.3s ease;
}
.header-img {
    width: 100%;
    height: auto;
    display: block;
    background-size: cover; 
    background-repeat: no-repeat;
    margin: 0 auto; 
    max-height: 450px;
    position: static;
}
.footer {
  background: radial-gradient(circle at top left, #1b2a4b, #2f3e5f);
  color: #fff;
  padding: 50px 20px 30px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  font-size: 16px;
  line-height: 24px;
}
.footer-logo {
  max-width: 250px;
}
.footer-logo h2 {
  font-size: 26px;
  color: #ca8989;
  margin-bottom: 12px;
  font-weight: bold; 
}
.footer-logo .x {
  color: #1cdada;
  font-size: 30px;
}
.footer-logo p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}
.footer-links {
  min-width: 150px;
}
.footer-links h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #1cdada;
  text-decoration:none;
}
.footer-socials h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.footer-socials a {
  margin-right: 12px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: #1cdada;
}
.footer-connect {
  max-width: 200px;
}
.footer-connect h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
.footer-connect p {
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-connect i {
  margin-right: 8px;
  color: #1cdada;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
 .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
  }
  .footer-links{
    grid-template-columns: repeat(2,1fr);
    
  }
  .footer-logo,
  
  .footer-connectt,
  .footer-socials {
    margin-bottom: 30px;
  }
  .footer-logo p {
    margin-bottom: 20px;
  }

.footer-connect p{
  font-size: 14px;
}

.footer-connect p:hover {
  color: #00bcd4;
  cursor: pointer; 
  transition: 0.3s; 
}
.theme-toggle {
  margin-left: auto;
  padding: 0 15px;
}}
#mode-switch {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-color);
}
.casual-watches {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}
.casual-watches h2{
  text-align: center;
  font-size: 28px;
}
.watch-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  justify-items: center;
}
.product-card{
  border: 1px solid rgb(55, 27, 183);
  padding: 6px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(110, 178, 207, 0.728);
  border-radius: 15px;
  width: 87%;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img{
  width: 70%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
  margin-top: 4px;
}

.product-details{
  padding: 16px
}
.product-details h2{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.product-details .price{
  color: #213e9f;
  font-weight: bold;
  font-size: large;
}
.desc {
  font-size: 0.9rem;
  margin: 6px 0;
}
.product-details .desc{
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: #333;
}
.view-details-btn{
  background-color: cornflowerblue;
  font-size: 14px;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  margin: 4px; 
  border: 2px solid rgb(134, 134, 219);
}
.view-details-btn:hover{
  background-color:rgb(89, 89, 219);
  cursor: pointer;
}
.add-cart-btn{
  background-color:rgb(156, 212, 101);
  color: #fff;
  font-size: 14px;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  margin: 4px;
  border: 2px solid rgb(82, 214, 122);
}
.add-cart-btn:hover {
  background-color:rgb(163, 231, 96);
  cursor: pointer;
}

@media(max-width:768px) {
    .watch-grid {
    /* On tablets, show 2 columns */
        grid-template-columns: repeat(2, 1fr);
    }
}
.product-card {
  border: 1px solid rgb(55, 27, 183);
  padding: 6px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(110, 178, 207, 0.728);
  border-radius: 15px;
  width: 87%;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%; /* Image ko full width par set kiya hai */
  height: 300px;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
  margin-top: 4px;
}
/* Tablet screens ke liye */
@media (max-width: 1024px) {
  .product-card {
    width: 45%; /* 2 product cards ko side by side dikhane ke liye */
    margin: 10px;
  }
}

/* Mobile screens ke liye */
@media (max-width: 768px) {
  .product-card {
    width: 90%; /* 1 product card ko full width par dikhane ke liye */
    margin: 10px auto;
  }
  .product-card img {
    height: 250px; /* Image ki height ko adjust kiya hai */
  }
}

/* Small mobile screens ke liye */
@media (max-width: 480px) {
  .product-card {
    width: 95%; /* 1 product card ko full width par dikhane ke liye */
    margin: 10px auto;
  }
  .product-card img {
    height: 200px; /* Image ki height ko adjust kiya hai */
  }
}
.hidden-details{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out;
  width: 100%;
  margin-top:15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  text-align: left;
}
.hidden-details.show{
  max-height:800px;
  opacity: 1;
}
.hidden-details ul{
  list-style: none;
  padding: 0;
  margin: 10px ;
}
.hidden-details ul li{
 margin-bottom: 4px;
 font-size:0.95em;
 line-height:1.3;
}
.hidden-details strong{
  font-size: larger;
  color: #1b2e57;
}
.cart-icon-box{
  position: relative;
  margin-left: 18px;
}
.cart-icon{
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  position: relative;
  display: flex;
  align-items: center;
}
.cart-items-quantity{
  position:absolute;
  top: -10px;
  right: -10px;
  background:lightseagreen;
  color: whitesmoke;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
}
.cart-alert.show {
  opacity: 1;
}
.cart-alert i {
  font-size: 1.1rem;
}
.cart-sheet{
  padding: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.cart-products{
  margin-top: 2rem;
  margin-left: 3rem;
}
.cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.cart-item-img {
  width: 100px;
  height: 150px;
  object-fit: contain;
  margin-right: 1rem;
}
.cart-item-details {
  flex-grow: 1;
}
.cart-item-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: bold;
  color: #333;
}

.cart-item-remove {
  color: #ff6b6b;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.3rem;
  position: relative;
  bottom: 20px;
  right: 8%;
}
.cart-overview{
  margin-top: 2rem;
  text-align: right;
  position: relative;
}
.cart-total{
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  bottom: 75px;
  right: 8%;
}
.checkout-btn{
  background-color: #1b2a4b;
  color: #fff;
  border: none;
  margin-top: 1.1rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  right: 8%;
  
 
}
.checkout-btn:hover{
  background: #00bcd4;
}
/* Add to watches.css */
.cart-alert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(32,107,106,0.85);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  z-index: 1000;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@keyframes fadeInOut {
  0% { opacity: 0; bottom: 0; }
  20% { opacity: 1; bottom: 20px; }
  80% { opacity: 1; bottom: 20px; }
  100% { opacity: 0; bottom: 0; }
}
.cart-header{
    width: 100%;
    display: block;
    background-repeat: no-repeat;
    margin: 0 auto; 
    max-height: 90px;
    position: static;
}
.search-field-h{

  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: scale(0.9);
}
@media (max-width:768px){
  /* Cart icon in navbar */
  .cart-icon-box {
    margin-left: 10px;
    order: 1; 
  }
  .search-field-h{
    display: none;
  }
  .cart-icon {
    font-size: 1.9rem;
    position: absolute;
    right: 10%;
    bottom: 70%; 
  }
  .cart-items-quantity {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    top: -8px;
    right: -8px;
  }

  .cart-sheet {
    padding: 1rem;
  }

  .cart-products {
    margin-left: 20px;
    margin-top: 1rem;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    position: relative;
  }

  .cart-item-img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .cart-item-details {
    width: 100%;
  }

  .cart-item-remove {
    position: absolute;
    bottom: 10px;
    right: 0;
    font-size: 1.1rem;
  }

  .cart-overview {
    margin-top: 1rem;
    padding-bottom: 60px; 
  }

  .cart-total {
    right: 0;
    bottom: 0;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .checkout-btn {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
  }

  .empty-cart-message {
    text-align: center;
  }
  
  .empty-cart-message .continue-shopping-btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  
  .cart-alert {
    width: 90%;
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}
.contact-header-page {
     
      background-image: url('contact.png');
      background-size: cover;
      background-position: center;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      margin-bottom: 45px;
      margin-top: 10px;
    }
    .contact-header-page h1 {
      font-size: 2.3rem;
      margin-bottom: 12px;
    }
    .contact-box {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      gap: 30px;
    }
    .contact-form {
      flex: 1;
      min-width: 310px;
    }
    .contact-info {
      flex: 1;
      min-width: 310px;
    }
    .form-group {
      margin-bottom: 21px;
    }
    .form-group label {
      display: block;
      margin-bottom: 7px;
      font-weight: 600;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 13px;
      border: 1px solid #000000;
      border-radius: 5px;
      font-size: 16px;
    }
    .form-group textarea {
      height: 155px;
      resize: vertical;
    }
    .submit-btn {
      background-color: #141747;
      color: white;
      border: none;
      padding: 12px 30px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s;
    }
    .submit-btn:hover {
      background-color: #1eb7d2;
    }
    .contact-page-card {
      background: #d2d2d7;
      padding: 28px;
      border-radius: 7px;
      margin-bottom: 30px;
      box-shadow: 0 2px 10px rgba(86, 16, 79, 0.966);
    }
    .contact-page-card h3 {
      margin-bottom: 19px;
      font-size: 1.6rem;
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 19px;
    }
    .contact-icon {
      font-size: 20px;
      margin-right: 15px;
      color: #252424;
    }
    .contact-text h4 {
      margin-bottom: 5px;
      font-size: 1.2rem;
    }
    .contact-text p {
      color: #525252;
    }
    .business-timings {
      margin-top: 30px;
    }
    .business-timings li {
      display: flex;
      justify-content: space-between;
      margin-bottom: 9px;
      padding-bottom: 10px;
      border-bottom: 1px solid #eee;
    }
    @media (max-width: 768px) {
      .contact-box {
        flex-direction: column;
      }
    }
    .bg-header{
      width: 100%;
      height: 90px;
    }
.faq-page-header {
  background: radial-gradient(circle at top left, #1b2a4b, #2f3e5f);
  background-size: cover;
  background-position: center;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.faq-page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.faq-box {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.faq-items {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-toggle-bars {
  display: none;
}

.faq-questions {
  padding: 15px 20px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.faq-questions:hover {
  background-color: #e9e9e9;
}

.faq-questions i {
  transition: transform 0.3s;
}

.faq-answers {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s;
  background-color: white;
}

.faq-toggle-bars:checked + .faq-questions {
  background-color: #141747;
  color: white;
}

.faq-toggle-bars:checked + .faq-questions i {
  transform: rotate(45deg);
}

.faq-toggle-bars:checked ~ .faq-answers {
  max-height: 200px;
  padding: 15px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-page-header {
    height: 180px;
    padding: 0 20px;
  }
  
  .faq-page-header h1 {
    font-size: 1.8rem;
  }
  
  .faq-questions {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .faq-answers {
    font-size: 0.9rem;
  }
}

.rp-header {
  background: radial-gradient(circle at top left, #1b2a4b, #2f3e5f);
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 1px;
}

.rp-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.rp-box {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.rp-items {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.rp-toggle {
  display: none;
}

.rp-ques {
  padding: 15px 20px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.rp-ques:hover {
  background-color: #e9e9e9;
}
.rp-ques i {
  transition: transform 0.3s;
}

.rp-answers {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s;
  background-color: white;
}

.imp-note {
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
}

.rp-toggle:checked + .rp-ques {
  background-color: #141747;
  color: white;
}

.rp-toggle:checked + .rp-ques i {
  transform: rotate(45deg);
}

.rp-toggle:checked ~ .rp-answers {
  max-height: 1000px;
  padding: 15px 20px;
}

/* Content styling */
.rp-answers p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.rp-answers ul,
.rp-answers ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.rp-answers li {
  margin-bottom: 8px;
}


@media (max-width: 768px) {
  .rp-header {
    height: 180px;
    padding: 0 20px;
  }
  
  .rp-header h1 {
    font-size: 1.8rem;
  }
  
  .rp-ques {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .rp-answers {
    font-size: 0.9rem;
  }
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #141747;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1eb7d2;
}


.categories-showcase {
  padding: 0 20px;
  margin-bottom: 50px;
}

.categories-showcase h2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top:30px;
  font-size: 2rem;
}

.categories-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.categ-card {
  min-width: 250px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s;
}

.categ-card:hover {
  transform: translateY(-5px);
}
.categ-card img {
  width: 100px;            
  height: 100px;            
  object-fit: contain;         
  border-radius: 50%;       
  margin: 0 auto;           
  display: block;           
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0 0 10px rgba(110, 178, 207, 0.728);
}
.categ-card h3 {
  text-align: center;
  margin-top: 10px;
  color: #000000;
}

/* Featured Products */
.featured-items {
  padding: 0 20px;
  margin-bottom: 50px;
}

.featured-items h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #141747;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.item-cards {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.item-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item-cards img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.item-cards h3 {
  padding: 15px;
  color: #141747;
}

.item-cards p {
  padding: 0 15px 15px;
  color: #666;
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .categ-card {
    min-width: 200px;
  }
  
  .items-grid {
    grid-template-columns: 1fr;
  }
}
.about-page-header {
    background-color: #1b2e57;
    background-size: cover;
    background-position: center;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 15px;
}

.abt-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-section {
    margin-bottom: 40px;
    text-align: center;
}

.abt-section h2 {
    color: #141747;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.abt-section p {
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.squad-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.squad-card {
    width: 200px;
    text-align: center;
}

.squad-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1cdada;
    margin-bottom: 15px;
}

.squad-card h3 {
    color: #141747;
    margin-bottom: 5px;
}

.squad-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-page-header {
        height: 200px;
    }
    .about-page-header h1 {
        font-size: 2rem;
    }
    .squad-card {
        width: 160px;
    }
    .squad-card img {
        width: 120px;
        height: 120px;
    }
}
.page-header-img {
    width: 100%;
    height: 110px; 
    display: block; 
    margin-bottom: 20px; 
}
main > .support-hero { 
    max-width: 1000px;
    margin: 0 auto 50px auto;
    padding: 30px 20px;
    background-color: #282b5d;
    border-radius: 8px;
    box-shadow: 1px 2px 10px rgb(94, 163, 193);
}

main > .support-hero h1 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

main > .support-hero p {
    font-size: 1.1em;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.support-sections-simplified { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px; 
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.support-card { 
    background-color: #c6bebe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.support-card i {
    font-size: 3em;
    color: #a0a0a0;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.support-card:hover i {
    color: #846e6e;
}

.support-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 600;
    border: 1px solid rgb(0, 0, 0);
  
}
.support-card h3:hover{
  transition: 0.3s ease;
}

.support-card h3 a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.support-card h3 a:hover {
    color: #000;
}

.support-card p {
    font-size: 0.95em;
    color: #000000;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-header-img {
        height: 180px; 
        margin-bottom: 30px;
    }
    main > .support-hero h1 {
        font-size: 2em;
    }
    main > .support-hero p {
        font-size: 1em;
    }
    .support-sections-simplified {
        grid-template-columns: 1fr;
    }
    .support-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-header-img {
        height: 150px;
    }
    main > .support-hero {
        margin: 0 auto 30px auto;
        padding: 20px 15px;
    }
    main > .support-hero h1 {
        font-size: 1.8em;
    }
    .support-card i {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    .support-card h3 {
        font-size: 1.2em;
    }
    .support-card p {
        font-size: 0.9em;
    }
}
/* New Editions Hero Section */
.new-editions-hero {
    text-align: center;
    margin: 0 auto 50px auto; /* Center hero, space below it */
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    max-width: 1000px; /* Match content width */
}

.new-editions-hero h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.new-editions-hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}
.new-edition-showcase {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
    max-width: 600px; 
    margin: 0 auto 50px auto; 
    padding: 0 16px; 
}
.edition-item {
    background-color: #dfe0e4;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 100%; 
    box-sizing: border-box; 
}

.edition-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);}

.edition-item img {
    width: 100%; 
    max-width: 350px; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border-radius: 4px; 
    margin-bottom: 20px;
    border: 1px solid #eee; /
}

.edition-item h3 {
    font-size: 1.6em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.edition-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .page-header-img {
        height: 180px;
        margin-bottom: 30px;
    }
    .new-editions-hero h1 {
        font-size: 2em;
    }
    .new-editions-hero p {
        font-size: 1em;
    }
    .new-edition-showcase {
        gap: 30px;
    }
    .edition-item {
        padding: 25px;
    }
}
@media (max-width: 480px) {
    .page-header-img {
        height: 150px;
    }
    .new-editions-hero {
        margin: 0 auto 30px auto;
        padding: 20px 15px;
    }
    .new-editions-hero h1 {
        font-size: 1.8em;
    }
    .edition-item {
        padding: 20px;
    }
    .edition-item img {
        max-width: 250px; 
    }
    .edition-item h3 {
        font-size: 1.4em;
    }
    .edition-item p {
        font-size: 0.9em;
    }
}
/* ---------------- HERO BANNER ---------------- */
.hero-banner {
  background: url('homeheader.png') center center / cover no-repeat;
  width: 100%;
  min-height: 450px; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  color: white;
  position: relative;
}

.hero-banner::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-btns .btn-primary,
.hero-btns .btn-secondary {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px;
  font-weight: bold;
  display: inline-block;
}
.btn-primary {
  background: #222;
  color: #fff;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #444;
}
.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: white;
  color: black;
}

/* FEATURED PRODUCTS STYLING - MATCH CART DESIGN */
.featured-products {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.featured-products h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  justify-items: center;
}

.featured-card {
  border: 1px solid rgb(55, 27, 183);
  padding: 6px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(110, 178, 207, 0.728);
  border-radius: 15px;
  width: 87%;
  transition: transform 0.2s;
  background-color: #fff;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-card img {
  width: 70%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px 10px 0 0;
  margin-top: 4px;
}

.featured-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.featured-card p {
  color: #213e9f;
  font-weight: bold;
  font-size: large;
  margin-bottom: 14px;
}

/* Buttons same as cart style */
.featured-card .btn-primary {
  background-color: cornflowerblue;
  font-size: 14px;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  margin: 4px;
  border: 2px solid rgb(134, 134, 219);
  display: inline-block;
  text-decoration: none;
}

.featured-card .btn-primary:hover {
  background-color: rgb(89, 89, 219);
  cursor: pointer;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------- WHY CHOOSE US ---------------- */
.why-choose-us {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}
.why-choose-us h2 {
  font-size: 2rem;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.reason {
  background:#b2c6f7;
  padding: 20px;
  border-radius: 8px;
  transition: 0.3s;
}
.reason i {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}
.reason h4 {
  margin-bottom: 8px;
}
.reason:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ---------------- CUSTOMER REVIEWS ---------------- */
.customer-reviews {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}
.customer-reviews h2 {
  font-size: 2rem;
}
.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.review-card {
  background:#b2c6f7;
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  transition: 0.3s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.review-card p {
  font-style: italic;
}
.review-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* ---------------- RESPONSIVE FIXES ---------------- */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}
