/* Header Styles */
.a_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    padding: 20px 0;
}

.a_header.a_active,
.a_header:hover,
.a_header.a_scrolled {
    background-color: #183544;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.a_header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Menu */
.a_menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.a_menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
}

/*.a_menu-toggle.a_active span:nth-child(1) {*/
/*    transform: rotate(45deg) translate(8px, 8px);*/
/*}*/

/*.a_menu-toggle.a_active span:nth-child(2) {*/
/*    opacity: 0;*/
/*}*/

/*.a_menu-toggle.a_active span:nth-child(3) {*/
/*    transform: rotate(-45deg) translate(7px, -7px);*/
/*}*/

/* Logo */
.a_logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a_logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    margin-left: 70px !important;
     margin-top: 20px !important;
    filter: brightness(0) invert(1);
}

/* Header Icons */
.a_header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.a_icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.a_icon-btn:hover {
    opacity: 0.7;
}

.a_icon-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.a_cart-icon {
    width: 19px;
    height: 19px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.a_cart-text {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 300;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* Navigation Dropdown */
.a_nav-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    z-index: 998;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.a_nav-dropdown.a_open {
    max-height: 500px;
    padding: 40px 0 20px;
}

.a_nav-dropdown-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.a_close-btn {
    position: absolute;
    top: 0;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Regular header icons (other icons) */
.a_icon-image {
    width: 19px;   /* smaller size */
    height: 19px;
}

/* Cart icon */
.a_cart-icon {
    width: 24px;   /* slightly bigger than other icons if you like */
    height: 24px;
}

.a_nav-menu {
    list-style: none;
}

.a_nav-menu li {
    margin-bottom: 25px;
}

.a_nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
    transition: color 0.3s ease;
    display: inline-block;
}

.a_nav-link:hover {
    color: #666;
}

.a_nav-link.a_active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Hero Section */
.a_hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a_hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.a_hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Content */
.a_hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.a_hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.a_shop-now-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
    color: white;
    padding: 15px 50px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border-radius: 30px; /* Add this */
}

.a_shop-now-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


 .a_cart-icon {
        display: none; /* hide icon on desktop */
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .a_header-container {
        padding: 0 20px;
    }

    .a_logo-image {
        max-height: 35px;
    }

    .a_header-icons {
        gap: 4px;
    }

      .a_cart-text {
        display: none; /* show text */
    }

     .a_cart-icon {
        display: inline; /* hide icon on desktop */
    }

    .a_icon-image,
    .a_cart-icon {
        width: 18px;
        height: 18px;
    }

    .a_cart-text {
        font-size: 10px;
    }

    .a_hero-title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .a_shop-now-btn {
        padding: 12px 40px;
        font-size: 12px;
    }

    /* Rotate video 90 degrees on mobile */
    .a_hero-video {
        width: 100vh;
        height: 100vw;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-90deg);
    }

    .a_hero-video-container {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .a_hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .a_nav-dropdown-content {
        padding: 0 20px;
    }

    .a_close-btn {
        right: 20px;
    }
}


/* ===== SECOND HEADER SEARCH BAR ===== */
.second-search-bar-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.second-search-bar-wrapper .second-search-bar {
  width: 80%;
  max-width: 600px;
  padding: 10px 40px 10px 15px; /* right padding for icon */
  border-radius: 25px;
  border: 1px solid #2c2c2c;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.second-search-bar-wrapper .second-search-bar:focus {
  border-color: #183544;
  box-shadow: 0 0 5px rgba(24, 53, 68, 0.5);
}

.second-search-bar-wrapper .close-icon {
  position: absolute;
  top: 50%;
  right: calc((100% - 43%) / 2 + 15px);
  transform: translateY(-50%);
  font-size: 18px;
  color: #2c2c2c;
  cursor: pointer;
}

/* Hidden by default */
.second-search-bar-wrapper.hidden {
  display: none;
}

/* Optional: style search results */
.second-search-bar-wrapper .search-results {
  position: absolute;
  top: 100%; /* right below the input */
  left: 50%; /* start from the horizontal center */
  transform: translateX(-50%); /* center it exactly under the input */
  width: 80%;
  max-width: 600px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

.second-search-bar-wrapper .search-item {
  padding: 10px 15px;
  cursor: pointer;
}

.second-search-bar-wrapper .search-item:hover {
  background-color: #f2f2f2;
}

.second-search-bar-wrapper .no-results {
  padding: 10px 15px;
  color: red;
}


@media (max-width: 480px) {
   .second-search-bar-wrapper .close-icon {
  right: calc((100% - 77%) / 2 + 15px);
}

}




.video-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 100;
}

.vc-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.vc-btn:hover {
  background: rgba(0,0,0,0.8);
}



