* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 26s linear infinite;
}

.announcement-item {
    display: inline-block;
    padding: 0 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Desktop Navigation */
.desktop-nav {
    background: #fff;
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
}

.search-bar {
    padding: 0 20px 20px 20px;
    border-bottom: 1px solid #eee;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons svg {
    cursor: pointer;
    transition: stroke 0.3s;
}

.nav-icons svg:hover {
    stroke: #e74c3c;
}

/* Dropdown Menus */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}

.dropdown-item:hover {
    background: #f8f8f8;
}

.dropdown-item a {
    text-decoration: none;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.dropdown-item:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-icons {
    display: flex;
    gap: 15px;
}

.mobile-icons svg {
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    transition: left 0.3s;
    overflow-y: auto;
    z-index: 2000;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-items {
    padding: 20px;
}

.mobile-menu-item {
    margin-bottom: 15px;
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu-item {
    padding: 8px 0;
    font-size: 13px;
}

.mobile-social {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-top: 1px solid #eee;
    justify-content: center;
}

.mobile-social svg {
    cursor: pointer;
    transition: fill 0.3s;
}

.mobile-social svg:hover {
    fill: #e74c3c;
}

.social-link {
    color: #000;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.6;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
}

.overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/hero.jpeg) center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 50px;
    color: #fff;
    position: relative;
}

.hero h1 {
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #fff;
    background: transparent;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Product Page */
.product-page {
    display: none;
    /* padding: 80px 50px; */
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.product-page.active {
    display: block;
}

.product-container {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.thumbnail {
    width: 100px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #000;
}




.product-image-container {
    height: auto;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.product-info {
    padding: 0 20px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.size-selector {
    margin-bottom: 30px;
}

.size-selector h3 {
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 12px 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.size-option:hover,
.size-option.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.add-to-cart-btn:hover {
    background: #e74c3c;
}

.product-description {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-description h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-description p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
}

.product-description li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.product-description li:before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Related Products */
.related-products {
    /* margin-top: 80px; */
}

.related-products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    height: 350px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price-tag {
    font-size: 18px;
    font-weight: bold;
}

.remove-fav-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    margin: 10px auto 0;
    transition: background 0.3s;
}

.remove-fav-btn:hover {
    background: #c0392b;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 60px 0 40px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    color: #111;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.55);
    -webkit-font-smoothing: antialiased;
}
    
  .section-title h1 {
          /* font-size: 18px; */
          letter-spacing: 3px;
          font-weight: 300;
          color: #111;
          -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.55);
      }

      .section-title h2 {
          /* font-size: 20px; */
          margin: 0;
          letter-spacing: 2px;
          font-weight: 300;
          color: #111;
          -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.55);
      }

      .section-title .line {
          width: 100px;
          height: 2px;
          background: #000;
          margin: 12px auto 0;
          opacity: 0.65;
      }

/* Extra small screens: force two columns on mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        margin: 30px 0 20px 0;
    }
}

/* Home Page */
.home-page {
    display: block;
}

.home-page.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .desktop-nav {
    padding: 15px 20px;
  }
  .nav-menu {
    gap: 15px;
  }
  .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 800px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-menu-items a {
        text-decoration: none;
        color: #000;
    }

    .mobile-menu {
        box-shadow: 0 0 50px #000;
    }

    .logo {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .hero {
        padding: 0 20px;
        height: 490px;
    }

    .hero h1 {
        font-size: 50px;
        text-shadow: 8px 8px 8px #000;

    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;

    }

    .btn {
        justify-content: center;
        text-align: center;
        width: 80%;
        border-radius: 50px;
        margin-left: 30px;
        margin-right: 30px;
        padding: 10px 0;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-thumbnails {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        height: 100px;
        margin: 10px;
    }

    .product-container > div:nth-child(2) {
        order: 1;
    }

    .product-info {
        order: 3;
    }

    .thumbnail {
        min-width: 80px;
    }

    
  .section-title h1 {
          font-size: 18px;
          letter-spacing: 3px;
          font-weight: 300;
          color: #111;
          -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.55);
      }

      .section-title h2 {
          font-size: 20px;
          margin: 0;
          letter-spacing: 2px;
          font-weight: 300;
          color: #111;
          -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.55);
      }

      .section-title .line {
          width: 50px;
          height: 1px;
          background: #000;
          margin: 12px auto 0;
          opacity: 0.65;
      }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        padding: 18px 8px;
        gap: 10px;

    }

    .product-image {
        height: 280px;
    }

    .product-image-wrapper {
        height: 280px;
    }

    .product-card {
        height: 380px;
    }
    .product-card-promos {
        height: auto;
    }
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-card {
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid #eee;
    border-radius: 8px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    height: 200px;
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.brand-card:hover .brand-image {
    transform: scale(1.05);
}

.brand-details {
    padding: 20px;
    text-align: center;
}

.brand-name {
    font-size: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-name {
    font-size: 13px;
    font-family: "anton", sans-serif;
    font-optical-sizing: auto;
    font-weight: 1;
}

.product-price-tag {
    font-size: 15px;
    font-family: "anton", sans-serif;
    font-optical-sizing: auto;
    font-weight: 550;
    font-style: normal;
}

/* Dashboard Page Styles */
.account-info, .change-password {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.account-info h2, .change-password h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

.account-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.account-info strong {
    color: #000;
}

.change-password form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.change-password label {
    font-weight: bold;
    color: #333;
}

.change-password input[type="password"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.change-password button {
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.change-password button:hover {
    background: #e74c3c;
}

.account-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.account-links .btn {
    padding: 12px 20px;
    text-decoration: none;
    background: #f8f8f8;
    color: #000;
    border-radius: 4px;
    transition: background 0.3s;
}

.account-links .btn:hover {
    background: #e74c3c;
    color: #fff;
}

/* Favorite button */
.mini-like-btn {
    color: #666;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

.mini-like-btn:hover {
    color: #e74c3c;
}

.mini-like-btn.liked i {
    color: #e74c3c;
}