* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}


.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: 1s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: beige;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  transition: 1s;
  padding: 1rem 0;
  position: relative;
}

.nav-link:hover {
  color: beige;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -.5px;
  left: 0;
  width: 0;
  height: 2px;
  background: wheat;
  transition: 1s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mega Menu */

.mega-menu {
  position: absolute;
  top: 100%;
  margin-top: 1rem;
  margin-left: -7rem;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 2rem;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mega-menu-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.mega-menu-section ul {
  list-style: none;
}

.mega-menu-section li {
  margin-bottom: 0.5rem;
}

.mega-menu-section a {
  text-decoration: none;
  color: #333;
  transition: 1s;
  font-size: .9rem;
}

.mega-menu-section a:hover {
  color: #000;
}

/* Mobile Menu */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: .3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: white;
  transform: translateX(-100%);
  transition: 1s;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.mobile-nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin-right: 7.5rem;
  }

  .mobile-menu-toggle {
     background-color: beige;
     border-radius: .5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #333;
    text-align: center;
    padding: 1rem 0;
  }

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

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-icons {
    display: none;
  }
} 

@media (max-width: 768px) {
  .header {
      max-width: 27rem;
  }
  .nav-menu {
      display: none;
  }

  .mobile-menu-toggle {
      display: flex;
  }

  .mega-menu {
      display: none;
  }

  .nav-container {
      padding: 0 1rem;
  }
}



hr {
  border: 2px solid darkgoldenrod;
  width: 50px;
  height: 2px;
  background-color: #333;
  margin: 20px auto; 
}

/* New Arrivals */

.arrivals {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

#arrivals .arrivals-container {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 5rem;
} 

#arrivals .arrivals-title {
  font-size: 2rem;
  padding-top: 5rem;
}

#arrivals .arrivals-tagline {
  font-size: 1.5rem;  
}

#arrivals .arrivals-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 5px; 
  margin-left: 1.5rem;
  margin-right: 2rem;
}

.arrivals-product {
  text-align: center;
}

.arrivals-product .arrivals-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

.arrivals-product .arrivals-price {
  font-size: 1.2rem;
  margin-bottom: -.5rem;
}

.arrivals-img-container {
  width: 345px;
  height: 345px;
  overflow: hidden;
  margin: 0 auto; 
}

.arrivals-img-container img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.arrivals-img-container img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #arrivals .arrivals-tagline {
    margin-left: 2rem;
    margin-right: 2rem; 
  }

  #arrivals .arrivals-row {
    grid-template-columns: 1fr; /* Stack items vertically */
    margin: 0 1rem; /* Optional padding adjustment */
  }

  .arrivals-img-container {
    width: 100%; /* Make image container responsive */
    height: auto;
  }

  .arrivals-img-container img {
    height: auto;
  }
}



/* New Arrivals Button */

.arrivals-buy-btn {
  margin-top: 2rem;
  margin-bottom: 5rem;
  font-size: 1.2rem;
  padding: .7rem 2rem;
  outline: none;
  border: none;
  border-radius: .2rem;
  background-color: black;
  color: white;
}

.arrivals-buy-btn-1 {
  margin-top: 2rem;
  font-size: 1.2rem;
  padding: .7rem 2rem;
  outline: none;
  border: none;
  border-radius: .2rem;
  background-color: black;
  color: white;
}


/* Pagination */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: -3rem;
}

.pagination a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #333;
  color: white;
}

.pagination .active {
  background-color: #333;
  color: white;
}

.tees-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -6rem;
  margin-bottom: -2rem;
}

.tees-pagination a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.tees-pagination a:hover {
  background-color: #333;
  color: white;
}

.tees-pagination .active {
  background-color: #333;
  color: white;
}


/* Subscription */

#subscribe {
  margin-top: 9rem;
  text-align: center;
  background-image: url('images/city1.jpg'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  padding: 100px 20px;
  color: white; 
}

.subscribe-wrapper h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.subscribe-wrapper p {
  font-size: 16px;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe-form input {
  width: 100%; 
  max-width: 400px; 
  height: 45px; 
  padding: 10px 15px;
  font-size: 16px; 
  border-radius: 5px; 
  border: 1px solid #ccc; 
}

.subscribe-btn {
  background: black;
  color: white;
  font-size: 1rem;
  border: none;
  padding: .5rem 1rem;
  border-radius: .4rem; 
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(33, 29, 29, 0.3);
}

.subscribe-btn:hover {
  background: #333;
  box-shadow: 0 6px 15px rgba(160, 153, 153, 0.5);
  transform: translateY(-3px);
}

.subscribe-btn:active {
  transform: scale(0.95);
}

.contact-container {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #333;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.4rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form, .contact-info {
  flex: 1 1 400px;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-btn {
  background-color: #111;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background-color: #444;
}

.contact-form label {
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: .5rem;
  letter-spacing: .5px;
}

.contact-info h3 {
  margin-bottom: 1.75rem;
  font-size: 2.3rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2;
}

.contact-info span {
  margin-left: .5rem;
}

.contact-info i {
  color: black;
  justify-content: center;
  align-items: center;
}

.contact-info .contact-socials .fa-facebook-f {
  color: white;
}

.contact-info .contact-socials .fa-instagram {
  color: white;
}

.contact-info .contact-socials .fa-twitter {
  color: white;
}

.contact-info .contact-socials .fa-linkedin-in {
  color: white;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;             /* Width and height for square shape */
  height: 40px;
  background-color: black;  /* Background box color */
  border-radius: 8px;      /* Rounded corners */
  margin-right: 1rem;
  margin-top: .75rem;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-socials a:hover {
  background-color: #0077ff; /* Hover background */
  transform: scale(1.1);     /* Slight zoom on hover */
}


@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}



  /* Footer */

  .footer {
    background: black;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
  
    background-size: 400% 100%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: .5rem;
    color: beige;
    position: relative;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand .brand-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #b0b0b0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 1s;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: 1s;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.featured-links {
  margin-left: -1rem;
}

.quick-links {
  margin-left: -1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: black;
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item div h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item div p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.newsletter p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: black;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}



@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .demo-content h1 {
        font-size: 2rem;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        align-self: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-section h2 {
        font-size: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .newsletter {
        padding: 20px;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }
  
    .logo {
      order: 1;
    }
  
    .menu-toggle {
      display: block;
      order: 2;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #333;
      text-align: center;
      padding: 1rem 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 1rem 0;
    }
  
    .nav-icons {
      display: none;
    }
  } 
  