/* Inline styles for additional adjustments */
    html, body {
      width: 100%;
      min-height: 100vh;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    .top-navbar {
      width: 100%;
      box-sizing: border-box;
    }
    .top-nav {
      flex-wrap: wrap;
      gap: 10px;
    }
    .nav-links {
      flex-wrap: wrap;
      gap: 18px !important;
    }
    .search-cart {
      flex-wrap: wrap;
      min-width: 180px;
      max-width: 100vw;
    }
    .header-icons {
      flex-wrap: wrap;
    }
    .main-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      box-sizing: border-box;
    }
    .hero-banner {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
      min-height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      width: 100%;
      color: #fff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.7);
      padding: 40px 20px;
      box-sizing: border-box;
    }
    .hero-image img {
      max-width: 180px;
      margin-bottom: 20px;
      width: 100%;
      height: auto;
    }
    footer {
      width: 100vw !important;
      min-width: 0;
      font-size: 1em;
      box-sizing: border-box;
      left: 0;
      bottom: 0;
    }
    /* Responsive adjustments */
    @media (max-width: 1100px) {
      .main-container {
        max-width: 100vw;
        padding: 0 8px;
      }
      .hero-banner {
        max-width: 100vw;
        padding-left: 8px;
        padding-right: 8px;
      }
    }
    @media (max-width: 900px) {
      .hero-banner {
        aspect-ratio: unset !important;
        min-height: 220px;
      }
      .main-container {
        padding-left: 4px;
        padding-right: 4px;
      }
    }
    @media (max-width: 700px) {
      .top-nav {
        flex-direction: column;
        align-items: flex-start !important;
      }
      .nav-links {
        flex-direction: column;
        gap: 10px !important;
        width: 100%;
      }
      .search-cart {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-start;
      }
      .header-icons {
        margin-left: 0 !important;
      }
      .logo {
        margin-bottom: 10px;
      }
      .hero-banner {
        min-height: 180px;
      }
    }
    @media (max-width: 500px) {
      .hero-content {
        padding: 10px 1vw !important;
      }
      .hero-image img {
        max-width: 90px !important;
      }
      .shop-now {
        font-size: 0.92em !important;
        padding: 6px 10px !important;
      }
      .nav-links a, .header-icons a {
        font-size: 0.95em !important;
      }
      .search-cart input {
        width: 80px !important;
      }
      .main-container {
        padding: 0 2px;
      }
    }
    /* Ensure footer does not overlap content on small screens */
    @media (max-width: 700px) {
      footer {
        font-size: 0.95em;
        padding: 12px 0;
      }
    }
    /* Make sure all sections stack and fit on small screens */
    section, .main-container, .hero-banner {
      box-sizing: border-box;
      width: 100%;
      min-width: 0;
    }
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    background-image: url('../images/new-backs.jpg'); /* Updated background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

header .top-nav {
    display: flex;
    gap: 20px;
}

header .top-nav a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

header .top-nav a:hover {
    color: #e63946;
}

header .search-cart {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .search-cart input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

header .search-cart i {
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.navbar {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e63946; /* Red hover effect */
}

.get-started {
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.get-started:hover {
    background-color: #e63946; /* Red background on hover */
    color: #fff;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e63946; /* Red background */
    padding: 10px 20px;
    border-bottom: 2px solid #1d3557; /* Blue border */
}

.search-bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin: 0 20px;
    max-width: 600px;
}

.search-bar input {
    width: 100%;
    padding: 8px;
    border: 1px solid #1d3557; /* Blue border */
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.search-bar button {
    background-color: #1d3557; /* Blue background */
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* White text */
}

.search-bar button i {
    font-size: 16px;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icons .nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-icons .nav-link:hover {
    background-color: #e63946; /* Red background on hover */
    color: #fff;
}

.nav-icons a {
    margin-left: 15px;
    text-decoration: none;
    color: #ffffff; /* White text */
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-icons i {
    margin-right: 5px;
}

.nav-icons a:hover {
    color: #e63946; /* Red hover effect */
}

.navbar-bottom {
    display: flex;
    justify-content: space-around;
    background-color: #1d3557; /* Blue background */
    color: #ffffff; /* White text */
    padding: 10px 0;
    border-top: 2px solid #e63946; /* Red border */
}

.navbar-bottom a {
    color: #ffffff; /* White text */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-bottom a i {
    margin-right: 5px;
}

.navbar-bottom a:hover {
    background-color: #e63946; /* Red background on hover */
    color: #ffffff; /* White text */
}

.item-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
}

.tile {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.tile h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.tile p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.welcome-section {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.welcome-section h1 {
    font-size: 32px;
    color: #1d3557; /* Blue color */
    margin-bottom: 10px;
}

.welcome-section p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.about-us, .contact-us {
    margin-top: 20px;
    text-align: center;
}

.about-us h2, .contact-us h2 {
    font-size: 24px;
    color: #1d3557; /* Blue color */
    margin-bottom: 10px;
}

.about-us p, .contact-us p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-us a {
    color: #e63946; /* Red color */
    text-decoration: none;
}

.contact-us a:hover {
    text-decoration: underline;
}

/* Hero Section with Flashing Background */
.hero-section {
    position: relative;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-image: url('../images/new-backs.jpg'); /* Updated background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: none;
}

.hero-section .hero-content {
    z-index: 1;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
}

.buy-now {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-now:hover {
    background-color: #d32f2f;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: flashImages 12s infinite;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-button {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
    background-color: #fff;
    color: #e63946;
    transform: scale(1.05);
}

.admin-dashboard {
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.sidebar {
    width: 250px;
    background-color: #fff;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-header h2 {
    font-size: 20px;
    color: #fff;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sidebar-menu a:hover {
    background-color: #e63946; /* Red hover effect */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    padding: 10px 0;
    font-size: 14px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sidebar li:hover {
    color: #e63946;
}

.main-content {
    flex-grow: 1;
    background-color: #f8f9fa;
    padding: 20px;
}

.admin-header {
    background-color: #1d3557; /* Blue background */
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #666;
}

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.top-nav {
    display: flex;
    gap: 20px;
}

.top-nav a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: #e63946;
}

.search-cart {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-cart input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-cart i {
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.main-container {
    display: flex;
}

.hero-banner {
    position: relative;
    flex-grow: 1;
    background-color: #e63946;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    overflow: hidden;
    background-image: url('../images/new-backs.jpg'); /* Updated background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px; /* Increased height */
    height: 80vh;      /* Responsive height */
    max-height: 900px;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-banner .hero-content img {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero-banner .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-banner .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-banner .hero-content .shop-now {
    display: inline-block;
    background-color: #fff;
    color: #e63946;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-banner .hero-content .shop-now:hover {
    background-color: #e63946;
    color: #fff;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100vw;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.categories {
    padding: 40px 0 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.categories .highlight {
    color: #e63946;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories h2 .highlight::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 28px;
    background: #e63946;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

.categories h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 30px 0;
    color: #222;
    letter-spacing: 0.5px;
}

.category-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-nav-arrows {
    display: flex;
    gap: 10px;
}

.category-nav-arrow {
    width: 32px;
    height: 32px;
    background: #f4f4f4;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #222;
    cursor: pointer;
    transition: background 0.2s;
}

.category-nav-arrow:hover {
    background: #e63946;
    color: #fff;
}

.category-grid {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.category-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-item i {
    font-size: 32px;
    color: #222;
}

.category-item p {
    font-size: 16px;
    color: #222;
    margin: 0;
    font-weight: 500;
}

.category-item:hover, .category-item.active {
    border-color: #e63946;
    box-shadow: 0 2px 8px rgba(230,57,70,0.08);
}

/* Wishlist Page Styles */
.wishlist-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 40px 20px;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wishlist-header h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.wishlist-move-btn {
    background: #fff;
    color: #222;
    border: 1px solid #222;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.wishlist-move-btn:hover {
    background: #e63946;
    color: #fff;
}

.wishlist-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.wishlist-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    width: 220px;
    padding: 18px 16px 16px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.wishlist-discount {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e63946;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 10px;
}

.wishlist-new {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #00c853;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 10px;
}

.wishlist-remove, .wishlist-eye {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.wishlist-remove:hover, .wishlist-eye:hover {
    color: #e63946;
}

.wishlist-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
    margin-top: 10px;
}

.wishlist-add-cart {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-add-cart:hover {
    background: #e63946;
}

.wishlist-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
}

.wishlist-price {
    font-size: 15px;
    margin-bottom: 4px;
}

.wishlist-current {
    color: #e63946;
    font-weight: bold;
    margin-right: 8px;
}

.wishlist-old {
    color: #aaa;
    text-decoration: line-through;
    font-size: 13px;
}

.wishlist-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-top: 6px;
    color: #fbbf24;
}

.wishlist-stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 1px;
}

.wishlist-count {
    color: #888;
    font-size: 13px;
}

.wishlist-just-for-you {
    margin-top: 40px;
}

.wishlist-just-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wishlist-just-bar {
    display: inline-block;
    width: 12px;
    height: 28px;
    background: #e63946;
    border-radius: 4px;
}

.wishlist-just-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

.wishlist-see-all {
    margin-left: auto;
    background: #fff;
    color: #222;
    border: 1px solid #222;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.wishlist-see-all:hover {
    background: #e63946;
    color: #fff;
}

/* Contact Page Styles */
.contact-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-container h1 {
    text-align: center;
    color: #e63946;
    margin-bottom: 30px;
    font-size: 32px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    font-size: 16px;
    color: #222;
}

.contact-info h3 {
    margin-bottom: 18px;
    color: #e63946;
    font-size: 22px;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #e63946;
    font-size: 18px;
}

.contact-form {
    flex: 2;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-submit {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-submit:hover {
    background: #d32f2f;
}

/* Flash Sales Section */
.flash-sales {
    padding: 40px 0 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('./images/.jpg'); /* Add your image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.flash-sales-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.flash-sales-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #e63946;
    margin: 0;
}

.flash-sales-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.flash-sales .product-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 18px 16px 16px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.flash-sales .product-card:hover {
    border-color: #e63946;
    box-shadow: 0 4px 16px rgba(230,57,70,0.08);
}

.flash-sales .product-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
    margin-top: 10px;
}

.flash-sales .product-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
    text-align: center;
}

.flash-sales .product-card .price {
    font-size: 15px;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 4px;
}

.flash-sales .product-card .original-price {
    color: #aaa;
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 8px;
    font-weight: normal;
}

.flash-sales .product-card .rating {
    font-size: 13px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.flash-sales .product-card .add-to-cart {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 0;
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    font-size: 15px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.flash-sales .product-card .add-to-cart:hover {
    background: #e63946;
}

.view-all-products {
    display: block;
    margin: 0 auto 0 auto;
    background-color: #e63946;
    color: #fff;
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-all-products:hover {
    background-color: #d32f2f;
}

/* About Page Styles */
.about-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.about-container h1 {
    text-align: center;
    color: #e63946;
    margin-bottom: 24px;
    font-size: 32px;
}

.about-lead {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 32px;
}

.about-section {
    margin-bottom: 32px;
}

.about-section h2 {
    color: #1d3557;
    font-size: 22px;
    margin-bottom: 12px;
}

.about-section ul {
    padding-left: 20px;
    color: #444;
    font-size: 16px;
}

.about-team {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    flex: 1 1 180px;
    min-width: 180px;
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #e63946;
}

.team-member h4 {
    margin: 8px 0 4px 0;
    font-size: 18px;
    color: #222;
}

.team-member p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.about-story-container {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px 40px 20px;
}

.about-story-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-story-text {
    flex: 1 1 350px;
    min-width: 320px;
}

.about-story-text h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-story-text p {
    font-size: 16px;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-story-image {
    flex: 1 1 350px;
    min-width: 320px;
    display: flex;
    justify-content: flex-end;
}

.about-story-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.about-stats-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-stat-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    flex: 1 1 220px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.about-stat-card-highlight {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
    box-shadow: 0 4px 16px rgba(230,57,70,0.08);
}

.about-stat-icon {
    font-size: 32px;
    color: #e63946;
    margin-bottom: 12px;
}

.about-stat-card-highlight .about-stat-icon {
    color: #fff;
}

.about-stat-value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 15px;
    color: #888;
}

.about-stat-card-highlight .about-stat-label {
    color: #fff;
}

.contactus-main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contactus-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contactus-info {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 24px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid #f0f0f0;
}

.contactus-info-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contactus-icon {
    background: #e63946;
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: 4px;
}

.contactus-info-block h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: #222;
    font-weight: bold;
}

.contactus-info-block p {
    margin: 0 0 6px 0;
    color: #666;
    font-size: 15px;
}

.contactus-info hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 18px 0;
}

.contactus-form {
    flex: 2 1 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 28px 24px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid #f0f0f0;
}

.contactus-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.contactus-form-row input {
    flex: 1;
    padding: 12px;
    border: none;
    background: #f6f6f6;
    border-radius: 6px;
    font-size: 15px;
    color: #222;
}

.contactus-form textarea {
    padding: 12px;
    border: none;
    background: #f6f6f6;
    border-radius: 6px;
    font-size: 15px;
    color: #222;
    resize: vertical;
    min-height: 120px;
}

.contactus-submit {
    align-self: flex-end;
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.contactus-submit:hover {
    background: #d32f2f;
}

/* Seller Agreement Styles */
.seller-agreement {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.seller-agreement h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e63946;
}

.seller-agreement p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.seller-agreement-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #1d3557;
    text-align: left;
}

.seller-agreement-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 18px;
}

.seller-agreement-link {
    color: #e63946;
    text-decoration: underline;
    font-weight: bold;
}

.seller-agreement-link:hover {
    color: #d32f2f;
}

/* Seller Dashboard Styles */
.seller-dashboard {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.seller-dashboard h1 {
    color: #e63946;
    margin-bottom: 18px;
}

.seller-dashboard p {
    color: #444;
    margin-bottom: 24px;
}

.seller-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seller-actions li {
    margin: 12px 0;
}

.seller-actions a {
    color: #e63946;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.seller-actions a:hover {
    color: #1d3557;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container,
    .about-story-container,
    .wishlist-container,
    .contact-container,
    .about-container,
    .contactus-main {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .about-story-row,
    .about-stats-row {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .main-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }
    .hero-banner,
    .hero-section {
        padding: 20px 10px;
        height: auto;
    }
    .about-story-row,
    .about-stats-row,
    .wishlist-grid,
    .dashboard-overview,
    .category-grid {
        flex-direction: column;
        gap: 20px;
    }
    .about-story-image,
    .about-story-text {
        min-width: 0;
        max-width: 100%;
    }
    .wishlist-card,
    .about-stat-card,
    .category-item {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .top-navbar,
    .navbar-container,
    .navbar-top,
    .navbar-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .top-nav,
    .nav-links,
    .header-icons,
    .search-cart {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .search-cart input {
        width: 100%;
    }
    .sidebar {
        padding: 10px 0;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .about-story-text h1 {
        font-size: 28px;
    }
    .about-container h1,
    .contact-container h1 {
        font-size: 24px;
    }
    .wishlist-header h2 {
        font-size: 18px;
    }
    .flash-sales-header h2 {
        font-size: 18px;
    }
    .categories h3 {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 22px;
    }
    .hero-content h2,
    .banner-content h2 {
        font-size: 18px;
    }
    .shop-now,
    .buy-now,
    .cart-btn-outline,
    .cart-btn-red,
    .wishlist-move-btn,
    .wishlist-see-all,
    .sell-submit,
    .contact-submit,
    .contactus-submit {
        font-size: 13px;
        padding: 8px 12px;
    }
    .product-card img,
    .wishlist-card img,
    .about-story-image img {
        max-width: 100px;
        height: auto;
    }
    .category-item {
        width: 100%;
        height: auto;
        min-width: 0;
    }
    .about-stat-card {
        padding: 18px 10px;
    }
    .contactus-form,
    .contactus-info {
        padding: 14px 8px;
    }
}

.center-view-products {
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-specs {
    list-style: disc;
    padding-left: 18px;
    margin: 8px 0 8px 0;
    color: #444;
    font-size: 13px;
    text-align: left;
}
.product-card .product-specs {
    margin-bottom: 8px;
}

.custom-footer {
    background: #000;
    color: #fff;
    padding: 40px 0 0 0;
    font-family: Arial, sans-serif;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 20px 40px 20px;
}

.footer-left, .footer-center, .footer-right {
    flex: 1 1 260px;
    min-width: 240px;
}

.footer-left h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-contact-lead {
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-form label {
    font-size: 15px;
    margin-bottom: 4px;
}

.footer-newsletter-form input[type="email"] {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

.footer-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-newsletter-form input[type="checkbox"] {
    accent-color: #e63946;
    width: 16px;
    height: 16px;
}

.footer-subscribe-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}

.footer-subscribe-btn:hover {
    background: #e63946;
    color: #fff;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: flex-start;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e63946;
}

.footer-social-row {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.footer-social-row a {
    color: #fff;
    font-size: 20px;
    transition: color 0.2s;
}

.footer-social-row a:hover {
    color: #e63946;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 18px;
    font-size: 15px;
}

.footer-contact-info {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
    text-align: right;
}

.nav-categories-dropdown {
    position: relative;
    display: inline-block;
}

.categories-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.categories-btn:hover {
    color: #e63946;
}

.categories-dropdown-list {
    display: none;
    position: absolute;
    background-color: white;
    padding: 10px;
    list-style: none;
    border: 1px solid #ccc;
    z-index: 1000;
}

.categories-dropdown-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.categories-dropdown-list li:hover {
    background-color: #f0f0f0;
}

.categories-dropdown-list.show {
    display: block;
}

.nav-categories-dropdown {
    position: relative;
    display: inline-block;
}
