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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */

.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: #666;
    transition: color 0.3s ease;
    font-size: 0.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: 0.3s;
    border-radius: 2px;
}

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

.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, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    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;
}


/* Home */

.background-title {
    position: absolute;
    top: 9%;
    left: 3.7rem;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05); 
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  
  .home {
      margin-top: 5rem;
      background-color: rgb(158,151,139);
      display: flex;
      align-items: center; 
      justify-content: space-between; 
      height: 100vh;
      width: 100%;
  }
  
    #home .home-title {
      font-size: 4rem;
  }
  
  .home-container {
    flex: 1;
    padding: 2rem;
    margin-left: 4rem;
  }
  
    .home-image {
      flex: 1; 
      padding: 4rem;
  }
  
    .home-image img {
      margin-top: -4.5rem;
      margin-left: -3rem;
      width: 100%;    
  }

  #home h1 {
      font-size: 2.5rem;
      margin-top: .5rem;
      margin-bottom: .5rem;
  }
  
  #home span {
      color: beige;
      font-size: 2.5rem;
  }
  
  .home-content {
    font-size: 2rem;
    line-height: 1.2;
    margin: .5rem 0;
  }

  #home .highlight-1 {
    color: beige;
    font-size: 1.9rem;
  }

  #home .highlight-2  {
     color: black;
  }
 
  .home-subtext-1 {
    font-size: 2.5rem;
    color: beige;
    margin-top: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
 
  .home-subtext {
    font-size: 2.5rem;
    color: beige;
    margin-top: 2rem;
    font-weight: 500;
  }
 
  .home-btn {
    margin-top: 2rem;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
    outline: none;
    border: none;
    border-radius: .5rem;
    background-color: black;
    color: white;
  }
  
  @media (max-width: 768px) {
    .header {
        max-width: 27rem;
    }

    .home {
        flex-direction: column;
        padding-top: 6rem; 
        height: auto;
        text-align: center;
      }
    
      .background-title {
        font-size: 5rem;
        top: 4rem;
        left: 1.5rem;
        white-space: normal;
      }
    
      .home-container {
        padding: 2rem 1rem;
        margin-left: 0;
      }
    
      .home-image {
        padding: 2rem 1rem;
        margin-top: -4.5rem;
        margin-bottom: -2rem;
      }
    
      .home-image img {
        margin: 0 auto;
        width: 90%;
        height: auto;
        display: block;
      }

    .nav-menu {
        display: none;
    }

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

  .home-content  {
    text-align: center;
  }

    .section-title {
        font-size: 2rem;
    }

    .features, .products {
        padding: 4rem 1rem;
    }

    .mega-menu {
        display: none;
    }

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

/* Brands */

.brand-container .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.row img {
  width: 225px;
  height: 225px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .brand-container .row {
    gap: 2rem;
  }

  .row img {
    margin-bottom: -6rem;
    width: 150px;
    height: 150px;
  }
}


/* Swagg */

.swaggs-container {
    display: flex;
    width: 100%;
    margin: 0;
  }
  
  .swagg-item {
    position: relative;
    width: 33.33%; 
    overflow: hidden; 
  }
  
  .swagg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }
  
  .swagg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }
  
  .swagg-details a {
    margin-top: 2rem;
  }
  
  .swagg-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2; 
    padding: 1.2rem;
    border-radius: 0.5rem;
  }
  
  a {
    text-decoration: underline;
    text-underline-offset: .3rem; 
  }
  
  .swagg-btn {
    display: inline-block;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  
  .swagg-btn:hover {
    color: lightgrey;
  }
  
  @media (max-width:768px) {
    .swagg {
      margin-top: 5.5rem;
    }
    .swagg-details {
     font-size: .5rem;
    }
    h2 {
      margin-top: 2rem;
      margin-bottom: -1.5rem;
    }
    .swagg-btn {
      margin-top: 1.5rem;
      font-size: 1rem;
      color: beige;
    }
  }
  
  /* Featured */
  
  .featured-container {
    text-align: center;
  }
  
  .featured-row {
    display: flex;              
    flex-wrap: wrap;            
    gap: 20px;                  
    justify-content: center;    
  }
  
  .featured-product {
    width: 30%;                 
    text-align: center;         
  }
  
  .featured-product img {
    width: 100%;                
    height: 550px;              
  }
  
  .featured-title {
    margin-top: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .featured-tagline {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  
  .featured-tagline {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
  }
  
  .featured-product h5 {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
  }

  
  .product-price {
    font-size: 1.4rem;
    font-weight: 500;
  }
  
  .buy-btn {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: .7rem 2rem;
    outline: none;
    border: none;
    border-radius: .2rem;
    background-color: black;
    color: white;
  }
  
  hr {
    border: 2px solid darkgoldenrod;
    width: 50px;
    height: 2px;
    background-color: #333;
    margin: 20px auto; 
  }  

  @media (max-width: 768px) {
    .featured-row {
      flex-direction: column;
      align-items: center;
    }
  
    .featured-product {
      width: 90%; /* take most of screen width */
    }
  }


  /* Banner */

#banner {
    position: relative;
    background: url('images/clothes2.jpg') no-repeat center center/cover;
    background-attachment: fixed; 
    height: 300px;
    display: flex;
    margin-top: 4rem;
    justify-content: flex-start; 
    align-items: center;
    color: white;
  }
  
  #banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
  }
  
  .banner-wrapper {
    position: relative;
    z-index: 2;
    margin-left: 12rem;
  }
  
  .banner-wrapper h4 {
    margin-bottom: 1rem; 
    font-size: 1.5rem; 
  }
  
  .banner-wrapper h1 {
  
    font-size: 2rem; 
  }
  
  .banner-btn {
    margin-top: 1rem;
    background: black;
    color: white;
    font-size: 1.2rem;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: .4rem; 
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(33, 29, 29, 0.3);
  }
  
  .banner-btn:hover {
    background: #333;
    box-shadow: 0 6px 15px rgba(160, 153, 153, 0.5);
    transform: translateY(-3px);
  }

  @media (max-width: 768px) {
    #banner {
      flex-direction: column;
      padding: 3rem 1rem;
    }
  
    .banner-wrapper {
      width: 100%;
      padding: 0 1rem;
      text-align: center;
      margin-right: 11.5rem;
     
    }
  
    .banner-btn {
      margin-top: 1rem;
    }
  }
  

 /* Tshirts */

.tees {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #tees .tees-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #tees .tees-title {
    font-size: 2rem;
  }
  
  #tees .tees-tagline {
    font-size: 1.5rem;  
  }
  
  #tees .tees-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .tees-product {
    text-align: center;
  }
  
  .tees-product .tees-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .tees-product .tees-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .tees-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .tees-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .tees-img-container img:hover {
    transform: scale(1.1);
  }


  
  /* Tees - Shop Page */
  
  .tees-main {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #tees-main .tees-main-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #tees-main .tees-main-title {
    font-size: 2rem;
  }
  
  #tees-main .tees-main-tagline {
    font-size: 1.5rem;  
  }
  
  #tees-main .tees-main-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .tees-main-product {
    text-align: center;
  }
  
  .tees-main-product .tees-main-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .tees-main-product .tees-main-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .tees-main-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .tees-main-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .tees-main-img-container img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    #tees .tees-row {
      grid-template-columns: 1fr; /* stack in one column */
      margin-left: 1rem;
      margin-right: 1rem;
      gap: 2rem; /* optional: space between stacked items */
    }
  
    .tees-img-container {
      width: 100%;
      max-width: 350px;
      height: auto;
    }
  
    .tees-img-container img {
      width: 100%;
      height: auto;
    }
  
    .tees-product {
      margin: 0 auto; /* center product block */
    }
  }
  
  
  /* Tees Button */
  
  .tees-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;
  }
  
  /* Tees 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;
  }
  
  
  /* Casual Shirts */
  
  .casual {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #casual .casual-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #casual .casual-title {
    font-size: 2rem;
  }
  
  #casual .casual-tagline {
    font-size: 1.5rem;  
  }
  
  #casual .casual-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .casual-product {
    text-align: center;
  }
  
  .casual-product .casual-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .casual-product .casual-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .casual-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .casual-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .casual-img-container img:hover {
    transform: scale(1.1);
  }
  
  /* Casual Button */
  
  .casual-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;
  }
  
  .casual-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;
  }
  
  
  /* Sweaters */
  
  .sweater {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #sweater .sweater-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #sweater .sweater-title {
    font-size: 2rem;
  }
  
  #sweater .sweater-tagline {
    font-size: 1.5rem;  
  }
  
  #sweater .sweater-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .sweater-product {
    text-align: center;
  }
  
  .sweater-product .sweater-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .sweater-product .sweater-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .sweater-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .sweater-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .sweater-img-container img:hover {
    transform: scale(1.1);
  }
  
  
  
  /* Sweaters Button */
  
  .sweater-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;
  }
  
  .sweater-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;
  }
  
  
  /* Jeans */
  
  .jeans {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #jeans .jeans-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #jeans .jeans-title {
    font-size: 2rem;
  }
  
  #jeans .jeans-tagline {
    font-size: 1.5rem;  
  }
  
  #jeans .jeans-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .jeans-product {
    text-align: center;
  }
  
  .jeans-product .jeans-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .jeans-product .jeans-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .jeans-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .jeans-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .jeans-img-container img:hover {
    transform: scale(1.1);
  }
  
  
  
  /* Jeans Button */
  
  .jeans-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;
  }
  
  .jeans-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;
  }
  
  
  /* Blazers */
  
  .blazers {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #blazers  .blazers-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #blazers .blazers-title {
    font-size: 2rem;
  }
  
  #blazers .blazers-tagline {
    font-size: 1.5rem;  
  }
  
  #blazers .blazers-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .blazers-product {
    text-align: center;
  }
  
  .blazers-product .blazers-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .blazers-product .blazers-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .blazers-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .blazers-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .blazers-img-container img:hover {
    transform: scale(1.1);
  }
  
  
  
  /* Blazers Button */
  
  .blazers-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;
  }
  
  .blazers-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;
  }
  
  
  
  /* Watches */
  
  .watches {
    margin-top: 5rem;
  }
  
  #watches .watches-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #watches .watches-title {
    font-size: 2rem;
  }
  
  #watches .watches-tagline {
    font-size: 1.5rem;  
  }
  
  #watches .watches-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .watches-product {
    text-align: center;
  }
  
  .watches-product .watches-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .watches-product .watches-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .watches-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .watches-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .watches-img-container img:hover {
    transform: scale(1.1);
  }
  
  /* Watches Button */
  
  .watches-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;
  }
  
  .watches-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;
  }
  
  @media (max-width: 768px) {
    .watches-tagline {
      margin-left: 1.5rem;
      margin-right: 1.5rem;
    }

    #watches .watches-row {
      grid-template-columns: 1fr; /* Stack products vertically */
      margin-left: 1rem;
      margin-right: 1rem;
      gap: 2rem; /* Adds space between stacked items */
    }
  
    .watches-product {
      margin: 0 auto; /* Center the product */
    }
  
    .watches-img-container {
      width: 100%;
      max-width: 345px;
      height: auto;
    }
  
    .watches-img-container img {
      width: 100%;
      height: auto;
    }
  }
  

  /* Hats */
  
  .hats {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  
  #hats  .hats-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #hats  .hats-title {
    font-size: 2rem;
  }
  
  #hats  .hats-tagline {
    font-size: 1.5rem;  
  }
  
  #hats  .hats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .hats-product {
    text-align: center;
  }
  
  .hats-product .hats-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .hats-product .hats-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .hats-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto; 
  }
  
  .hats-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .hats-img-container img:hover {
    transform: scale(1.1);
  }
  
  
  
  /* Hats Button */
  
  .hats-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;
  }
  
  .hats-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;
  }
  
  
  
  
  /* Shoes */
  
  .shoes {
    margin-top: 5rem;
  }
  
  #shoes .shoes-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  } 
  
  #shoes .shoes-title {
    font-size: 2rem;
  }
  
  #shoes .shoes-tagline {
    font-size: 1.5rem;  
  }
  
  #shoes .shoes-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; 
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  
  .shoes-product {
    text-align: center;
  }
  
  .shoes-product .shoes-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .shoes-product .shoes-price {
    font-size: 1.2rem;
    margin-bottom: -.5rem;
  }
  
  .shoes-img-container {
    width: 345px;
    height: 345px;
    overflow: hidden;
    margin: 0 auto;  
  }
  
  .shoes-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .shoes-img-container img:hover {
    transform: scale(1.1);
  }
  
  
  /* Shoes Button */
  
  .shoes-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;
  }
  
  .shoes-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;
  }

  @media (max-width: 768px) {
    #shoes .shoes-row {
      grid-template-columns: 1fr; /* Stack products in a single column */
      margin-left: 1rem;
      margin-right: 1rem;
      gap: 2rem; /* Add space between stacked items */
    }
  
    .shoes-product {
      margin: 0 auto; /* Center each product block */
    }
  
    .shoes-img-container {
      width: 100%;
      max-width: 345px;
      height: auto; /* Maintain aspect ratio */
    }
  
    .shoes-img-container img {
      width: 100%;
      height: auto; /* Prevent image distortion */
    }
  }
  
  
  
  /* Subscription */
  
  #subscribe {
    height: 21rem;
    margin-top: 9rem;
    text-align: center;
    background-image: url('images/big-city.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    padding: 60px 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) {
    .nav-menu {
        display: none;
    }

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

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features, .products {
        padding: 4rem 1rem;
    }

    .mega-menu {
        display: none;
    }

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